diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e701b79..18c8275 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,7 @@ name: Lint and test on: + workflow_dispatch: schedule: - cron: "0 0 1 * *" push: @@ -9,6 +10,8 @@ on: - "README.md" - "pre-commit-config.yaml" - "LICENSE" + - "docs/**" + - "mkdocs.yml" jobs: test: @@ -23,29 +26,23 @@ jobs: steps: - uses: actions/checkout@v4.2.2 - - name: Install poetry - run: pipx install poetry - - - name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }} - id: setup-python - uses: actions/setup-python@v5.6.0 + - name: Install uv + uses: astral-sh/setup-uv@v6 with: + enable-cache: true python-version: ${{ matrix.python-version }} - cache-dependency-path: pyproject.toml - cache: poetry - name: Install dependencies - if: steps.setup-python.outputs.cache-hit != 'true' - run: poetry install + run: uv sync --locked - name: Lint code with black - run: poetry run black --check . + run: uv run black --check . - name: Lint code with ruff - run: poetry run ruff check . + run: uv run ruff check . - name: Lint code with mypy - run: poetry run mypy rss_parser + run: uv run mypy rss_parser - name: Test code with pytest - run: poetry run pytest --doctest-modules + run: uv run pytest --doctest-modules rss_parser tests --cov=rss_parser diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml new file mode 100644 index 0000000..3cae32f --- /dev/null +++ b/.github/workflows/docs.yml @@ -0,0 +1,32 @@ +name: Deploy docs + +on: + push: + branches: + - master + paths: + - "docs/**" + - "mkdocs.yml" + - ".github/workflows/docs.yml" + workflow_dispatch: + +permissions: + contents: write + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4.2.2 + + - name: Install uv + uses: astral-sh/setup-uv@v6 + with: + enable-cache: true + python-version: "3.12" + + - name: Install dependencies + run: uv sync --locked --group docs + + - name: Deploy to gh-pages + run: uv run mkdocs gh-deploy --force diff --git a/.github/workflows/publish_to_pypi.yml b/.github/workflows/publish_to_pypi.yml index ccbc5b3..89ed736 100644 --- a/.github/workflows/publish_to_pypi.yml +++ b/.github/workflows/publish_to_pypi.yml @@ -7,11 +7,16 @@ on: # TODO: Only on CI success jobs: - build-and-test-publish: + build-and-publish: runs-on: ubuntu-latest steps: - - uses: actions/checkout@master - - name: Build and publish to pypi - uses: JRubics/poetry-publish@v1.9 - with: - pypi_token: ${{ secrets.pypi_password }} + - uses: actions/checkout@v4.2.2 + + - name: Install uv + uses: astral-sh/setup-uv@v6 + + - name: Build sdist and wheel + run: uv build + + - name: Publish to PyPI + run: uv publish --token ${{ secrets.pypi_password }} diff --git a/.gitignore b/.gitignore index bcb9206..cc96abf 100644 --- a/.gitignore +++ b/.gitignore @@ -116,3 +116,9 @@ venv.bak/ .ruff_cache .python-version .DS_Store + +# mkdocs build output +site/ + +# uv lockfile must be committed (overrides global ignore) +!uv.lock diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a7a3749..cd6cefa 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,14 +1,14 @@ repos: # Use pre-commit repo, v3.4.0 - repo: https://github.com/pre-commit/pre-commit-hooks - rev: "v3.4.0" + rev: "v6.0.0" hooks: # Check for files that contain merge conflict strings. - id: check-merge-conflict - stages: [ commit, push ] + stages: [ pre-commit, pre-push ] # Simply check whether files parse as valid python. - id: check-ast - stages: [ commit ] + stages: [ pre-commit ] # Use locally installed hooks - repo: local @@ -16,32 +16,32 @@ repos: hooks: - id: black-format-staged name: black - entry: poetry + entry: uv args: - run - black language: system types: [ python ] - stages: [ commit ] + stages: [ pre-commit ] - id: mypy-check-staged name: mypy - entry: poetry + entry: uv args: - run - mypy - rss_parser pass_filenames: false language: system - stages: [ push ] + stages: [ pre-push ] - id: ruff-check-global name: ruff - entry: poetry + entry: uv args: - run - ruff - check language: system types: [ python ] - stages: [ commit, push ] \ No newline at end of file + stages: [ pre-commit, pre-push ] \ No newline at end of file diff --git a/README.md b/README.md index ba47ce6..0622a0b 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,21 @@ -# RSS Parser +# rss-parser -[](https://pepy.tech/project/rss-parser) -[](https://pepy.tech/project/rss-parser) -[](https://pepy.tech/project/rss-parser) +**Typed, pydantic-powered RSS/Atom parsing for Python.** [](https://pypi.org/project/rss-parser) [](https://pypi.org/project/rss-parser) +[](https://pepy.tech/project/rss-parser) [](https://pypi.org/project/rss-parser) [](https://github.com/dhvcc/rss-parser/blob/master/LICENSE) -  +  -## About +`rss-parser` turns RSS/Atom XML into typed [pydantic](https://docs.pydantic.dev) models — +autocomplete, validation, and clear errors instead of digging through nested dicts. -`rss-parser` is a type-safe Python RSS/Atom parsing module built using [pydantic](https://github.com/pydantic/pydantic) and [xmltodict](https://github.com/martinblech/xmltodict). +**[Documentation](https://dhvcc.github.io/rss-parser)** ## Installation @@ -23,68 +23,23 @@ pip install rss-parser ``` -or - -```bash -git clone https://github.com/dhvcc/rss-parser.git -cd rss-parser -poetry build -pip install dist/*.whl -``` - -## V1 -> V2 Migration -- The `Parser` class has been renamed to `RSSParser` -- Models for RSS-specific schemas have been moved from `rss_parser.models` to `rss_parser.models.rss`. Generic types remain unchanged -- Date parsing has been improved and now uses pydantic's `validator` instead of `email.utils`, producing better datetime objects where it previously defaulted to `str` - -## V2 -> V3 Migration - -`rss-parser` 3.x upgrades the runtime models to [Pydantic v2](https://docs.pydantic.dev/latest/migration/). Highlights: - -- **New default models** now inherit from `pydantic.BaseModel` v2 and use `model_validate`/`model_dump`. If you extend our classes, switch from `dict()`/`json()` to `model_dump()`/`model_dump_json()`. -- **Legacy compatibility** lives under `rss_parser.models.legacy`. Point your custom parser at the legacy schema if you must stay on the v1 API surface. -- **Collections**: list-like XML fields now use `OnlyList[...]` directly with an automatic `default_factory` so that attributes are always lists (no more `Optional[OnlyList[T]] = Field(..., default=[])`). Update custom schemas accordingly. -- **Custom hooks**: if you relied on `rss_parser.pydantic_proxy`, import it from `rss_parser.models.legacy.pydantic_proxy`. The top-level module only re-exports it for backwards compatibility. - -See the “Legacy Models” section below for sample snippets showing how to stay on the older types. Tests in this repo cover both tracks to guarantee matching output. - -## Legacy Models - -Pydantic v1-based models are still available under `rss_parser.models.legacy`. They retain the previous behaviour and re-export the `import_v1_pydantic` helper as `rss_parser.models.legacy.pydantic_proxy.import_v1_pydantic`. You can continue to use them by pointing your parser at the legacy schema: +## Quickstart ```python -from rss_parser import RSSParser -from rss_parser.models.legacy.rss import RSS as LegacyRSS - -class LegacyRSSParser(RSSParser): - schema = LegacyRSS -``` - -Tests in this repository run against both the v2 and legacy models to ensure parity. - -## Usage - -### Quickstart - -**NOTE: For parsing Atom, use `AtomParser`** - -```python -from rss_parser import RSSParser +from rss_parser import parse from requests import get # noqa rss_url = "https://rss.art19.com/apology-line" response = get(rss_url) -rss = RSSParser.parse(response.text) +feed = parse(response.text) # detects RSS 2.0 / 0.9x, Atom 1.0 or RSS 1.0 (RDF) -# Print out rss meta data -print("Language", rss.channel.language) -print("RSS", rss.version) +print("Language", feed.channel.language) +print("RSS", feed.version) -# Iteratively print feed items -for item in rss.channel.items: +for item in feed.channel.items: print(item.title) - print(item.description[:50]) + print(str(item.description)[:50]) # Language en # RSS 2.0 @@ -94,158 +49,82 @@ for item in rss.channel.items: #
If you could call a number and say you’re sorry ``` -Here we can see that the description still contains `
` tags - this is because it's wrapped in [CDATA](https://www.w3resource.com/xml/CDATA-sections.php) like so: - -``` -If you could call ...
]]> -``` +`parse()` picks the right parser from the XML root element and raises `UnknownFeedTypeError` +if the document is not a feed. If you already know the feed type, use the explicit parsers: +`RSSParser`, `AtomParser`, `RDFParser`, `PodcastParser`. -### Overriding Schema +## Podcasts -If you want to customize the schema or provide a custom one, use the `schema` keyword argument of the parser: +`itunes:*` tags are supported out of the box, fully typed: ```python -from rss_parser import RSSParser -from rss_parser.models import XMLBaseModel -from rss_parser.models.rss import RSS -from rss_parser.models.types import Tag - - -class CustomSchema(RSS, XMLBaseModel): - channel: None = None # Removing previous channel field - custom: Tag[str] +from rss_parser import PodcastParser +podcast = PodcastParser.parse(feed_xml) +channel = podcast.channel.content -with open("tests/samples/custom.xml") as f: - data = f.read() +channel.itunes_author # 'Wondery' +channel.itunes_owner.content.email # 'iwonder@wondery.com' +channel.itunes_image.attributes["href"] # artwork url -rss = RSSParser.parse(data, schema=CustomSchema) - -print("RSS", rss.version) -print("Custom", rss.custom) - -# RSS 2.0 -# Custom Custom tag data +episode = channel.items[0].content +episode.itunes_duration # '00:05:01' +episode.itunes_episode_type # 'trailer' ``` -### xmltodict - -This library uses [xmltodict](https://github.com/martinblech/xmltodict) to parse XML data. You can find the detailed documentation [here](https://github.com/martinblech/xmltodict#xmltodict). +## Custom fields: one subclass away -The key thing to understand is that your data is processed into dictionaries. - -For example, this XML: - -```xml -When Elon Musk posted a video of himself arrivi +Introducing: The Apology Line +
If you could call a number and say you’re sorry +``` + +`parse()` detects the feed type from the XML root element and returns the matching typed model — +[`RSS`][parsing], [`Atom`][parsing] or [`RDF`][parsing]. If you already know what you're parsing, +use the explicit parser classes instead: + +```python +from rss_parser import RSSParser, AtomParser, RDFParser, PodcastParser + +rss = RSSParser.parse(rss_xml) +atom = AtomParser.parse(atom_xml) +``` + +[parsing]: parsing.md + +!!! note "Description still contains HTML?" + In the output above the description contains `
` tags — that's because the feed wraps it in + [CDATA](https://www.w3resource.com/xml/CDATA-sections.php): + + ``` + If you could call ...
]]> + ``` + + `rss-parser` gives you the feed's data as-is; sanitizing embedded HTML is up to you. + +## Tags: content and attributes + +Every XML tag is wrapped in a `Tag` object that separates the text from the XML attributes: + +```python +item = feed.channel.items[0] + +item.title.content # "Wondery Presents - ..." - the typed value +item.title.attributes # {} - dict of XML attributes, @-prefix stripped, snake_cased + +str(item.title) # same as str(item.title.content) +item.title.upper() # attribute access is forwarded to the content +``` + +Self-closing tags like `
+ Less than a week before Meta's lawyers were set to return to a Los Angeles courtroom, the plaintiff accusing the platform of inflicting harm dropped the case. Brought by 15-year-old Florida plaintiff going by initials R.K.C., the case was set to be the second in a set of bellwether trials meant to test legal arguments that social media giants allegedly broke the law by creating features that hooked and harmed teens.
+TikTok, Snap, and YouTube previously settled claims brought by R.K.C. for undisclosed amounts. "In light of the overall successful result of the litigation and his concerns about enduring a grueling weekslong trial, he has elect …
+ + ]]> +
+ After a dismal two years of weakening demand, falling sales, and damage to its brand by Elon Musk's political activities, Tesla's road to recovery continues apace. On the heels of an impressive delivery report, the company released its earnings for the second quarter of 2026 - giving us the latest glimpse at the EV company that Musk has said he wants to transform into a leader of AI and robotics.
+Despite that mission, Tesla remains a car company. And in the second quarter, it sold an impressive 480,126 vehicles, about a 25 percent increase compared to the second quarter of 2025. (For a direct-to-consumer company like Tesla, deliveries are …
+ + ]]> +
+ A number of Apple products got more expensive last month, so we’re happy to find deals wherever and whenever we can. If you’re searching for a high-end iPad, one of the more notable deals currently happening is on the 13-inch iPad Pro M5 with 512GB of storage. Normally $1,699, it’s $150 off at Amazon, costing $1,549.99. It’s $100 off at Best Buy. This is the most premium iPad that Apple sells, with impressive performance from its M5 processor, a gorgeous OLED screen, up to 60W of fast charging, and support for the Apple Pencil Pro and Magic Keyboard. Read our iPad Pro (2025) review.
+
There’s also a deep discount on some configurations of the 11-inch iPad Air M3. This model sports 1TB of storage, an optional 5G cellular connection, and it’s marked down to $749, a $500 discount from the suggested retail price. While the M3 chip is on the older side, you get 1TB of storage for just $40 more than the base M4 version with 128GB. The discount is available in all four colors: blue, purple, space gray, and starlight. Read our Apple iPad Air M3 review.
+
+ Code found in an iOS 27 beta would allow Apple to put a financed iPhone in "Restricted Mode" if it detects any missed payments, 9to5Mac reports. The finding follows a story from Bloomberg earlier this week claiming Apple is preparing to launch a new "Apple Upgrade" financing program for leasing new devices.
+iPhones in "Restricted Mode" would reportedly lose access to nearly all apps, except for basics like the Phone app, Settings, and the App Store. It uses a new "App Managed Features" system that allows financing or partner apps to continually check if a financed device is in good standing.
+According to 9to5Mac, the code also includes a …
+ + ]]> +
+ Following the MacBook Neo's huge popularity so far, Apple is reportedly developing an updated version of its budget laptop with a new processor and more memory, and even has plans to refresh the model with new colors. Following a similar report from analyst Tim Culpan earlier this year, Bloomberg's Mark Gurman says the new Neo will run on an A19 Pro processor, which currently powers the iPhone 17 Pro / Pro Max and the iPhone Air, unlike the current laptop's A18 Pro that was originally in the iPhone 16 Pro. The chip upgrade also means the updated Neo may have more RAM, likely 12GB rather than the original 8GB.
+However, ongoing component sho …
+ + ]]> +
+ Samsung has given us our first chance to check out its upcoming smart glasses in person, revealing two new designs and the first specs in the process, including an impressive 9-hour battery life. The glasses, developed in collaboration with Google and the eyewear brands Gentle Monster and Warby Parker, are due to launch this fall.
+Google and Samsung have been teasing the new glasses for some time, and revealed the first two designs at I/O in May. Now there are two more frames: Both are unsurprisingly boxy, with a new set of squared off black glasses from Gentle Monster, and a more rounded, red-brown pair from Warby Parker. Jaein Choi, the e …
+ + ]]> +
+ Samsung's latest round of folding Galaxy Z phones and updated smartwatches were announced at its July 2026 Unpacked event and are set to launch on August 7th. The Galaxy Z Flip 8, Fold 8, and Fold 8 Ultra don't seem geared toward people who bought last year's model; aside from a few design updates and AI features, there's not a whole lot that's new - unless we're talking about the Z Fold 8.
+The Z Fold 8 is the foldable that will probably get the most attention in the US this year, that is, unless Apple's rumored foldable arrives in the coming months. While its name makes it sound like the successor to last year's Z Fold 7, it's a new, short …
+ + ]]> +
+ Samsung's newest foldables are here. At Galaxy Unpacked, the company announced the Galaxy Z Flip 8, Galaxy Z Fold 8, and Galaxy Z Fold 8 Ultra. All three devices will be available on August 7th, but you can preorder them now starting at $1,199.99, $1,899.99, and $2,099.99, respectively.
+You probably noticed that Samsung's foldable lineup looks a little different this year. Rather than simply updating the Galaxy Z Fold 7, Samsung now has two book-style foldables: the productivity-focused Galaxy Z Fold 8 Ultra and the shorter, wider (when folded) Galaxy Z Fold 8 that's geared more toward entertainment. The Galaxy Z Flip 8, meanwhile, is a tou …
+ + ]]> +
+ The latest addition to Philips' Sonicare line of smart electric toothbrushes could take the guesswork out of your brushing routine. The Next-Generation DiamondClean 9900 Prestige uses a third-generation AI model to provide real-time feedback on how you're brushing through a glowing ring on its base, while a touchscreen highlights areas of your mouth that may need more attention when you think you're done.
+The Sonicare Next-Generation DiamondClean 9900 Prestige is expected to launch in Europe and the US this fall, with a wider global rollout coming in 2027. Pricing hasn't been announced, but previous versions sell for $430, and you can expec …
+ + ]]> +
+ Microsoft is expanding its Xbox backward compatibility efforts today by bringing original Xbox games to PC. An early preview release will see four classic Xbox games available on PC today, as part of a bigger effort to bring more Xbox console games to PC in the future.
+The first four games are Blinx: The Time Sweeper, Conker: Live and Reloaded, Crimson Skies: High Road to Revenge, and Fuzion Frenzy. You'll be able to purchase and download each of these games on PC, and they'll also be included with all Xbox Game Pass plans. If you already own a digital copy of these games, you can now play them on PC or handhelds like the Xbox Ally and Xbox …
+ + ]]> +Transcript:
+https://lexfridman.com/anthony-kaldellis-transcript
CONTACT LEX:
+Feedback – give feedback to Lex: https://lexfridman.com/survey
+AMA – submit questions, videos or call-in: https://lexfridman.com/ama
+Hiring – join our team: https://lexfridman.com/hiring
+Other – other ways to get in touch: https://lexfridman.com/contact
EPISODE LINKS:
+Anthony’s Books: https://amzn.to/49AX7Q1
+Anthony’s Publications: https://kaldellispublications.weebly.com
+Anthony’s University of Chicago page: https://classics.uchicago.edu/people/anthony-kaldellis
+The New Roman Empire (book): https://amzn.to/3PTFTqk
+Streams of Gold (book): https://amzn.to/4fgRMRq
+Byzantium & Friends Podcast: https://byzantiumandfriends.podbean.com/
+The History of Byzantium Podcast: https://thehistoryofbyzantium.com/
SPONSORS:
+To support this podcast, check out our sponsors & get discounts:
+Upwork: Platform for hiring freelancers.
+Go to https://upwork.com/lex
+Fin: AI agent for customer service.
+Go to https://fin.ai/lex
+BetterHelp: Online therapy and counseling.
+Go to https://betterhelp.com/lex
+LMNT: Zero-sugar electrolyte drink mix.
+Go to https://drinkLMNT.com/lex
+Shopify: Sell stuff online.
+Go to https://shopify.com/lex
+Perplexity: AI-powered answer engine.
+Go to https://perplexity.ai/
OUTLINE:
+(00:00) – Introduction
+(00:11) – Sponsors, Comments, and Reflections
+(08:45) – The Roman Empire and the Byzantine Empire
+(12:42) – 2,200 Years of Roman History
+(33:06) – Power, violence, and civil war
+(54:20) – Edict of Caracalla
+(1:07:17) – Crisis of the Third Century
+(1:21:45) – Constantine and the new Roman Empire
+(1:33:46) – Christianity in the Roman Empire
+(1:59:14) – Fall of the Western Roman Empire
+(2:12:11) – Eunuchs, Taxes, and Power
+(2:37:17) – Emperor Justinian and wars of conquest
+(2:54:19) – The Arab conquests
+(3:13:55) – Why the Roman empire survived so long
+(3:40:01) – Lessons from history
PODCAST LINKS:
+– Podcast Website: https://lexfridman.com/podcast
+– Apple Podcasts: https://apple.co/2lwqZIr
+– Spotify: https://spoti.fi/2nEwCF8
+– RSS: https://lexfridman.com/feed/podcast/
+– Podcast Playlist: https://www.youtube.com/playlist?list=PLrAXtmErZgOdP_8GztsuKi9nrraNbKKp4
+– Clips Channel: https://www.youtube.com/lexclips
CONTACT LEX:
+Feedback – give feedback to Lex: https://lexfridman.com/survey
+AMA – submit questions, videos or call-in: https://lexfridman.com/ama
+Hiring – join our team: https://lexfridman.com/hiring
+Other – other ways to get in touch: https://lexfridman.com/contact
EPISODE LINKS:
+Don’s Facebook: https://facebook.com/Dr.Don.Lincoln/
+Don’s Website: https://drdonlincoln.com/
+Don’s LinkedIn: https://bit.ly/4nHeNiF
+Don’s YouTube Playlist: https://bit.ly/3PCIW67
+Don’s X: https://x.com/DrDonLincoln
+Don’s Books: https://amzn.to/4uYbkOZ
+Don’s Great Courses: https://shop.thegreatcourses.com/don-lincoln
+Don’s Audible: https://adbl.co/4wGioRV
+Fermilab’s YouTube: https://www.youtube.com/fermilab
+Fermilab’s Website: https://www.fnal.gov/
+Fermilab’s X: https://x.com/fermilab
SPONSORS:
+To support this podcast, check out our sponsors & get discounts:
+Upwork: Platform for hiring freelancers.
+Go to https://upwork.com/lex
+Larridin: Measure AI adoption in your business.
+Go to https://larridin.com
+Fin: AI agent for customer service.
+Go to https://fin.ai/lex
+LMNT: Zero-sugar electrolyte drink mix.
+Go to https://drinkLMNT.com/lex
+Shopify: Sell stuff online.
+Go to https://shopify.com/lex
+Perplexity: AI-powered answer engine.
+Go to https://perplexity.ai/
OUTLINE:
+(00:00) – Introduction
+(00:34) – Sponsors, Comments, and Reflections
+(08:52) – Unifying the laws of nature
+(23:23) – Einstein, special relativity, and general relativity
+(40:31) – Electroweak force
+(52:13) – How particle colliders work
+(1:10:16) – Higgs boson discovery
+(1:20:35) – Theory of everything
+(1:50:20) – Physics of empty space
+(1:57:45) – Antimatter
+(2:18:35) – Dark energy
+(2:22:23) – Dark matter
+(2:50:59) – Future of physics
PODCAST LINKS:
+– Podcast Website: https://lexfridman.com/podcast
+– Apple Podcasts: https://apple.co/2lwqZIr
+– Spotify: https://spoti.fi/2nEwCF8
+– RSS: https://lexfridman.com/feed/podcast/
+– Podcast Playlist: https://www.youtube.com/playlist?list=PLrAXtmErZgOdP_8GztsuKi9nrraNbKKp4
+– Clips Channel: https://www.youtube.com/lexclips
Transcript:
+https://lexfridman.com/ffmpeg-transcript
CONTACT LEX:
+Feedback – give feedback to Lex: https://lexfridman.com/survey
+AMA – submit questions, videos or call-in: https://lexfridman.com/ama
+Hiring – join our team: https://lexfridman.com/hiring
+Other – other ways to get in touch: https://lexfridman.com/contact
EPISODE LINKS:
+FFmpeg on X: https://x.com/FFmpeg
+FFmpeg: https://ffmpeg.org/
+VideoLAN (VLC): https://www.videolan.org/
+VideoLAN on X: https://x.com/videolan
+Jean-Baptiste’s Website: https://jbkempf.com/
+Jean-Baptiste’s LinkedIn: https://www.linkedin.com/in/jbkempf/
+Jean-Baptiste’s GitHub: https://github.com/jbkempf
+Kieran’s X: https://x.com/kierank_
+Kieran’s LinkedIn: https://bit.ly/3OORhmC
+Kieran’s GitHub: https://github.com/kierank
SPONSORS:
+To support this podcast, check out our sponsors & get discounts:
+Larridin: Measure AI adoption in your business.
+Go to https://larridin.com
+Blitzy: AI agent for large enterprise codebases.
+Go to https://blitzy.com/lex
+BetterHelp: Online therapy and counseling.
+Go to https://betterhelp.com/lex
+Fin: AI agent for customer service.
+Go to https://fin.ai/lex
+LMNT: Zero-sugar electrolyte drink mix.
+Go to https://drinkLMNT.com/lex
+Perplexity: AI-powered answer engine.
+Go to https://perplexity.ai/
OUTLINE:
+(00:00) – Introduction
+(03:00) – Sponsors, Comments, and Reflections
+(10:48) – Weirdest things VLC opens
+(15:12) – How video playback works
+(24:33) – Video codecs and containers
+(35:20) – FFmpeg explained
+(56:20) – Linus Torvalds
+(1:00:59) – Turning down millions to keep VLC ad-free
+(1:15:17) – FFmpeg & Google drama
+(1:34:31) – FFmpeg developers
+(1:41:08) – VLC and FFmpeg
+(1:45:42) – History of FFmpeg
+(1:48:59) – Reverse engineering codecs
+(2:02:14) – FFmpeg testing
+(2:06:21) – Assembly code (handwritten)
+(2:30:39) – Rust programming language
+(2:39:55) – FFmpeg and Libav fork
+(2:48:17) – Open source burnout
+(2:56:04) – x264 and internet video
+(3:09:20) – Video compression basics
+(3:16:17) – CIA and fake VLC
+(3:26:52) – Ultra low latency streaming
+(3:44:20) – AV2 codec and video patents
+(3:54:12) – VLC backdoors
+(4:04:27) – Video archiving
+(4:11:04) – Future of FFmpeg and VLC
Transcript:
+https://lexfridman.com/lars-brownworth-transcript
CONTACT LEX:
+Feedback – give feedback to Lex: https://lexfridman.com/survey
+AMA – submit questions, videos or call-in: https://lexfridman.com/ama
+Hiring – join our team: https://lexfridman.com/hiring
+Other – other ways to get in touch: https://lexfridman.com/contact
EPISODE LINKS:
+Lars’s Website: https://larsbrownworth.com/
+The Sea Wolves (book): https://www.amazon.com/Sea-Wolves-History-Vikings/dp/1909979120
+Lars’s Books: https://amzn.to/4sHY0xw
+12 Byzantine Rulers Podcast : https://12byzantinerulers.com/
+Norman Centuries Podcast: https://apple.co/4sgSxNi
SPONSORS:
+To support this podcast, check out our sponsors & get discounts:
+Larridin: Measure AI adoption in your business.
+Go to https://larridin.com
+BetterHelp: Online therapy and counseling.
+Go to https://betterhelp.com/lex
+LMNT: Zero-sugar electrolyte drink mix.
+Go to https://drinkLMNT.com/lex
+Fin: AI agent for customer service.
+Go to https://fin.ai/lex
+Shopify: Sell stuff online.
+Go to https://shopify.com/lex
+Perplexity: AI-powered answer engine.
+Go to https://perplexity.ai/
OUTLINE:
+(00:00) – Introduction
+(01:03) – Sponsors, Comments, and Reflections
+(08:57) – The start of the Viking Age
+(18:50) – Viking military strategy, tactics & technology
+(32:33) – Ragnar Lothbrok
+(42:00) – The Great Heathen Army
+(46:42) – Rollo and Normandy
+(56:54) – Viking religion and Valhalla
+(1:07:25) – Viking explorers
+(1:12:33) – Vikings in North America
+(1:25:55) – Vikings in the East
+(1:45:33) – Byzantine Empire
+(1:54:17) – History and human nature
PODCAST LINKS:
+– Podcast Website: https://lexfridman.com/podcast
+– Apple Podcasts: https://apple.co/2lwqZIr
+– Spotify: https://spoti.fi/2nEwCF8
+– RSS: https://lexfridman.com/feed/podcast/
+– Podcast Playlist: https://www.youtube.com/playlist?list=PLrAXtmErZgOdP_8GztsuKi9nrraNbKKp4
+– Clips Channel: https://www.youtube.com/lexclips
Transcript:
+https://lexfridman.com/jensen-huang-transcript
CONTACT LEX:
+Feedback – give feedback to Lex: https://lexfridman.com/survey
+AMA – submit questions, videos or call-in: https://lexfridman.com/ama
+Hiring – join our team: https://lexfridman.com/hiring
+Other – other ways to get in touch: https://lexfridman.com/contact
EPISODE LINKS:
+NVIDIA: https://nvidia.com
+NVIDIA on X: https://x.com/nvidia
+NVIDIA AI on X: https://x.com/NVIDIAAI
+NVIDIA on YouTube: https://youtube.com/@nvidia
+NVIDIA on Instagram: https://www.instagram.com/nvidia/
+NVIDIA on LinkedIn: https://www.linkedin.com/company/nvidia/
+NVIDIA on Facebook: https://www.facebook.com/NVIDIA/
+NVIDIA on GitHub: https://github.com/NVIDIA
+Nemotron: https://developer.nvidia.com/nemotron
SPONSORS:
+To support this podcast, check out our sponsors & get discounts:
+Perplexity: AI-powered answer engine.
+Go to https://perplexity.ai/
+Shopify: Sell stuff online.
+Go to https://shopify.com/lex
+LMNT: Zero-sugar electrolyte drink mix.
+Go to https://drinkLMNT.com/lex
+Fin: AI agent for customer service.
+Go to https://fin.ai/lex
+Quo: Phone system (calls, texts, contacts) for businesses.
+Go to https://quo.com/lex
OUTLINE:
+(00:00) – Introduction
+(00:26) – Sponsors, Comments, and Reflections
+(06:34) – Extreme co-design and rack-scale engineering
+(09:20) – How Jensen runs NVIDIA
+(28:41) – AI scaling laws
+(43:41) – Biggest blockers to AI scaling laws
+(45:25) – Supply chain
+(47:20) – Memory
+(53:25) – Power
+(58:45) – Elon and Colossus
+(1:02:13) – Jensen’s approach to engineering and leadership
+(1:07:38) – China
+(1:15:51) – TSMC and Taiwan
+(1:21:06) – NVIDIA’s moat
+(1:26:43) – AI data centers in space
+(1:30:31) – Will NVIDIA be worth $10 trillion?
+(1:40:40) – Leadership under pressure
+(1:54:26) – Video games
+(2:01:18) – AGI timeline
+(2:03:31) – Future of programming
+(2:17:02) – Consciousness
+(2:23:23) – Mortality
PODCAST LINKS:
+– Podcast Website: https://lexfridman.com/podcast
+– Apple Podcasts: https://apple.co/2lwqZIr
+– Spotify: https://spoti.fi/2nEwCF8
+– RSS: https://lexfridman.com/feed/podcast/
+– Podcast Playlist: https://www.youtube.com/playlist?list=PLrAXtmErZgOdP_8GztsuKi9nrraNbKKp4
+– Clips Channel: https://www.youtube.com/lexclips

O2 schließt 60 Läden und streicht 1.100 Stellen. Goldene Handshakes sollen für freiwillige Kündigungen sorgen. Nächstes Jahr gibt es eine zweite Sparrunde.
]]>
Paramount Skydance darf im Europäischen Wirtschaftsraum den Konkurrenten Warner Bros. Discovery übernehmen. Nur im Kino-Segment bedarf es einer Zusage.
]]>
Samsung prüft laut Financial Times, sich am französischen KI-Start-up Mistral zu beteiligen. Dieses kann Speicherchips brauchen, die Samsung herstellt.
]]>
Canonical bringt einen Enterprise Store: Hierbei handelt es sich um einen Proxy für die lokale Verteilung von Snap-Paketen in Unternehmensnetzen.
]]>
Anthropic setzt ab 2027 AMDs Instinct-MI455X-Beschleuniger ein. Bis zu zwei Gigawatt Kapazität sind geplant.
]]>
Der Verlängerung der Ausnahme für die Chatkontrolle steht nach einer Übereinkunft der EU-Länder nichts mehr im Weg – samt Änderungswünschen des Parlaments.
]]>
Weniger Bürokratie, mehr Kapital: Die Regierung will Innovationen in Deutschland halten und Gründungen aus der Wissenschaft erleichtern.
]]>
Die Bundesnetzagentur hat die vertraglichen Zugangsbedingungen für Kabelkanäle und Masten der Telekom für Wettbewerber zum Glasfaserausbau final festgelegt.
]]>
Defekte Speichermodule verursachen Abstürze und beschädigen Daten, sind aber schwer zu diagnostizieren. Wir geben Tipps, welche PC-Software RAM-Fehler aufdeckt.
]]>
Mehrfach gab es Hinweise auf Monde in einem anderen Sternsystem, bestätigt wurde keiner. Die bislang besten Indizien weisen nun auf ein merkwürdiges Exemplar.
]]>
Vor allem Chats bei Instagram funktionieren derzeit nur bedingt. Alte Nachrichten laden teilweise nicht, neue werden nicht verschickt.
]]>
Firefox 153 führt native Container ein, trennt Browser-Kontexte und verbessert den Schutz lokaler Daten sowie die Privatsphäre.
]]>
Nvidia will AMDs Helios-Server zuvorkommen und verkündet den Einsatz eigener Vera-Rubin-Racks. Benchmarks sind mit Vorsicht zu genießen.
]]>
Die USA und China wollen im September wohl über gemeinsame KI-Regeln sprechen. US-Finanzminister Bessent soll die Gespräche leiten.
]]>
Metallorganische Gerüstverbindungen (MOF) sollen Sorptionskühlung schon bei den relativ niedrigen Kühlwassertemperaturen von Rechenzentren ermöglichen.
]]>
Auf der Galaxy Unpacked zeigt Samsung zwei neue Designs seiner mit Google entwickelten smarten Brillen. Der Marktstart im Herbst erfolgt zunächst ohne EU-Raum.
]]>
Unity, Unreal, Godot oder was Eigenes? Viele Studios setzen bei der Spieleentwicklung auf Unity und sind damit erfolgreich. Wir haben nach den Gründen gefragt.
]]>
Samsung legt die Galaxy Watch Ultra neu auf und schraubt dabei an den Specs wie am Preis.
]]>
Samsung präsentiert neue Foldables: Das Galaxy Z Fold 8 kommt in einem kompakteren Formfaktor, begleitet von einem Ultra-Modell und einem leichteren Flip 8.
]]>
VW will die Entwicklung von Fahren mit Level 3 und Level 4 in China beschleunigen. Dafür vertieft der Konzern die Zusammenarbeit mit Horizon Robotics.
]]>
Mit vier Relais und Eingängen bis 220 Volt bringt das PICO-EVB Industrie-I/O auf den Raspberry Pi Pico.
]]>
BellSofts gehärteter Builder für Paketo Buildpacks baut Container-Images auf einer weitgehend CVE-freien Alpaquita-Basis – ganz ohne Dockerfile.
]]>
Zwar macht herkömmliche Materie nur einen Bruchteil des Kosmos aus, trotzdem kennen wir nicht einmal deren Vorkommen komplett. Nun gibt es einen neuen Hinweis.
]]>
In einem Gerichtsprozess in den USA stellte sich heraus, dass eine Global Device ID von Windows Nutzer identifizierbar macht.
]]>
Sich mit der Rolle des Informationssicherheitsbeauftragten vertraut machen: die Anforderungen verstehen und die notwendigen Kompetenzen erwerben.
]]>
Eine KI bricht aus und übernimmt fremde Server. Droht uns jetzt das Ende der Menschheit? Falsche Frage, meint Jürgen Schmidt, Leiter von heise security.
]]>
Asus gönnt seinem leichten ExpertBook Ultra einen matten OLED-Touchscreen, einen leisen Lüfter und bis zu 64 GByte Arbeitsspeicher.
]]>
Apple schießt demnächst ein Framework zur DVD-Wiedergabe ab. Als Nächstes ist dann die gesamte Wiedergabe dran. Doch es gibt Alternativen.
]]>
LM Studio begibt sich ins Agentengeschäft. Mit Bionic lassen sich offene Modelle lokal oder via Cloud nutzen, um Mac oder PC zu steuern.
]]>
Die norwegische Klassifizierungsgesellschaft DNV hat das Wellenkraftwerk Corpower C4 zertifiziert. Es ist die erste Zertifizierung für eine solche Anlage.
]]>
Pratt & Witney und GKN Aerospace wollen strukturelle Bauteile von Militärflugzeugen per 3D-Druck erstellen und das anhand eines Triebwerksgehäuses erproben.
]]>
Bundeswirtschaftsministerin Reiche sieht trotz gestiegener Spritpreise keinen Spielraum für neue Entlastungen. Die Haushaltslage lasse das nicht zu.
]]>
Perfekter Einstieg in die Verwaltung von Microsoft 365: IT-Admins erhalten einen detaillierten Überblick – von Lizenzen über Tenant bis Purview.
]]>
Apples E-Mail-Schutz hatte seit einem Jahr einen Bug, der Daten-Leaks erlaubte. Inzwischen hat sich Apple erbarmt, doch eine US-Sammelklage wird fortgesetzt.
]]>
Laut einer Umfrage wächst der Anteil der Kinder und Jugendlichen, die Australiens Social-Media-Sperre umgehen. Wer sich daran hält, gilt eher als „uncool“.
]]>
Apple testet ein KI-System, um seinen Kundendienstmitarbeitern zu helfen. „Live Notes“ erfasst Gespräche – und manche Supporter fürchtet Überwachung.
]]>
In Serv-U schließt SolarWinds mit einem Update diverse kritische Lücken, die etwa das Einschleusen von Schadcode erlauben.
]]>
Mit 48 Millionen Euro hat microagi die größte Einstiegsfinanzierung eines deutschen Start-ups eingesammelt. Google Cloud wird erster Partner mit Nvidia-Technik.
]]>
Lernen Sie, wie Sie Microsoft 365 Copilot sicher und datenschutzkonform implementieren. +
]]>
Griechenland reagiert mit Helmpflicht, Versicherung und hohen Bußgeldern auf die Häufung von E-Tretroller-Unfällen.
]]>
Eine Übersichtsarbeit zeigt, dass nur etwa die Hälfte aller Mental Health Apps mit wissenschaftlich geprüfter Wirksamkeit noch öffentlich verfügbar ist.
]]>
Zum Jahresanfang 2026 kamen in Deutschland 593 Pkw auf 1000 Einwohner. Der Zuwachs speist sich vor allem aus dem E-Auto-Hochlauf.
]]>
IT-Sicherheitsforscher haben in der Update-Komponente von Veeam eine Sicherheitslücke entdeckt, die das Ausweiten der Rechte ermöglicht.
]]>
Fensterflächen können zur Energiegewinnung genutzt werden, wie ein Prototyp eines halbtransparenten Perowskit-Solarmoduls zeigt.
]]>
Eine Podcastfolge fast ohne PKI, aber mit gehörig Drama (bei der IETF), Kopfschütteln (über Cisco) und gefährlichen Sicherheitslücken (im In- und Ausland).
]]>
KI-Assistenten erobern die Urlaubswelt. Die digitalen Helfer sind immer höflich und meistens hilfreich – aber manchmal auch herrlich daneben.
]]>
Zum vierteljährlichen Oracle CPU liefert der Hersteller 1449 Sicherheitsupdates aus – ein neuer Rekordwert. Admins sollten handeln.
]]>
SAP- und ERP-Spezialisten sind laut einer Auswertung die Top-Verdiener unter den IT-Freiberuflern. Insgesamt wird die Auftragslage aber schlechter.
]]>
Die USA fliegen seit Tagen wieder Angriffe auf den Iran, das Land attackiert seine Nachbarn. Angeblich wurden dabei jetzt AWS-Rechenzentren in Bahrain zerstört.
]]>
KI verdichtet Arbeitsprozesse und erzeugt mehr Stress. Das neue Sonderheft c’t KI-Wissen 2026 erklärt Ursachen und zeigt Auswege auf.
]]>
Bei einem Test der Fähigkeiten neuer KI-Modelle sind die aus ihrer Umgebung ausgebrochen und haben Hugging Face kompromittiert. Das hat OpenAI eingestanden.
]]>
Yamaha kombiniert einen drehfreudigen Dreizylinder mit einem Halbautomatik-Getriebe. Das Tourenmotorrad überzeugt im Test, auch durch sein Fahrwerk.
]]>
Gemini-Neuerungen nur Lite + Energiebedarf von Rechenzentren + Apples Hide my Email unzureichend + EU-Reform gegen Informationsfreiheit + Entspannung bei SSDs
]]>
Aktuell stellen Rechenzentren in den USA 5,9 Prozent des gesamten Stromverbrauchs dar. Das wird in den nächsten zehn Jahren massiv ansteigen, so eine Prognose.
]]>
Google legt neue Light-Varianten seines LLMs auf. Bei der mächtigeren Pro-Variante spießt es sich weiter.
]]>
Apples Dienst „E-Mail-Adresse verbergen” schaffte das nur schlecht. Die echten Adressen aufzudecken, war simpel.
]]>
Ein EU-Kommissar fordert laut einem Leak eine „Perestroika“ der EU-Bürokratie, aber auch einen geschützten Raum für interne Debatten. Beobachter sind alarmiert.
]]>
Microsoft und Mistral bauen ihre Partnerschaft deutlich aus. Das umfangreiche Abkommen umfasst KI-Infrastruktur, Modellintegration und Vertrieb.
]]>
Mobileye lässt Autos Straßendaten sammeln und stellt diese dann wieder zur Verfügung. Stellantis will einige Modelle mit dem System ausstatten.
]]>
Google plant Chips, in die Gemini-Modellstrukturen fest integriert sein sollen. Sie sollen KI-Anwendungen schneller und effektiver machen.
]]>
In Florida testen die US-Luftwaffe und die Darpa gerade autonom fliegende Kampfjets. Dabei handelt es sich um modifizierte F-16.
]]>
Der ab sofort bestellbare 125-kW-Vollhybridantrieb für VW Golf und VW T-Roc Hybrid rundet Volkswagens Hybrid-Palette zwischen den Mild- und Plug-in-Hybriden ab.
]]>
Die neue Heimat für die IT-Sparte der Schwarz Gruppe steht. In Bad Friedrichshall finden Tausende Mitarbeiter Platz.
]]>
Ein Valve-Fan hat kostenlose 3D-Druckdateien veröffentlicht, mit denen sich die Steam Machine in den ikonischen Companion Cube aus Portal kleiden lässt.
]]>
Die Sparkassen bieten in ihrer Sparkassen-App mit S-Neo ein kostenloses Wertpapier-Depot an. Es macht Neobrokern Konkurrenz.
]]>
Zum Wochenende wurde die „wp2shell“-WordPress-Lücke bekannt. Seitdem beobachten IT-Sicherheitsforscher Attacken im Internet darauf.
]]>
Garmin hat mit dem Cirqa seinen ersten bildschirmlosen Fitnesstracker vorgestellt. Das Band erfasst Gesundheitsdaten und kommt ohne Abozwang.
]]>
Microsoft verschiebt die Entfernung des -Credential-Parameters in Exchange Online PowerShell: Administratoren sollten bis Dezember 2026 ihre Skripte anpassen.
]]>
Lernen Sie anhand praktischer Beispiele, wie Sie Ihre Kubernetes-Umgebung durch effektive Methoden und Werkzeuge vor Angriffen schützen. +
]]>
Ein KI-Modell von OpenAI hat wiederholt Wege gefunden, Sicherheitsmechanismen zu umgehen. Die Entwickler designen daher ein anderes Monitoring-System.
]]>
Sanskrit ist eine Sprache mit einer großen Geschichte, die in Indien aber kaum noch gesprochen wird. Mithilfe von Onlinediensten und KI soll sich das ändern.
]]>
Apple ermöglicht es künftig, bestimmte Probleme am iPhone direkt zu überprüfen. So arbeitet der neue Modus.
]]>
Ab der zweiten Jahreshälfte 2027 soll es wieder mehr NAND-Flash geben, als weltweit gebraucht wird – weil bei Endkunden die Nachfrage wegbricht.
]]>
Weil ein Robotaxi Rauch ignoriert und sich einer Brandstelle genähert hat, ruft Zoox seine Fahrzeuge zurück. Laut einer Verkehrsbehörde war es kein Einzelfall.
]]>
Daimler-Truck-Chefin rechnet bei Elektro-Lkw mit kräftiger Konkurrenz aus China. Um wettbewerbsfähiger zu werden, sollen in Deutschland 5000 Jobs wegfallen.
]]>
In gut zwei Monaten findet Apples nächste iPhone-Keynote statt. Für die Pro-Modelle plant Apple einige Verbesserungen. Die fünf wichtigsten im Überblick.
]]>
Das Kartellamt sieht durch Preisvorgaben beim Reifengroßhandel die Preissetzungsfreiheit eingeschränkt. Die Wettbewerbshüter gehen gegen drei Firmen vor.
]]>
Die zehnte heise devSec behandelt im September Themen von Supply-Chain-Security über sichere KI-gestützte Softwareentwicklung bis zu Post-Quantum-Kryptologie.
]]>
Am Sonntag ging die Webseite von Nextcloud vorübergehend offline. Der Anbieter bestätigt auf Anfrage einen Cyberangriff.
]]>
Es geht um Apples iPhone-Ökosystem: 2024 reichte das Department of Justice Klage ein. Nun gibt es Bestrebungen zu einer Einigung – mit ungewissem Ausgang.
]]>
Bei Deezer ist im Juni erstmals mehr als die Hälfte neu hochgeladener Musik KI-generiert – im Schnitt rund 90.000 Tracks pro Tag.
]]>
Das Have-I-Been-Pwned-Projekt hat mehr als 55 Millionen Konten aus dem Suno-Datenleck zur Datenhalde hinzugefügt.
]]>
Kimi K3 und andere chinesische Open-Weight-Modelle befeuern in Washington den Ruf nach politischen Gegenmaßnahmen. Auch im Netz wird hitzig diskutiert.
]]>
Das Open-Source-Visualisierungs- und Monitoring-Tool Grafana ist verwundbar. Nun haben die Entwickler eine kritische Sicherheitslücke geschlossen.
]]>
Der Taupunktlüfter hat sich in den letzten Jahren als zuverlässiges System zum Trocknen von Wohnungen und Häusern erwiesen. Nun gibt es ein Update der Software.
]]>
Entwicklern ist es offenbar gelungen, „dutzende“ Apps an Apples Review-Prozess vorbeizuschmuggeln, über die man auf Zock-Plattformen gelangt.
]]>
Microsoft schaltet Meeting Insights in Outlook ab und ersetzt es durch Copilot. Auch beim E-Mail-Schreiben hilft Copilot künftig.
]]>
Ab September sollen Kinder in Frankreich keine Social-Media-Konten mehr anlegen können. Alte werden ab Januar gesperrt. Darauf hat sich das Parlament geeinigt.
]]>
Qnetic baut in Shanghai eine Testanlage, um seine Schwungrad-Energiespeicher testen zu können. Ein 200-kWh-Speicher soll als erstes validiert werden.
]]>
Die neue Assess-Erweiterung von Spec Kit 0.13 sortiert automatisiert Ideen, bevor sie in eine Spec eingehen. Außerdem beseitigt Spec Kit eine Reihe an Bugs.
]]>
Wie Personen mit Autismusdiagnose ihre Fähigkeiten gut im Software-Testing einsetzen können, erklären Helmut Pichler und Markus Kalbhenn.
]]>
Die Finanzaufsicht BaFin hat TeamViewer ein Bußgeld von 240.000 Euro aufgebrummt. Grund ist ein Cyberangriff aus dem Jahr 2024.
]]>
Erhalten Sie einen umfassenden Einblick in die Praxis der IT-Grundschutz-Methodik des BSI. Mit anschließender Prüfung und Zertifizierung.
]]>
„Desktop Explorer“ lässt Spieler die rätselhaften Geheimnisse eines alten Computers entdecken. Ein minimalistisches, aber extrem forderndes Mystery-Abenteuer.
]]>
So funktionieren Passkeys: Der erste Teil der Praxis-Serie für Entwickler zeigt im Detail die Architektur, die auf FIDO2 und WebAuthn aufbaut.
]]>
Der Molkereiprodukte-Zweig fairlife von Coca Cola muss nach einem Ransomware-Vorfall temporär die Produktion einstellen.
]]>
Nach dem Shitstorm im März zeigte Nvidia DLSS 5 auf der Siggraph deutlich zurückhaltender. Ob es auf aktueller Hardware läuft, bleibt offen.
]]>
Kommenden März will die ESA das Weltraumteleskop Plato starten, das erdähnliche Exoplaneten suchen und erforschen soll. Nun wurde ein Meilenstein geschafft.
]]>
Der unbemannte Drohnenabfangjäger Morfius X-Rotor soll Drohnenschwärme kosteneffizient mit Hochleistungs-Mikrowellen bekämpfen. Ein Prototyp ist in Entwicklung.
]]>
Nach drei verschobenen Fristen steht fest: Fable 5 bleibt nur in teuren Claude-Plänen ohne Aufpreis nutzbar. Pro-Abonnenten bekommen einmaliges Guthaben.
]]>
Der IT Summit 2026 zeigt IT-Verantwortlichen konkrete Wege, wie sie ihr Unternehmen bei KI, Arbeitsplatz und Infrastruktur digital souveräner aufstellen können.
]]>
Die E-Auto-Förderung soll Menschen mit wenig Geld einen Kauf ermöglichen, offenbar mit Erfolg. Nun fordern einige, die Unterstützung auf Gebrauchte auszuweiten.
]]>
Ab September 2027 sollen Smartphones und Smartwatches aus Tschechiens Klassenzimmern verschwinden. Kritiker halten das für Populismus – und warnen vor Frust.
]]>
Fürs KI-Training hat Anthropic urheberrechtswidrige Buchsammlungen benutzt. Dafür wird jetzt eine Milliardenstrafe fällig – um eine höhere Summe zu vermeiden.
]]>
Warner-Übernahme auf Eis + Cyberangriff auf Katasteramt + Telekom bleibt am Ball + Tankrabatt wird nicht erneuert + Leitlinien zur Kennzeichnung von KI-Inhalten
]]>
Ein Angreifer löscht die gesamte rumänische Grundbuchdatenbank, nachdem eine Erpressung scheiterte, und bringt damit den Immobilienmarkt zum Stillstand.
]]>
Nach einer Klage mehrerer US-Bundesstaaten stoppt eine Richterin vorerst die Paramount-Warner-Fusion und gibt ihnen zwei Wochen Zeit, gegen den Deal vorzugehen.
]]>
Die Telekom hat sich auch die Rechte für die nächste Veranstaltung 2030 gesichert. Mehrere Spiele werden trotzdem auch im Free-TV zu sehen sein.
]]>
Mehrere sowjetische Versuche zuvor schlugen fehl, so konnte die NASA am 20. Juli 1976 die erste erfolgreiche Marslandung für sich verbuchen.
]]>
Ermittler aus Deutschland und den USA haben die Infrastruktur des Phishing-Services Kratos zerschlagen. Der Dienst ermöglichte monatlich tausende Angriffe.
]]>
Rund 2100 Parlamentsmitarbeiter nutzen täglich KI-Tools – mit entsprechenden Qualitätseinbußen. Der EPGenAI Hub soll ab September sicherere Abhilfe schaffen.
]]>
AMD zieht einen Deal in der Azure-Cloud an Land. Microsoft kauft Epyc-Venice-Prozessoren und hochpreisige KI-Beschleuniger.
]]>
Die EU-Kommission hat Leitlinien zur Kennzeichnung von KI-Inhalten verabschiedet. Ab August müssen Anbieter KI-generierte Inhalte transparent ausweisen.
]]>
Um Fahrer von E-Autos angemessen an den Infrastrukturkosten zu beteiligen, wird in Großbritannien künftig eine Gebühr je Meile fällig.
]]>
PC-Selbstbauern stehen voraussichtlich weitere Preiserhöhungen beim Arbeitsspeicher und bei SSDs ins Haus. Ein Valve-Mitarbeiter warnt.
]]>
Die Nachfrage nach dem KI-Modell Kimi K3 übersteigt die Rechenkapazitäten von Moonshot AI. Neue Abonnements lassen sich vorerst nicht abschließen.
]]>
IPFire Core Update 203 ersetzt Unbound durch Knot Resolver, bringt DNS-Firewall, DoT und 6-GHz-WLAN.
]]>
Vergleichbare E-Auto-Modelle kosten real 18 Prozent weniger als 2020. Doch der Trend zu größeren Fahrzeugen treibt den Medianpreis auf 53.000 Euro.
]]>
Diesel hat sich binnen zwei Wochen um 23 Cent verteuert. Bei E10 ist es nicht mehr weit zu Rekordniveaus. Einen neuen Tankrabatt soll es vorerst nicht geben.
]]>
Das Expeditionsschiff Tara Polar Station hat seine Reise ins Nordmeer angetreten. Es soll ein Jahr lang durch die Arktis driften und Daten sowie Proben sammeln.
]]>
Administratoren und IT-Verantwortliche lernen ihre Rolle im ISMS kennen und trainieren, wie sie Maßnahmen der ISO 27001 technisch und organisatorisch umsetzen.
]]>
Nach einem Anschlag auf die Berliner Stromversorgung wehren sich vier Tatverdächtige gegen die Beschlagnahmung von Smartphones und anderen Geräten.
]]>
Laut OpenAI handelt es sich bei dem Vorgang um ein selten vorkommendes Versehen. Allerdings wurde das Verhalten des LLMs im Entwicklungsprozess vorhergesagt.
]]>
Die OpenSSL-Maintainer haben stillschweigend eine Denial-of-Service-Lücke geschlossen. Okta nennt sie „HollowByte“.
]]>
Der chinesische Onlinemarktplatz AliExpress hat über Jahre gegen den Digital Services Act verstoßen und muss nun 550 Millionen Euro zahlen.
]]>
Apple steht kurz vor der Überholung seines Kompakt-Tablets – und bereitet auch neue Modelle weiterer Baureihen vor. Doch gibt es technische Defizite?
]]>
Innenminister Dobrindt treibt eine radikale Reform des Nachrichtendienstrechts voran. Agenten des Verfassungsschutzes sollen sogar Wohnungen durchsuchen dürfen.
]]>
Der Asteroid, der vor 66 Millionen Jahren die Dinosaurier ausgelöscht hat, gehörte wohl einer seltenen Klasse an. Das Aussterben lief anders ab als gedacht.
]]>
Ab dem 26.08. lernen Sie in fünf Sessions künstliche Intelligenz zu entwickeln: Machine Learning, neuronale Netze und Deep Learning – alles effizient in Python.
]]>
Die Update-Software WSUS hat seit vergangener Woche mit Problemen zu kämpfen, hat Microsoft nun eingeräumt. Es gibt erste Fixes.
]]>
Apples schnellster Rechner ist mittlerweile der Mac Studio. Das war lange anders. Nun gibt es neue Details zu alten Planungen im Hinblick auf High-End-Systeme.
]]>
Gotify 3.0.0 führt OpenID Connect für die Anmeldung ein, verschärft den Umgang mit API-Token und überarbeitet die Konfiguration.
]]>
Bethesda arbeitet an „Fallout 5“, Remastern von „Fallout 3“ und „New Vegas“ sowie einem neuen „Fallout“ von Obsidian. Termine gibt es bisher keine.
]]>
Apple macht seinen populären Musikstreamingdienst teurer, Deutschland inklusive. iCloud+ ist in anderen Regionen betroffen.
]]>
Volkswagen hat den Zugriff auf seine App für Nutzer von Custom ROMs wie GrapheneOS oder LineageOS gesperrt. Grund ist die Google Play Integrity API.
]]>
Die Plattform zum Teilen quelloffener KI-Modelle und -Datensätze Hugging Face wurde Opfer eines Cyberangriffs einer KI.
]]>
Weltweit hat Apple die Tarife für iPads, Macs und Zubehör angezogen, Smartphones blieben verschont. In einem Markt hat sich das nun verändert.
]]>
Lernen Sie, wie Sie unter Druck klare Entscheidungen treffen und ruhig kommunizieren, um Ihr IT-Team sicher durch Krisensituationen zu steuern.
]]>
In China läuft es für die sogenannten Premium-Autohersteller aus Deutschland schon länger nicht mehr rund. Vor einem Jahr kam noch eine Luxusauto-Steuer hinzu.
]]>
Die Behebung der Probleme am Starship dauert ein paar Tage länger als ursprünglich gedacht. Jetzt soll die Riesenrakete in der Nacht zu Freitag abheben.
]]>
Angreifer können Nginx Open Source und Nginx Plus attackieren. Sicherheitsupdates sind verfügbar.
]]>
Frankreichs Glücksspielaufsicht ANJ lässt Internetanbieter den Zugang zu Polymarket sperren – zwei Jahre nach der ersten Mahnung.
]]>
Ein IT-Sicherheitsforscher hat eine Schwachstelle in Shark-Saugrobotern entdeckt, die die Übernahme aus dem Internet ermöglicht.
]]>
Alle Infos auf der secIT digital: Ab September 2026 gelten die ersten Vorgaben des CRA. Das IT-Sicherheitskonzept Grundschutz++ soll 2026 finalisiert werden.
]]>
Immer mehr Restaurants und Hotels löschen Bewertungen auf Google. Warum Deutschland dabei europaweit hervorsticht und was Kritik von Fake unterscheidet.
]]>
In zwei Wochen wird eine SpaceX-Raketenstufe auf dem Mond einschlagen, auf der Erde wird das wohl nicht sichtbar sein. Ein NASA-Orbiter soll später nachsehen.
]]>
Gemessen daran, dass der EV2 ein Kleinwagen ist, fährt er ziemlich erwachsen und ist auch mit der kleinen Batterie empfehlenswert, sofern das Profil stimmt.
]]>I would like to show you my project, but it's difficult because it only works with a registration, so I explain the concept to you.
The Idea: +Everyone who registers has to do an onboarding and answer meaningful questions that help you to find a right match. The matching happens by the system. Once you're done with the onboarding, you enter the pool. When a match is found, you go into a 1on1 14 question-set with that person. All answers are revealed immediately. At the end both decide if they form a connection or not. Only if both agree, the chat opens. Once a connection is formed, they can play through other prepared question sets, so the conversation doesn't get dry. It's also possible to create custom question sets to play through with your connected matches.
I just got this idea because I really wanted away from all the typical friendship and dating apps that are just a marketplace of user profiles. I feel like that's the only hook other apps offer, people come back because they are bored and browse through profiles. On tinder it's swiping through pictures and on other apps it's a list of profiles where you can filter with your matching criteria. But all that felt just shallow to me. I think people rarely ask the right questions each other, like really mandatory things that matter to form a any kind of relationship with someone. I've been on multiple different social platforms and it always felt mega shallow. Most people can't even start a good conversation, it's often just stuck at small talk. Maybe it's not even peoples fault, that's why I tried with these question sets to tackle multiple problems. First, that you don't even have to bother with someone if you have entirely different worldviews, which you would normally just find out if you talk long enough with someone. And second, just killing the small talk issue, by giving people a base.
So before I started coding this project, I actually did a research if there is anything backed by science to find out, which kind of questions would actually matter to find out, if you can handle someone. There were a lot of studies I've found e.g. "Aron and colleagues (1997)", "Hall (2019)", "Byrne (1971)", "Finkel and colleagues (2012)" and "Hazan and Shaver (1987)". I took their research work and tried to create questions based on them.
The project is running on Next, Postgresql, everything dockerized, running on a small Hetzner VPS. +I used Claude+Codex to develop everything, but I wouldn't say it's really vibecoded, since I work as a Senior Dev and I used my main tech stack.
It's an open beta currently and it's live for like 14 days - I have ~150 users right now. And honestly, I am really overwhelmed by those numbers, because it's the first time that I ever managed to attract this amount of people on a project I've launched.
When I started, I launched it as a closed beta, so it was invite only. During that period I got so much good feedback from people, it was incredible. I implemented almost everything my first users told me. Since all the changes, I didn't retrieve any further feedback what people wish would be different. It's just constant good feedback since then. People contact me from alone and just tell me how much they like these questions and the loop.
My marketing strategy is mainly Reddit currently, but I started also new methods. I found some super relevant subreddits that had no rules against advertising. When I wrote my posts on reddit, I didn't mention a product name or link. I've only described the idea and if somebody would have interest trying it out. That worked surprisingly well. +Another thing I've done was using a social app that allows anonymous posts at your current location, kinda something like "Nextdoor". +Posts on this app bring me daily 1-5 new registrations.
I wonder what you guys think about it and I am open for any critics!
+Comments URL: https://news.ycombinator.com/item?id=49014246
+Points: 3
+# Comments: 2
+]]>Comments URL: https://news.ycombinator.com/item?id=49014143
+Points: 4
+# Comments: 0
+]]>Comments URL: https://news.ycombinator.com/item?id=49014007
+Points: 35
+# Comments: 4
+]]>Comments URL: https://news.ycombinator.com/item?id=49013995
+Points: 18
+# Comments: 3
+]]>Comments URL: https://news.ycombinator.com/item?id=49013538
+Points: 42
+# Comments: 5
+]]>Comments URL: https://news.ycombinator.com/item?id=49013356
+Points: 51
+# Comments: 11
+]]>Comments URL: https://news.ycombinator.com/item?id=49013036
+Points: 199
+# Comments: 43
+]]>Comments URL: https://news.ycombinator.com/item?id=49012777
+Points: 31
+# Comments: 0
+]]>Comments URL: https://news.ycombinator.com/item?id=49012070
+Points: 406
+# Comments: 115
+]]>A small, on-device model is fast and private, but sometimes wrong, but frontier models are getting expensive pretty fast. So, we post-trained Gemma 4 E2B post-trained to know when it's wrong. Every response comes with a confidence score between 0 and 1. Developers can accept the on-device when it's high, hand off to a bigger cloud model when it's low. By routing only 15-35% of queries to Gemini 3.1 Flash-Lite, Gemma-4-E2B matches Gemini 3.1 Flash-Lite on most benchmarks.
- ChartQA: 15-20%
- LibriSpeech: 25-30%
- MMBench, GigaSpeech, MMAU: 30-35%
- MMLU-Pro: 45-55%
We were always frustrated by the routing signals hybrid apps rely on: asking the model to rate itself in text (unreliable, and you're parsing prose), or token entropy heuristics (barely better than a coin flip in our tests). So we did mechanistic studies on small models, Gemma 4 particularly, and found the hidden state for different layers carry meaningful self-awareness signal for various situations.
SO we extended the model with a 68k params probe layer (LayerNorm, low-rank projection, attention pooling, small MLP head) reads one intermediate layer during decoding and predicts p(wrong); confidence = 1 - p(wrong), returned as structured data, never parsed out of the answer text.
Across 12 hold-out benchmarks spanning text, vision and audio, the probe averages 0.814 AUROC vs 0.549 for token entropy. The result that convinced us this is real: the probe was trained on zero audio data, yet scores 0.79-0.88 AUROC on four audio benchmarks where entropy is near-random or worse (0.32-0.52). It's reading a modality-independent correctness signal from the hidden state, not memorizing patterns from its training data.
We published all weights on HuggingFace and provide copy-pase codes to run it on Transformers, MLX, Llama.cpp or Cactus. With Ollama, vLLM, SGLang etc in the works. For llama.cpp we ship a patch series you compile in once (upstreaming is planned). The code is MIT licensed; Gemma model use remains subject to the Gemma terms.
GitHub: https://github.com/cactus-compute/cactus-hybrid
Weights: https://huggingface.co/collections/Cactus-Compute/cactus-hyb...
Some caveats:
- The probe scores single-sequence decoding only, up to the first 1024 generated tokens.
- Handoff works best when routing per task in a multi-step process, not per step.
- Hierarchical routing is still in the works: try on-device, then DeepSeek v4 Flash, before Fable/GPT5.5/Gemini/Muse/Grok.
- The technique is boutique for each model, we will share each weights as they roll out.
These issues are currently being tackled at Cactus and updated weights will be shipped directly into the HuggingFace collection and GitHub repository straight up. Please let us know your thoughts, it helps us find ways to improve the design progressively.
Thanks a million!
+Comments URL: https://news.ycombinator.com/item?id=49010782
+Points: 18
+# Comments: 3
+]]>Comments URL: https://news.ycombinator.com/item?id=49010648
+Points: 183
+# Comments: 55
+]]>Comments URL: https://news.ycombinator.com/item?id=49010345
+Points: 496
+# Comments: 299
+]]>Comments URL: https://news.ycombinator.com/item?id=49010167
+Points: 307
+# Comments: 57
+]]>Comments URL: https://news.ycombinator.com/item?id=49010129
+Points: 328
+# Comments: 131
+]]>Here’s a demo: https://www.youtube.com/watch?v=0HsDtNkdMpM.
We started with an embeddable email editor because a lot of products eventually need one: CRMs, marketing tools, customer engagement platforms, marketplaces, internal tools, and vertical SaaS apps all run into this at some point. At first, it sounds like a small feature: "just" add a drag and drop editor. In practice, it turns into a big pain. You end up dealing with email rendering, Outlook quirks, responsive layouts, templates, merge tags, image uploads, exports, permissions, localization, versioning, and a long tail of edge cases that have nothing to do with your core product
Over time, we saw the same problem beyond email. Apps also need landing pages, invoices, proposals, reports, contracts, and PDFs. Some of this content is best created visually by end users. Some of it is better generated in code by developers. Increasingly, some of it is also generated by AI agents. Many teams eventually need all three workflows. That is the direction we have been working toward with Unlayer.
There are three parts we are showing today:
(1) Unlayer Elements. This is our open-source React component library for creating emails, pages, and documents in code (repo: https://github.com/unlayer/elements, more at https://unlayer.com/elements). Instead of hand-writing raw HTML templates, developers can compose content using React components, reuse sections like headers, footers, CTAs, invoice rows, and branded blocks, keep templates in Git, and render them into production output.
One newer use case we are seeing is AI-assisted content creation. If an AI agent is asked to create an email, invoice, report, or landing page, the output is usually raw HTML or markdown that becomes hard to maintain. With Elements, the agent can generate structured React components instead. A developer can review the result, refactor it, keep it in Git, and still pass the design into a visual builder later if someone needs to edit it.
(2) Visual Builder. This is the drag and drop editor (repo: https://github.com/unlayer/react-email-editor, more at https://unlayer.com/email-builder) that can be embedded inside an app so non-technical users can create or edit content. In the demo, we show the email builder and the AI assistant inside the builder. The goal is not to replace the developer workflow, but to connect it with a visual workflow when marketers, admins, customers, or internal teams need to make changes themselves.
(3) Document Builder. This is for structured documents such as proposals, reports, invoices, contracts, and PDFs. We have seen a lot of teams build separate systems for email templates, web pages, and document generation, even though the underlying primitives are similar: layout, content blocks, variables, assets, preview, export, and permissions. More: https://unlayer.com/document-builder
The technical challenge is making these workflows share a common foundation. Developers should be able to build templates in code when that makes sense. End users should be able to edit visually when that makes sense. AI agents should be able to generate structured content instead of unmaintainable blobs. The final output should still be usable by the host application.
We make money by selling hosted builder, template, export, and platform features to companies embedding this into their products. Elements is open source. The commercial product is the broader hosted platform around builders, collaboration, storage, exports, and production use cases.
We were part of W22, so this is a late Launch HN. At the time, Unlayer was an embeddable email editor, and we did not think we had the right broader story for HN yet. Since then, the product has expanded into a more general content creation layer for products, including emails, pages, documents, APIs, open-source developer projects, and AI-assisted workflows. That felt like a better moment to bring it to HN and ask for feedback.
We'd really appreciate thoughts from HN. This is one of those areas where a lot of people have strong opinions because they’ve been burned by editors, email HTML, document editing, or “simple” content workflows before. We'd love to hear what resonates, what sounds wrong, and what you think we should be thinking harder about!
+Comments URL: https://news.ycombinator.com/item?id=49008901
+Points: 43
+# Comments: 22
+]]>Our experiment did have an interesting leaderboard but even more surprising was the measurements of each LLM. We scored each on four behavioral dimensions, two of which lean heavily on an LLM classifier. When we removed those two, one of the frontier models fell six positions. When we then checked the classifier against a second judge, the per-model agreement between them ranged from 85% to 22%. The aggregate kappa (0.04 on probe detection) indicated the instrument was noisy without saying which models the noise was hitting. The most affected model shared a model family with the classifier. This isn't proof of bias, just one observation we recorded.
We realize LLM judges can be unreliable, and while it wasn't our original intent to test this, it ended up being the most interesting finding. The divergence between the two judges is the finding we think generalizes to other judge-based benchmarks.
We emphasize this is just a proof of concept and not a validated benchmark. We prepared a thorough limitations section in the paper, including just 50 runs per model, overlapping CIs among the top models, no human raters, a tiny environment, etc.
Everything we did is publicly available, the paper and data are CC BY 4.0, while the code is MIT. The paper, transcripts, code, and complete API billing export can be found at https://doi.org/10.5281/zenodo.21386663
If you find issues, please let us know, that's why we're sharing this. We're currently designing Phase 2 and want it to be as robust as possible. We're looking at human baselines, multiple judges, more objectives, a larger environment, etc.
+Comments URL: https://news.ycombinator.com/item?id=49008538
+Points: 91
+# Comments: 57
+]]>Comments URL: https://news.ycombinator.com/item?id=49008440
+Points: 247
+# Comments: 103
+]]>To avoid this loop, I ended up creating Bento, a single HTML file with everything you need in a slide tool including animations and shared editing. There's no install or cloud login, everything works offline. The default deck is around 560 KB and it doesn't need to fetch anything once you got it.
Open it in a browser and then you can edit, present, print and save. Share it via email or via Airdrop and all they need is a browser to edit, present and also do live collab on the slides. Drop it in to Claude or ChatGPT to transform existing pptx files into Bento slides. There is no cloud involved, only an encrypted blind relay to allow for shared editing. The relay doesn't see any of the data.
Check it out at https://bento.page/slides/ which takes you straight to the editor.
Go to https://bento.page/guestbook/ to try out the live guestbook to experience share editing / collab.
There is also a gallery with some sample decks on the website - https://bento.page/
All the code is MIT licensed and you can find it here - https://github.com/nyblnet/bento . I used reveal.js with several other libraries (including some homegrown ones), and Claude Code.
+Comments URL: https://news.ycombinator.com/item?id=49008211
+Points: 578
+# Comments: 140
+]]>Comments URL: https://news.ycombinator.com/item?id=49007671
+Points: 39
+# Comments: 59
+]]>Comments URL: https://news.ycombinator.com/item?id=49007626
+Points: 112
+# Comments: 80
+]]>Republicans passed more than $1 trillion for the Pentagon alongside a budget blueprint to fund the war with Iran and implement provisions of President Trump's election overhaul bill.
(Image credit: Anna Moneymaker)
The agreement gives American companies priority access to nuclear reactors and fuel to Saudi Arabia. It's expected to last decades and be worth billions of dollars.
(Image credit: Andrew Harnik)
After a week of nationwide protests over the direction of Ukraine's military strategy in the ongoing war with Russia, the Ukrainian military has a new commander, Mykhailo Drapatyi. Here's what to know.
(Image credit: Paula Bronstein for NPR)
For more than a decade, there's been something fishy going on in a lake that straddles Vermont and the province of Quebec. It involves cancer, a kind of catfish, and — possibly — clues about how tumors metastasize.
(Image credit: Joshua Brown)
Plastic surgery is becoming so normalized and undetectable, it's changing our relationship to reality. The New Yorker staff writer Jia Tolentino considers how beauty standards have dovetailed with AI.
It's not just watching paint dry. The twists and turns of the Reflecting Pool repairs, originally a two-week project, have kept bloggers and viewers busy all summer.
(Image credit: Jackie Lay)
An independent autopsy of the body of Nolan Wells shows that the cause of death is undetermined pending an investigation, according to attorney Ben Crump.
(Image credit: Gerald Herbert)
The scythe-winged birds have nested in the cracks of the Western Wall and other holy sites in Jerusalem for thousands of years.
Trump will attend the dignified transfer of U.S. service members killed in the Middle East. And, Pete Hegseth is requesting billions from Congress to help with the rising cost of the war in Iran.
(Image credit: Saul Loeb)
If you could call a number and say you’re sorry, and no one would know…what would you apologize for? For fifteen years, you could call a number in Manhattan and do just that. This is the story of the line, and the man at the other end who became consumed by his own creation. He was known as “Mr. Apology.” As thousands of callers flooded the line, confessing to everything from shoplifting to infidelity, drug dealing to murder, Mr. Apology realized he couldn’t just listen. He had to do something, even if it meant risking everything. From Wondery the makers of Dr. Death and The Shrink Next Door, comes a story about empathy, deception and obsession. Marissa Bridge, who knew Mr. Apology better than anyone, hosts this six episode series.
All episodes are available now. You can binge the series ad-free on Wondery+ or on Amazon Music with a Prime membership or Amazon Music Unlimited subscription.
", + "attributes": {} + }, + "item": [ + { + "content": { + "title": { + "content": "Wondery Presents - Flipping The Bird: Elon vs Twitter", + "attributes": {} + }, + "link": [ + { + "content": "https://wondery.com/shows/the-apology-line/?utm_source=rss", + "attributes": {} + } + ], + "description": { + "content": "When Elon Musk posted a video of himself arriving at Twitter HQ carrying a white sink along with the message “let that sink in!” It marked the end of a dramatic takeover. Musk had gone from Twitter critic to “Chief Twit” in the space of just a few months but his arrival didn’t put an end to questions about his motives. Musk had earned a reputation as a business maverick. From PayPal to Tesla to SpaceX, his name was synonymous with big, earth-shattering ideas. So, what did he want with a social media platform? And was this all really in the name of free speech...or was this all in the name of Elon Musk?
From Wondery, the makers of WeCrashed and In God We Lust, comes the wild story of how the richest man alive took charge of the world’s “digital public square.”
Listen to Flipping The Bird: Wondery.fm/FTB_TAL
See Privacy Policy at https://art19.com/privacy and California Privacy Notice at https://art19.com/privacy#do-not-sell-my-info.
", + "attributes": {} + }, + "author": null, + "category": [], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://dts.podtrac.com/redirect.mp3/chrt.fm/track/9EE2G/pdst.fm/e/rss.art19.com/episodes/7bfce2e9-7889-480a-afde-46e810e82b1a.mp3?rss_browser=BAhJIhRweXRob24tcmVxdWVzdHMGOgZFVA%3D%3D--ac965bdf6559f894a935511702ea4ac963845aca", + "type": "audio/mpeg", + "length": "4824502" + } + } + ], + "guid": { + "content": "gid://art19-episode-locator/V0/tdroPC934g1_yKpnqnfmA67RAho9P0W6PUiIY-tBw3U", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2023-05-01T08:00:00", + "attributes": {} + }, + "source": null, + "itunes:title": { + "content": "Wondery Presents - Flipping The Bird: Elon vs Twitter", + "attributes": {} + }, + "itunes:author": null, + "itunes:subtitle": null, + "itunes:summary": { + "content": "When Elon Musk posted a video of himself arriving at Twitter HQ carrying a white sink along with the message “let that sink in!” It marked the end of a dramatic takeover. Musk had gone from Twitter critic to “Chief Twit” in the space of just a few months but his arrival didn’t put an end to questions about his motives. Musk had earned a reputation as a business maverick. From PayPal to Tesla to SpaceX, his name was synonymous with big, earth-shattering ideas. So, what did he want with a social media platform? And was this all really in the name of free speech...or was this all in the name of Elon Musk? \n\n\n\n\nFrom Wondery, the makers of WeCrashed and In God We Lust, comes the wild story of how the richest man alive took charge of the world’s “digital public square.”\n\n\n\n\nListen to Flipping The Bird: Wondery.fm/FTB_TAL\n\nSee Privacy Policy at https://art19.com/privacy and California Privacy Notice at https://art19.com/privacy#do-not-sell-my-info.", + "attributes": {} + }, + "itunes:duration": { + "content": "00:05:01", + "attributes": {} + }, + "itunes:episode": null, + "itunes:season": null, + "itunes:episodeType": { + "content": "trailer", + "attributes": {} + }, + "itunes:explicit": { + "content": "yes", + "attributes": {} + }, + "itunes:image": { + "content": null, + "attributes": { + "href": "https://content.production.cdn.art19.com/images/be/e1/82/c2/bee182c2-14b7-491b-b877-272ab6754025/bd4ab6d08d7b723678a682b6e399d26523245b3ba83f61617b9b28396aba1092b101cd86707576ec021b77e143b447463342b352f8825265b15310c989b6cb93.jpeg" + } + }, + "itunes:keywords": { + "content": "Serial killer,TRUE CRIME,Society,This American Life,MURDER,Apology,Apology Line,Binge Worthy Documentary,New York City,Binge-worthy true crime,exhibit c", + "attributes": {} + }, + "itunes:block": null, + "content:encoded": "When Elon Musk posted a video of himself arriving at Twitter HQ carrying a white sink along with the message “let that sink in!” It marked the end of a dramatic takeover. Musk had gone from Twitter critic to “Chief Twit” in the space of just a few months but his arrival didn’t put an end to questions about his motives. Musk had earned a reputation as a business maverick. From PayPal to Tesla to SpaceX, his name was synonymous with big, earth-shattering ideas. So, what did he want with a social media platform? And was this all really in the name of free speech...or was this all in the name of Elon Musk?
From Wondery, the makers of WeCrashed and In God We Lust, comes the wild story of how the richest man alive took charge of the world’s “digital public square.”
Listen to Flipping The Bird: Wondery.fm/FTB_TAL
See Privacy Policy at https://art19.com/privacy and California Privacy Notice at https://art19.com/privacy#do-not-sell-my-info.
" + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "Introducing: The Apology Line", + "attributes": {} + }, + "link": [ + { + "content": "https://wondery.com/shows/the-apology-line/?utm_source=rss", + "attributes": {} + } + ], + "description": { + "content": "If you could call a number and say you’re sorry, and no one would know…what would you apologize for? For fifteen years, you could call a number in Manhattan and do just that. This is the story of the line, and the man at the other end who became consumed by his own creation. He was known as “Mr. Apology.” As thousands of callers flooded the line, confessing to everything from shoplifting to infidelity, drug dealing to murder, Mr. Apology realized he couldn’t just listen. He had to do something, even if it meant risking everything. From Wondery the makers of Dr Death and The Shrink Next Door, comes a story about empathy, deception and obsession. Marissa Bridge, who knew Mr. Apology better than anyone, hosts this six episode series.
All episodes are available now. You can binge the series ad-free on Wondery+ or on Amazon Music with a Prime membership or Amazon Music Unlimited subscription.
See Privacy Policy at https://art19.com/privacy and California Privacy Notice at https://art19.com/privacy#do-not-sell-my-info.
", + "attributes": {} + }, + "author": null, + "category": [], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://dts.podtrac.com/redirect.mp3/chrt.fm/track/9EE2G/pdst.fm/e/rss.art19.com/episodes/a462e9fa-5e7b-4b0a-b992-d59fa1ca06cd.mp3?rss_browser=BAhJIhRweXRob24tcmVxdWVzdHMGOgZFVA%3D%3D--ac965bdf6559f894a935511702ea4ac963845aca", + "type": "audio/mpeg", + "length": "2320091" + } + } + ], + "guid": { + "content": "gid://art19-episode-locator/V0/2E7Nce-ZiX0Rmo017w7js5BvvKiOIMjWELujxOvJync", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2021-01-05T03:26:59", + "attributes": {} + }, + "source": null, + "itunes:title": { + "content": "Introducing: The Apology Line", + "attributes": {} + }, + "itunes:author": null, + "itunes:subtitle": null, + "itunes:summary": { + "content": "If you could call a number and say you’re sorry, and no one would know…what would you apologize for? For fifteen years, you could call a number in Manhattan and do just that. This is the story of the line, and the man at the other end who became consumed by his own creation. He was known as “Mr. Apology.” As thousands of callers flooded the line, confessing to everything from shoplifting to infidelity, drug dealing to murder, Mr. Apology realized he couldn’t just listen. He had to do something, even if it meant risking everything. From Wondery the makers of Dr Death and The Shrink Next Door, comes a story about empathy, deception and obsession. Marissa Bridge, who knew Mr. Apology better than anyone, hosts this six episode series.\n\nAll episodes are available now. You can binge the series ad-free on Wondery+ or on Amazon Music with a Prime membership or Amazon Music Unlimited subscription.\n\nSee Privacy Policy at https://art19.com/privacy and California Privacy Notice at https://art19.com/privacy#do-not-sell-my-info.", + "attributes": {} + }, + "itunes:duration": { + "content": "00:02:24", + "attributes": {} + }, + "itunes:episode": null, + "itunes:season": null, + "itunes:episodeType": { + "content": "trailer", + "attributes": {} + }, + "itunes:explicit": { + "content": "yes", + "attributes": {} + }, + "itunes:image": { + "content": null, + "attributes": { + "href": "https://content.production.cdn.art19.com/images/be/e1/82/c2/bee182c2-14b7-491b-b877-272ab6754025/bd4ab6d08d7b723678a682b6e399d26523245b3ba83f61617b9b28396aba1092b101cd86707576ec021b77e143b447463342b352f8825265b15310c989b6cb93.jpeg" + } + }, + "itunes:keywords": { + "content": "Exhibit C,New York City,Murder,This American Life,society,serial killer,true crime,Apology Line,Binge Worthy Documentary ,Binge-worthy true crime,Apology", + "attributes": {} + }, + "itunes:block": null, + "content:encoded": "If you could call a number and say you’re sorry, and no one would know…what would you apologize for? For fifteen years, you could call a number in Manhattan and do just that. This is the story of the line, and the man at the other end who became consumed by his own creation. He was known as “Mr. Apology.” As thousands of callers flooded the line, confessing to everything from shoplifting to infidelity, drug dealing to murder, Mr. Apology realized he couldn’t just listen. He had to do something, even if it meant risking everything. From Wondery the makers of Dr Death and The Shrink Next Door, comes a story about empathy, deception and obsession. Marissa Bridge, who knew Mr. Apology better than anyone, hosts this six episode series.
All episodes are available now. You can binge the series ad-free on Wondery+ or on Amazon Music with a Prime membership or Amazon Music Unlimited subscription.
See Privacy Policy at https://art19.com/privacy and California Privacy Notice at https://art19.com/privacy#do-not-sell-my-info.
" + }, + "attributes": {} + } + ], + "language": { + "content": "en", + "attributes": {} + }, + "copyright": { + "content": "© 2021 Wondery, Inc. All rights reserved", + "attributes": {} + }, + "managingEditor": { + "content": "iwonder@wondery.com (Wondery)", + "attributes": {} + }, + "webMaster": null, + "pubDate": null, + "lastBuildDate": null, + "category": [], + "generator": { + "content": "ART19", + "attributes": {} + }, + "docs": null, + "cloud": null, + "ttl": null, + "image": { + "content": { + "url": { + "content": "https://content.production.cdn.art19.com/images/be/e1/82/c2/bee182c2-14b7-491b-b877-272ab6754025/bd4ab6d08d7b723678a682b6e399d26523245b3ba83f61617b9b28396aba1092b101cd86707576ec021b77e143b447463342b352f8825265b15310c989b6cb93.jpeg", + "attributes": {} + }, + "title": { + "content": "The Apology Line", + "attributes": {} + }, + "link": { + "content": "https://wondery.com/shows/the-apology-line/?utm_source=rss", + "attributes": {} + }, + "width": null, + "height": null, + "description": null + }, + "attributes": {} + }, + "rating": null, + "textInput": null, + "skipHours": null, + "skipDays": null, + "itunes:author": { + "content": "Wondery", + "attributes": {} + }, + "itunes:type": { + "content": "serial", + "attributes": {} + }, + "itunes:title": null, + "itunes:subtitle": null, + "itunes:summary": { + "content": "If you could call a number and say you’re sorry, and no one would know…what would you apologize for? For fifteen years, you could call a number in Manhattan and do just that. This is the story of the line, and the man at the other end who became consumed by his own creation. He was known as “Mr. Apology.” As thousands of callers flooded the line, confessing to everything from shoplifting to infidelity, drug dealing to murder, Mr. Apology realized he couldn’t just listen. He had to do something, even if it meant risking everything. From Wondery the makers of Dr. Death and The Shrink Next Door, comes a story about empathy, deception and obsession. Marissa Bridge, who knew Mr. Apology better than anyone, hosts this six episode series.
All episodes are available now. You can binge the series ad-free on Wondery+ or on Amazon Music with a Prime membership or Amazon Music Unlimited subscription.
", + "attributes": {} + }, + "itunes:owner": { + "content": { + "itunes:name": { + "content": "Wondery", + "attributes": {} + }, + "itunes:email": { + "content": "iwonder@wondery.com", + "attributes": {} + } + }, + "attributes": {} + }, + "itunes:image": { + "content": null, + "attributes": { + "href": "https://content.production.cdn.art19.com/images/be/e1/82/c2/bee182c2-14b7-491b-b877-272ab6754025/bd4ab6d08d7b723678a682b6e399d26523245b3ba83f61617b9b28396aba1092b101cd86707576ec021b77e143b447463342b352f8825265b15310c989b6cb93.jpeg" + } + }, + "itunes:category": [ + { + "content": null, + "attributes": { + "text": "True Crime" + } + } + ], + "itunes:explicit": { + "content": "yes", + "attributes": {} + }, + "itunes:keywords": { + "content": "Exhibit C,Binge-worthy true crime,New York City,Binge Worthy Documentary ,Apology Line,Apology,Murder,This American Life,society,true crime,serial killer", + "attributes": {} + }, + "itunes:new-feed-url": null, + "itunes:block": null, + "itunes:complete": null, + "atom:link": { + "@href": "https://rss.art19.com/apology-line", + "@rel": "self", + "@type": "application/rss+xml" + } + }, + "attributes": {} + }, + "@xmlns:itunes": "http://www.itunes.com/dtds/podcast-1.0.dtd", + "@xmlns:atom": "http://www.w3.org/2005/Atom", + "@xmlns:content": "http://purl.org/rss/1.0/modules/content/", + "@xmlns:art19": "https://art19.com/xmlns/rss-extensions/1.0", + "@xmlns:googleplay": "http://www.google.com/schemas/play-podcasts/1.0/" +} diff --git a/tests/samples/rdf/rdf_1_0/data.xml b/tests/samples/rdf/rdf_1_0/data.xml new file mode 100644 index 0000000..2f729f3 --- /dev/null +++ b/tests/samples/rdf/rdf_1_0/data.xml @@ -0,0 +1,56 @@ + +Михал Садилек
" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/sport/08/06/2024/666431ef9a794771470d8127", + "rbc_news:title": "Мбаппе и Гризманн вошли в состав сборной Франции на Евро-2024", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/0/82/347178424573820.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Mike Hewitt / Getty Images", + "description": "Килиан Мбаппе
" + } + }, + { + "@url": "https://www.rbc.ru/sport/08/06/2024/666411bf9a7947155de8d4e2", + "rbc_news:title": "Лидер сборной Польши получил травму в матче с Украиной и пропустит Евро", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/4/03/347178342040034.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Valerio Pennicino / Getty Images", + "description": "Аркадиуш Милик
" + } + }, + { + "@url": "https://www.rbc.ru/sport/08/06/2024/666406da9a7947016d187487", + "rbc_news:title": "Игроки «Реала» и «Челси» вошли в состав сборной Украины на Евро-2024", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/5/25/347178314474255.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Ryan Pierse / Getty Images", + "description": "Михаил Мудрик
" + } + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "В хоккейном СКА отреагировали на пожар на домашней арене", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/sport/09/06/2024/66658b889a794752eee761e9", + "attributes": {} + } + ], + "description": { + "content": "Пожар произошел в ночь на воскресенье в чаше арены — сгорел видеобортик, пострадали трибуны и покрытие. В СКА заявили, что в межсезонье не занимаются на этом стадионе", + "attributes": {} + }, + "author": { + "content": "Анна Сатдинова", + "attributes": {} + }, + "category": [ + { + "content": "Спорт", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/1/67/347179310741671.png", + "type": "image/png", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:sport:66658b889a794752eee761e9", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T14:31:45+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "14:31:45", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/sport/09/06/2024/66658b889a794752eee761e9", + "rbc_news:anons": "Пожар произошел в ночь на воскресенье в чаше арены — сгорел видеобортик, пострадали трибуны и покрытие. В СКА заявили, что в межсезонье не занимаются на этом стадионе", + "rbc_news:news_id": "66658b889a794752eee761e9", + "rbc_news:type": "article", + "rbc_news:newsDate_timestamp": "1717932705", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 14:31:47 +0300", + "rbc_news:newsline": "sport", + "rbc_news:tag": [ + "Хоккей", + "ХК СКА Санкт-Петербург" + ], + "rbc_news:full-text": "Пожар, произошедший ночью на «СКА Арене» в Санкт-Петербурге, не отразился на хоккейном клубе СКА, стадион не задействован в предсезонной подготовке команды. Об этом сообщила пресс-служба СКА.\n\nПожар в чаше арены произошел в ночь на 9 июня. ТАСС со ссылкой на оперативные службы сообщил, что на арене выгорел электронный видеобортик, оплавились и сгорели трибуны на площади 200 кв. метров, сгорело 100 кв. метров и оплавилось 300 кв. метров пластикового покрытия чаши.\n\nВ СКА сообщили, что после плей-офф у клуба нет договорных отношений с ареной, на которой она проводила домашние матчи во второй половине сезона КХЛ.\n\n«Мы тренируемся в Новогорске и Сочи, домашний турнир Пучкова проводим в Ледовом, поэтому этот пожар никак не влияет на наше расписание», — сообщили в клубе.\n\n\n\nВ СКА назвали пожар «неприятным моментом, так как нет ничего важнее безопасности всех, кто мог находиться на арене».\n\nВ результате возгорания никто не пострадал.\n\nАрена, которая вмещает более 20 тыс. зрителей на хоккейных матчах, была введена в эксплуатацию в конце прошлого года. Гендиректор Дмитрий Сватковский в ноябре оценивал ее стоимость в 60 млрд. рублей.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/1/67/347179310741671.png", + "rbc_news:type": "image/png", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "Александр Демьянчук / ТАСС", + "rbc_news:description": "«СКА Арена» в Санкт-Петербурге
" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/sport/07/06/2024/6662db379a7947a929f85a7f", + "rbc_news:title": "Хельсинки обновили предложение по покупке арены у Тимченко и Ротенберга", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/1/86/347177547708861.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Tomi Hänninen / Newspix24 / Newspix24 / Global Look Press" + } + }, + { + "@url": "https://www.rbc.ru/sport/15/02/2024/65ccfa599a79470d49a9eb6d", + "rbc_news:title": "«Посчитали кошек и собак». Действительно ли СКА установил мировой рекорд", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/5/74/347079323125745.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Валентина Певцова / ТАСС", + "description": "«СКА Арена»
" + } + }, + { + "@url": "https://www.rbc.ru/sport/04/03/2024/65e5fcec9a794738ffd036b0", + "rbc_news:title": "РФС разрешил «Спартаку» вернуться на домашний стадион после ЧП с травой" + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "Парковки по всей Москве сделают бесплатными в День России", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/rbcfreenews/66658e8b9a7947bf5129beda", + "attributes": {} + } + ], + "description": { + "content": "В День России, 12 июня, парковка в Москве станет бесплатной на всех улицах, сообщил мэр Сергей Собянин.", + "attributes": {} + }, + "author": null, + "category": [ + { + "content": "Общество", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/6/92/347179332501926.jpeg", + "type": "image/jpeg", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:society:66658e8b9a7947bf5129beda", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T14:27:10+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "14:27:10", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/rbcfreenews/66658e8b9a7947bf5129beda", + "rbc_news:anons": "В День России, 12 июня, парковка в Москве станет бесплатной на всех улицах, сообщил мэр Сергей Собянин.", + "rbc_news:news_id": "66658e8b9a7947bf5129beda", + "rbc_news:type": "short_news", + "rbc_news:newsDate_timestamp": "1717932430", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 14:56:05 +0300", + "rbc_news:newsline": "society", + "rbc_news:tag": [ + "Москва", + "Сергей Собянин", + "парковки", + "День России" + ], + "rbc_news:full-text": "В День России, 12 июня, парковка в Москве станет бесплатной на всех улицах, сообщил мэр Сергей Собянин.\n\nОн уточнил, что парковки со шлагбаумом останутся платными и продолжат работать по действующим тарифам.\n\n12 мая — нерабочий праздничный день. В прошлом году День России выпал на понедельник, поэтому жители страны отдыхали сразу три дня. В этом россияне отдохнут в среду.\n\n\n\nПлатные парковки существуют в Москве с 2012 года. Их зону после этого регулярно расширяли. В январе 2024 году появились еще 50 участков, среди них улицы в районах Аэропорт, Северное Измайлово, Савеловский, Зюзино и др. А в феврале зону парковок расширили еще на 31 участок.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/6/92/347179332501926.jpeg", + "rbc_news:type": "image/jpeg", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "Екатерина Кузьмина / РБК" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/rbcfreenews/664607b59a794728a8232caa", + "rbc_news:title": "Прокуратура опротестовала запрет на парковку электросамокатов в Перми", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/6/26/347158669327266.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Константин Кокошкин / Global Look Press" + } + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/662cec2e9a794756cb9fb1f4", + "rbc_news:title": "В Люберцах простились с погибшим из-за замечания о парковке", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/2/00/347142231644002.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Максим Григорьев / ТАСС" + } + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/6629e31a9a7947daddcf1305", + "rbc_news:title": "В Москве на майские праздники парковку сделают бесплатной", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/6/65/347140246903656.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Екатерина Кузьмина / РБК" + } + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "В Белгороде и Курской области объявили ракетную опасность", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/rbcfreenews/66658f8f9a79473cc364f058", + "attributes": {} + } + ], + "description": { + "content": "В Белгороде и Белгородском районе объявлена ракетная опасность, сообщил глава региона Вячеслав Гладков.", + "attributes": {} + }, + "author": null, + "category": [ + { + "content": "Политика", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/4/76/347179329546764.jpeg", + "type": "image/jpeg", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:politics:66658f8f9a79473cc364f058", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T14:24:59+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "14:24:59", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/rbcfreenews/66658f8f9a79473cc364f058", + "rbc_news:anons": "В Белгороде и Белгородском районе объявлена ракетная опасность, сообщил глава региона Вячеслав Гладков.", + "rbc_news:news_id": "66658f8f9a79473cc364f058", + "rbc_news:type": "short_news", + "rbc_news:newsDate_timestamp": "1717932299", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 14:52:11 +0300", + "rbc_news:newsline": "politics", + "rbc_news:tag": [ + "Белгород", + "ракетная опасность", + "Вячеслав Гладков", + "Курская область" + ], + "rbc_news:full-text": "В Белгороде и Белгородском районе объявлена ракетная опасность, сообщил глава региона Вячеслав Гладков. Он призвал жителей спуститься в подвалы и оставаться там до получения сигнала сообщений об отбое ракетной опасности. Сигнал продлился 16 минут, с 14:15 до 14:31 мск.\n\nАналогичный сигнал запустили в Курской области, сообщил врио губернатора Алексей Смирнов. Он призвал укрыться в помещениях со сплошными стенами или спуститься в укрытия.\n\n\n\nБелгородская область и ее административный центр регулярно попадают под атаки. В регионе практически ежедневно запускают сигналы ракетной опасности. Сегодня такой сигнал запускают в третий раз.\n\nВ Курской области также неоднократно запускали сигнал ракетной опасности. В частности, 4 июня его объявили в городе Курчатов, где находится АЭС.\n\nПосле начала военной операции России на Украине приграничные регионы регулярно попадают под атаки дронов и обстрелы. Ранее днем ракетную опасность объявляли в Воронежской области, а Херсонской запускали авиационную опасность.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/4/76/347179329546764.jpeg", + "rbc_news:type": "image/jpeg", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "Александр Рюмин / ТАСС", + "rbc_news:description": "Белгород
" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/rbcfreenews/6665750c9a794710b7db959e", + "rbc_news:title": "Жителей Белгорода во второй раз за день предупредили о ракетной опасности", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/2/40/347179255944402.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Александр Рюмин / ТАСС", + "description": "Белгород
" + } + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/66656bfb9a794747ceae4f91", + "rbc_news:title": "Над Белгородской областью сбили ракету «Нептун» и два дрона", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/8/74/347179234584748.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Николай Гынгазов / ТАСС" + } + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/6665564c9a7947d363ac1ebd", + "rbc_news:title": "В Воронежской области вслед за Белгородом объявили ракетную опасность", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/5/90/347179180733905.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Сергей Бобылев / ТАСС", + "description": "Воронеж
" + } + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "Гладков сообщил об атаке двух дронов на село Безымено", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/rbcfreenews/66658c0a9a794744d3f3efde", + "attributes": {} + } + ], + "description": { + "content": "Вооруженные силы Украины (ВСУ) атаковали двумя дронами село Безымено Грайворонского городского округа, никто не пострадал, сообщил губернатор Вячеслав Гладков.", + "attributes": {} + }, + "author": null, + "category": [ + { + "content": "Политика", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/2/86/347179315001862.jpeg", + "type": "image/jpeg", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:politics:66658c0a9a794744d3f3efde", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T14:20:11+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "14:20:11", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/rbcfreenews/66658c0a9a794744d3f3efde", + "rbc_news:anons": "Вооруженные силы Украины (ВСУ) атаковали двумя дронами село Безымено Грайворонского городского округа, никто не пострадал, сообщил губернатор Вячеслав Гладков.", + "rbc_news:news_id": "66658c0a9a794744d3f3efde", + "rbc_news:type": "short_news", + "rbc_news:newsDate_timestamp": "1717932011", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 14:50:28 +0300", + "rbc_news:newsline": "politics", + "rbc_news:tag": [ + "Белгородская область", + "ВСУ", + "Украина", + "Вячеслав Гладков" + ], + "rbc_news:full-text": "Вооруженные силы Украины (ВСУ) атаковали двумя дронами село Безымено Грайворонского городского округа, никто не пострадал, сообщил губернатор Вячеслав Гладков.\n\nПервый беспилотник сбросил взрывное устройство на автомобиль; пассажиры успели покинуть салон. Второй сбросил взрывчатку на административный объект — там пробило крышу.\n\n\nГрайворонский городской округ расположен в считанных километрах от границы с Украиной. В 2021 году в городе жили 6179 человек. Округ регулярно попадает под обстрелы.\n\n\n\n\nБелгородская область в последние месяцы подвергается интенсивным обстрелам, в регионе периодически объявляют ракетную опасность, сбивают украинские ракеты и дроны. Ранее днем ВСУ атаковали Шебекинский и Новооскольский городские округа, никто не пострадал.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/2/86/347179315001862.jpeg", + "rbc_news:type": "image/jpeg", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "сервис «Яндекс.Карты»" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/rbcfreenews/6665750c9a794710b7db959e", + "rbc_news:title": "Жителей Белгорода во второй раз за день предупредили о ракетной опасности", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/2/40/347179255944402.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Александр Рюмин / ТАСС", + "description": "Белгород
" + } + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/66656bfb9a794747ceae4f91", + "rbc_news:title": "Над Белгородской областью сбили ракету «Нептун» и два дрона", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/8/74/347179234584748.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Николай Гынгазов / ТАСС" + } + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/6665564c9a7947d363ac1ebd", + "rbc_news:title": "В Воронежской области вслед за Белгородом объявили ракетную опасность", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/5/90/347179180733905.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Сергей Бобылев / ТАСС", + "description": "Воронеж
" + } + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "Минздрав Газы сообщил о 274 погибших в ходе операции ЦАХАЛ в Нусейрате", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/politics/09/06/2024/6665872f9a794708d5a2ffe4", + "attributes": {} + } + ], + "description": { + "content": "Накануне израильский спецназ провел спецоперацию по освобождению четырех заложников, включая одного россиянина, в лагере беженцев Нусейрат. По данным минздрава анклава, в результате погибли как минимум 274 человека", + "attributes": {} + }, + "author": { + "content": "Илья Пламенев", + "attributes": {} + }, + "category": [ + { + "content": "Политика", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/8/62/347179305621628.jpeg", + "type": "image/jpeg", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:politics:6665872f9a794708d5a2ffe4", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T14:12:05+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "14:12:05", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/politics/09/06/2024/6665872f9a794708d5a2ffe4", + "rbc_news:anons": "Накануне израильский спецназ провел спецоперацию по освобождению четырех заложников, включая одного россиянина, в лагере беженцев Нусейрат. По данным минздрава анклава, в результате погибли как минимум 274 человека", + "rbc_news:news_id": "6665872f9a794708d5a2ffe4", + "rbc_news:type": "article", + "rbc_news:newsDate_timestamp": "1717931525", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 14:18:40 +0300", + "rbc_news:newsline": "politics", + "rbc_news:tag": [ + "Израиль", + "ХАМАС", + "заложники", + "сектор Газа" + ], + "rbc_news:full-text": "По меньшей мере 274 палестинца погибли и 698 получили ранения в результате израильской операции по освобождению четырех заложников, проводившейся в центре лагеря палестинских беженцев Нусейрат в центральной части сектора Газа. Об этом сообщило в своем телеграм-канале министерство здравоохранения анклава, находящегося под контролем ХАМАС.\n\n«Многие пострадавшие по-прежнему находятся под завалами и на дорогах, бригады скорой помощи и гражданской обороны не могут добраться до них», — уточнили в министерстве.\n\nВсего, по данным минздрава, число жертв среди палестинцев с 7 октября превысило 37 тыс., еще свыше 84 тыс. получили ранения.\n\n\n\nИзраильский спецназ провел операцию по освобождению заложников, захваченных боевиками на музыкальном фестивале «Нова», накануне, 8 июня. В результате удалось освободить четырех человек, включая 27-летнего Андрея Козлова, гражданина России и Израиля. Операцию проводили при поддержке армии, разведки и ВВС. Во время рейда погиб один спецназовец.\n\nИсточники The New York Times (NYT) уточняли, что саму операцию согласовали за несколько минут до начала. Израильские военные решили действовать днем, поскольку в ХАМАС предполагали, что подобная операция пройдет ночью. Один заложник находился в первом здании, трое, в том числе Козлов, — в другом, и для их освобождения спецназ вступил в перестрелку. После освобождения из плена россиянин встретился с премьер-министром Израиля Биньямином Нетаньяху и поблагодарил его по-русски: «Спасибо вам».", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/8/62/347179305621628.jpeg", + "rbc_news:type": "image/jpeg", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "Emad Abu Shawiesh / Reuters", + "rbc_news:description": "Нейсурат, сектор Газа
" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/politics/09/06/2024/66650aea9a7947565c7a22f9", + "rbc_news:title": "WSJ узнала об угрозах Египта и Катара лидерам ХАМАС по требованию США", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/1/14/347179010398141.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Ramadan Abed / Reuters" + } + }, + { + "@url": "https://www.rbc.ru/politics/09/06/2024/6664e6f39a794775ba2f384b", + "rbc_news:title": "NYT узнала подробности освобождения захваченного ХАМАС россиянина" + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/66649b959a794720085861e8", + "rbc_news:title": "Освобожденный из плена ХАМАС петербуржец встретился с Нетаньяху" + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "На греческом острове нашли тело британского телеведущего Мосли", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/rbcfreenews/666581469a79474b50b4c902", + "attributes": {} + } + ], + "description": { + "content": "Тело ведущего Би-би-си Майкла Мосли, пропавшего во время отдыха на острове Сими в Греции, нашли, сообщает Associated Press со ссылкой на представителя полиции.", + "attributes": {} + }, + "author": null, + "category": [ + { + "content": "Политика", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/7/85/347179291561857.jpeg", + "type": "image/jpeg", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:politics:666581469a79474b50b4c902", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T14:03:23+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "14:03:23", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/rbcfreenews/666581469a79474b50b4c902", + "rbc_news:anons": "Тело ведущего Би-би-си Майкла Мосли, пропавшего во время отдыха на острове Сими в Греции, нашли, сообщает Associated Press со ссылкой на представителя полиции.", + "rbc_news:news_id": "666581469a79474b50b4c902", + "rbc_news:type": "short_news", + "rbc_news:newsDate_timestamp": "1717931003", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 14:07:45 +0300", + "rbc_news:newsline": "politics", + "rbc_news:tag": [ + "смерть", + "Греция", + "Би-би-си", + "журналист" + ], + "rbc_news:full-text": "Тело ведущего Би-би-си Майкла Мосли, пропавшего во время отдыха на острове Сими в Греции, нашли, сообщает Associated Press со ссылкой на представителя полиции. Информацию подтвердил источник Би-би-си.\n\nПо словам мэра Лефтериса Папакалодукаса, тело упало с крутого склона, в одной руке у погибшего была кожаная сумка. По данным Би-би-си, его обнаружили при осмотре береговой линии с помощью камер. Тело вскоре пройдет официальное опознание.\n\n67-летний журналист пропал 5 июня. В поисковой операции участвовали полиция, береговая охрана, волонтеры и другие силы. У Мосли остались жена и четверо детей.\n\n\n\nЖурналист получил медицинское образование, после работал в кадре почти 20 лет:, вел шоу о диете, физических упражнениях и медицине. Мосли знаком британским зрителям по выступлениям в утреннем эфире Би-би-си и на шоу «Один на один». Кроме того, он популяризировал периодическое голодание и низкоуглеводное питание. Мосли также был обозревателем Daily Mail.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/7/85/347179291561857.jpeg", + "rbc_news:type": "image/jpeg", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "Panormitis Chatzigiannakis / Reuters", + "rbc_news:description": "Обстановка на месте происшествия на острове Сими, Греция
" + }, + "rbc_news:related_links": { + "link": { + "@url": "https://www.rbc.ru/rbcfreenews/666354ac9a79470ba0cd9f5b", + "rbc_news:title": "Британский телеведущий Мосли пропал во время отдыха на греческом острове", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/9/47/347177862568479.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Fernvall Lotte / Aftonbladet / Zuma / Global Look Press", + "description": "Майкл Мосли
" + } + } + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "Marca узнала о планах «Реала» купить самого дорогого немецкого футболиста", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/sport/09/06/2024/6665858a9a7947709634d767", + "attributes": {} + } + ], + "description": { + "content": "Газета узнала, что Флориан Вирц договорился провести еще один сезон за «Байер», а потом перейти в «Реал». Леверкузенский клуб ранее заявил, что планирует получить за футболиста, признанного лучшим в бундеслиге, €150 млн", + "attributes": {} + }, + "author": { + "content": "Анна Сатдинова", + "attributes": {} + }, + "category": [ + { + "content": "Спорт", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/7/94/347179307185947.png", + "type": "image/png", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:sport:6665858a9a7947709634d767", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T13:59:14+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "13:59:14", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/sport/09/06/2024/6665858a9a7947709634d767", + "rbc_news:anons": "Газета узнала, что Флориан Вирц договорился провести еще один сезон за «Байер», а потом перейти в «Реал». Леверкузенский клуб ранее заявил, что планирует получить за футболиста, признанного лучшим в бундеслиге, €150 млн", + "rbc_news:news_id": "6665858a9a7947709634d767", + "rbc_news:type": "article", + "rbc_news:newsDate_timestamp": "1717930754", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 14:16:13 +0300", + "rbc_news:newsline": "sport", + "rbc_news:tag": [ + "Футбол", + "ФК Байер Леверкузен", + "Реал Мадрид" + ], + "rbc_news:full-text": "Полузащитник леверкузенского «Байера» Флориан Вирц стал целью мадридского «Реала» на лето 2025 года, пишет Marca.\n\nПо данным издания, 21-летний футболист договорился с «Байером», что отыграет за него еще один сезон, а с «Реалом» — о переходе в 2025-м.\n\nПри этом контракт футболиста с леверкузенским клубом рассчитан до лета 2027 года, а в «Байере» в апреле заявили, что хотят получить за игрока не меньше €150 млн.\n\nПортал Transfermarkt оценивает стоимость Вирца в €130 млн — он самый дорогой игрок бундеслиги и седьмой по стоимости в мире.\n\n\n\nВирц был признан лучшим игроком бундеслиги в минувшем сезоне, он выиграл с «Байером» чемпионат и Кубок Германии.\n\nВ сборной Германии полузащитник провел 18 матчей и забил один гол.\n\nВирц вошел в состав сборной на Евро-2024, который стартует 14 июня.\n\nСамым дорогим трансфером немецкого игрока в истории является переход Кая Хаверца из «Леверкузена» в «Челси» за €80 млн в 2020 году.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/7/94/347179307185947.png", + "rbc_news:type": "image/png", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "Alex Grimm / Getty Images", + "rbc_news:description": "Флориан Вирц
" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/sport/06/06/2024/664b07c09a79473d73c1b76c", + "rbc_news:title": "Украинский бомбардир и чудо «Байера». Главные сенсации топ-5 чемпионатов", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/7/79/347175838185797.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Aitor Alcalde / Getty Images", + "description": "Футболисты ФК «Жирона»
" + } + }, + { + "@url": "https://www.rbc.ru/sport/18/05/2024/6648c0079a7947192b894493", + "rbc_news:title": "«Байер» завершил сезон в чемпионате Германии без поражений", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/9/75/347160438326759.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Stuart Franklin / Getty Images" + } + }, + { + "@url": "https://www.rbc.ru/sport/22/05/2024/664e000f9a794740e8fd15b2", + "rbc_news:title": "«Аталанта» Миранчука выиграла Лигу Европы, разгромив «Байер»", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/5/26/347163878988265.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Joern Pollex / Bongarts / Getty Images", + "description": "Трофей Лиги Европы
" + } + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "Большинство немцев выступили за возвращение обязательного призыва в армию", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/politics/09/06/2024/66657daf9a7947174df08354", + "attributes": {} + } + ], + "description": { + "content": "60% немцев выступили за возвращение обязательного призыва, еще 32% инициативу не поддержали, свидетельствуют результаты опроса YouGov. С марта число сторонников всеобщей воинской повинности увеличилось на 8%", + "attributes": {} + }, + "author": { + "content": "Илья Пламенев", + "attributes": {} + }, + "category": [ + { + "content": "Политика", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/3/58/347179281459583.jpeg", + "type": "image/jpeg", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:politics:66657daf9a7947174df08354", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T13:53:29+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "13:53:29", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/politics/09/06/2024/66657daf9a7947174df08354", + "rbc_news:anons": "60% немцев выступили за возвращение обязательного призыва, еще 32% инициативу не поддержали, свидетельствуют результаты опроса YouGov. С марта число сторонников всеобщей воинской повинности увеличилось на 8%", + "rbc_news:news_id": "66657daf9a7947174df08354", + "rbc_news:type": "article", + "rbc_news:newsDate_timestamp": "1717930409", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 14:00:14 +0300", + "rbc_news:newsline": "politics", + "rbc_news:tag": [ + "Германия", + "призыв в армию", + "Военная операция на Украине", + "Бундесвер" + ], + "rbc_news:full-text": "Большинство жителей Германии выступают за возвращение обязательного воинского призыва, свидетельствуют результаты опроса, проведенного институтом изучения общественного мнения YouGov по заказу газеты Welt am Sonntag.\n\nТак, возврат всеобщей воинской повинности в целом поддержали 60% опрошенных, при этом 28% выбрали вариант «полностью поддерживаю», а 32% — «отчасти поддерживаю». Против инициативы выступили 32%, в том числе 18% — «отчасти против» и 14% — «полностью». Оставшиеся 8% не смогли четко ответить на вопрос.\n\nОпрос также показал, что почти половина граждан Германии (49%) в настоящее время полагают, что ФРГ угрожают иностранные вооруженные силы. Несколько меньше (40%), напротив, не видят угрозы безопасности страны. Еще 11% не стали высказывать свою точку зрения по этому поводу.\n\nОпрос YouGo проводился с 31 мая по 5 июня. В нем приняли участие 2295 человек. В марте институт Forsa проводил аналогичный опрос. Тогда за возвращение призыва высказались 52% немцев, против — 43%.\n\n\n\nПризыв на военную службу в Германии был приостановлен в 2011 году. С тех пор численность бундесвера неуклонно сокращалась и сегодня составляет 181,5 тыс. солдат. Глава Минобороны Германии Борис Писториус в прошлом декабре называл ошибкой отмену обязательной службы и говорил, что получил порядка 65 предложений о реорганизации бундесвера. Spiegel в марте писал, что министр поручил подготовить предложения о модели набора на военную службу с элементами призыва.\n\nНа заседании исполкома партии СДПГ в мае Писториус представил новую модель службы, которая основана на добровольном привлечении молодых людей в армию, в том числе при помощи разных стимулов — бесплатного получения водительских прав, погашения части кредитов на обучение, языковых курсов. Уже в июне он заявил, что бундесвер должен быть готов к войне к 2029 году. «Мы не должны думать, что [президент России Владимир] Путин остановится у границ Украины», — отмечал министр.\n\nСам Путин неоднократно говорил о нежелании столкновения с альянсом. «Напридумывали, что Россия хочет напасть на НАТО. Вы сбрендили совсем, что ли? Тупые вообще, как этот стол?» — заявил он на встрече с иностранными корреспондентами 5 июня.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/3/58/347179281459583.jpeg", + "rbc_news:type": "image/jpeg", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "Alexander Koerner / Getty Images" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/politics/09/06/2024/666570559a794747ceae4f9c", + "rbc_news:title": "В Германии решили увеличить число резервистов", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/0/59/347179263271590.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Sean Gallup / Getty Images" + } + }, + { + "@url": "https://www.rbc.ru/politics/05/06/2024/66607dd99a7947c0e4e5476e", + "rbc_news:title": "Писториус заявил о необходимости подготовить Германию к войне к 2029 году", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/2/90/347176011297902.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Christoph Soeder / dpa / Global Look Press", + "description": "Борис Писториус
" + } + }, + { + "@url": "https://www.rbc.ru/politics/17/02/2024/65d0da9d9a794700f7029c48", + "rbc_news:title": "Писториус предупредил о разделительных линиях между Россией и Западом", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/3/87/347081866152873.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Johannes Simon / Getty Images", + "description": "Борис Писториус
" + } + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "В Херсонской области объявили авиационную опасность", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/rbcfreenews/666586ee9a7947ce6ee276fb", + "attributes": {} + } + ], + "description": { + "content": "В Херсонской области объявлена авиационная опасность, сообщил губернатор Владимир Сальдо в телеграм-канале.", + "attributes": {} + }, + "author": null, + "category": [ + { + "content": "Политика", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/9/51/347179303402519.jpeg", + "type": "image/jpeg", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:politics:666586ee9a7947ce6ee276fb", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T13:45:37+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "13:45:37", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/rbcfreenews/666586ee9a7947ce6ee276fb", + "rbc_news:anons": "В Херсонской области объявлена авиационная опасность, сообщил губернатор Владимир Сальдо в телеграм-канале.", + "rbc_news:news_id": "666586ee9a7947ce6ee276fb", + "rbc_news:type": "short_news", + "rbc_news:newsDate_timestamp": "1717929937", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 14:03:15 +0300", + "rbc_news:newsline": "politics", + "rbc_news:tag": [ + "Херсонская область", + "Владимир Сальдо" + ], + "rbc_news:full-text": "В Херсонской области объявлена авиационная опасность, сообщил губернатор Владимир Сальдо в телеграм-канале.\n\nОн призвал местных жителей быть внимательными и сохранять спокойствие.\n\nХерсонская область вошла в состав России по итогам референдума в сентябре 2022-го. В ноябре того же года российские войска отошли из Херсона на левый берег Днепра. Украина контролирует правый берег Днепра.\n\n\n\nВСУ 7 июня дважды обстреляли село Садовое в Херсонской области. Оба раза удар пришелся по местному магазину. В результате погибли 22 человека, еще 15 пострадали. В регионе объявили двухдневный траур, 9 и 10 июня. СК завел дело о теракте по ст. 205 УК. Российский МИД пообещал наказать причастных к обеим атакам.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/9/51/347179303402519.jpeg", + "rbc_news:type": "image/jpeg", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "РИА Новости", + "rbc_news:description": "Херсон
" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/rbcfreenews/6664ba919a7947271a169b46", + "rbc_news:title": "Москалькова назвала бесчеловечными удары по ЛНР и Херсонской области" + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/6664582a9a79477626726f35", + "rbc_news:title": "В Херсонской области объявили траур по погибшим при обстреле села", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/6/87/347178532990876.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "SALDO_VGA / Telegram", + "description": "Обстановка в селе Садовое, 7 июля 2024 г.
" + } + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/6664154a9a79475c87a40140", + "rbc_news:title": "СК возбудил дело о теракте после обстрела села в Херсонской области", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/4/46/347178355570464.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "SALDO_VGA / Telegram" + } + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "Минобороны сообщило о сбитом украинском вертолете Ми-8", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/rbcfreenews/666584719a79473e002ab642", + "attributes": {} + } + ], + "description": { + "content": "Средства противовоздушной обороны сбили украинский вертолет Ми-8, сообщило Минобороны в ежедневной сводке.", + "attributes": {} + }, + "author": null, + "category": [ + { + "content": "Политика", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/1/98/347179300588981.jpeg", + "type": "image/jpeg", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:politics:666584719a79473e002ab642", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T13:36:12+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "13:36:12", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/rbcfreenews/666584719a79473e002ab642", + "rbc_news:anons": "Средства противовоздушной обороны сбили украинский вертолет Ми-8, сообщило Минобороны в ежедневной сводке.", + "rbc_news:news_id": "666584719a79473e002ab642", + "rbc_news:type": "short_news", + "rbc_news:newsDate_timestamp": "1717929372", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 13:55:01 +0300", + "rbc_news:newsline": "politics", + "rbc_news:tag": [ + "Минобороны", + "Вертолет Ми-8", + "ПВО", + "беспилотники", + "РСЗО HIMARS" + ], + "rbc_news:full-text": "Средства противовоздушной обороны сбили украинский вертолет Ми-8, сообщило Минобороны в ежедневной сводке.\n\nВ ведомстве не уточнили, где он был сбит. По оценке Минобороны, с начала военной операции России на Украине было уничтожено 276 вертолетов ВСУ. Кроме того, за сутки военные перехватили 66 беспилотников и 13 реактивных снарядов HIMARS американского производства.\n\nПомимо этого ВСУ потеряли боевые машины пехоты Marder немецкого производства, американские Bradley, а также два автомобиля, заявили в российском военном ведомстве.\n\n\n\nМинобороны регулярно сообщает о ходе военной операции. Накануне, 8 июня, ведомство отчиталось об уничтожении вертолета Ми-8, пяти безэкипажных катеров в Черном море, четырех ракет ATACMS, снарядов HIMARS и «Ольха», одной ракеты «Нептун» и 71 дрона.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/1/98/347179300588981.jpeg", + "rbc_news:type": "image/jpeg", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "Alex Babenko / Getty Images", + "rbc_news:description": "Вертолёт Ми-8
" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/politics/09/06/2024/6665736d9a7947fffe234918", + "rbc_news:title": "В Минобороны Украины назвали число женщин в рядах ВСУ", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/8/78/347179254085788.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Leon Neal / Getty Images" + } + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/666437aa9a7947362b7792e4", + "rbc_news:title": "Минобороны сообщило о сбитом украинском вертолете Ми-8", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/4/36/347178457849364.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Alex Babenko / Getty Images", + "description": "Вертолёт Ми-8
" + } + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/66641c549a794769a05c58c4", + "rbc_news:title": "Минобороны сообщило о трех сбитых беспилотниках над Белгородской областью", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/6/29/347178376874296.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Николай Гынгазов / ТАСС" + } + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "Будущий игрок «Реала» Эндрик повторил достижение Пеле в сборной Бразилии", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/sport/09/06/2024/66657dcc9a794797be6910e8", + "attributes": {} + } + ], + "description": { + "content": "Бразильцы победили мексиканцев со счетом 3:2. Победный гол забил 17-летний Эндрик, который отличился за сборную в третьем матче подряд. Ранее такую результативность до 18 лет в сборной Бразилии показывал только Пеле", + "attributes": {} + }, + "author": { + "content": "Анна Сатдинова", + "attributes": {} + }, + "category": [ + { + "content": "Спорт", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/8/69/347179274026698.png", + "type": "image/png", + "length": "" + } + }, + { + "content": null, + "attributes": { + "url": "https://img.youtube.com/vi/d89n5rTI-q4/0.jpg", + "type": "image/jpeg", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:sport:66657dcc9a794797be6910e8", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T13:29:42+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "13:29:42", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/sport/09/06/2024/66657dcc9a794797be6910e8", + "rbc_news:anons": "Бразильцы победили мексиканцев со счетом 3:2. Победный гол забил 17-летний Эндрик, который отличился за сборную в третьем матче подряд. Ранее такую результативность до 18 лет в сборной Бразилии показывал только Пеле", + "rbc_news:news_id": "66657dcc9a794797be6910e8", + "rbc_news:type": "article", + "rbc_news:newsDate_timestamp": "1717928982", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 13:36:59 +0300", + "rbc_news:newsline": "sport", + "rbc_news:tag": [ + "Футбол", + "Сборная Бразилии по футболу", + "Пеле" + ], + "rbc_news:full-text": "Нападающий «Палмейрас» Эндрик принес сборной Бразилии победу в товарищеском матче с мексиканцами, став вторым в истории национальной команды футболистом, который забил в трех матчах подряд до 18-летия.\n\nБразильцы победили мексиканцев со счетом 3:2 в матче, который прошел в городе Колледж-Стейшен в Техасе (США).\n\n17-летний Эндрик отличился на 96-й минуте с передачи Винисиуса Жуниора.\n\n\n\nЭндрик в июле, после достижения 18-летия, станет игроком мадридского «Реала».\n\nГол в ворота Мексики стал для Эндрика третьим в трех матчах за сборную подряд: в марте он забил Англии (1:0) и Испании (3:3, а всего провел пять встреч за основную сборную.\n\nВ сборной Бразилии ранее только Пеле удавалось забить в трех матчах подряд в возрасте младше 18 лет. Впервые он забил три мяча в двух товарищеских матчах с аргентинцами и встрече со сборной Парагвая. А позднее на чемпионате мира 1958 года отличился в четвертьфинале, полуфинале и финале.\n\nПеле умер в возрасте 82 лет в декабре 2022 года.\n\nСборная Бразилии примет участие в Кубке Америки, который пройдет в США с 20 июня по 14 июля. Бразильцы сыграют в одной группе с Колумбией, Парагваем и Коста-Рикой.", + "rbc_news:image": [ + { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/8/69/347179274026698.png", + "rbc_news:type": "image/png", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "Tim Warner / Getty Images", + "rbc_news:description": "Эндрик (в центре)
" + }, + { + "rbc_news:url": "https://img.youtube.com/vi/d89n5rTI-q4/0.jpg", + "rbc_news:type": "image/jpeg", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright" + } + ], + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/sport/27/03/2024/6603e7729a794714afebf60b", + "rbc_news:title": "Эндрик в 17 лет улучшил достижение Пеле в сборной Бразилии", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/9/81/347115319717819.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Juan Medina / Reuters", + "description": "Эндрик
" + } + }, + { + "@url": "https://www.rbc.ru/sport/07/12/2023/65715f959a7947118d485006", + "rbc_news:title": "Клуб Пеле впервые вылетел из элитной лиги и вызвал беспорядки в Бразилии", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/3/38/347019316692383.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "ФК «Форталезе»" + } + }, + { + "@url": "https://www.rbc.ru/sport/15/05/2024/6644827e9a7947592842bfbd", + "rbc_news:title": "В Бразилии узнали о желании «Краснодара» купить Джона Кеннеди", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/7/17/347157660389177.png", + "type": "image/png", + "size_nick": "original", + "copyright": "limited", + "source": "Alexandre Neto / Keystone Press Agency / Global Look Press", + "description": "Джон Кеннеди
" + } + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "Орбан рассказал, от чего зависит мир на Украине", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/rbcfreenews/66657b489a794731ffe7280a", + "attributes": {} + } + ], + "description": { + "content": "Урегулировать конфликт на Украине можно будет в случае победы миролюбивых сил на выборах в Европарламент и США, считает премьер-министр Венгрии Виктор Орбан, передает Híradó.", + "attributes": {} + }, + "author": null, + "category": [ + { + "content": "Политика", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/2/36/347179274146362.jpeg", + "type": "image/jpeg", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:politics:66657b489a794731ffe7280a", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T13:19:30+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "13:19:30", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/rbcfreenews/66657b489a794731ffe7280a", + "rbc_news:anons": "Урегулировать конфликт на Украине можно будет в случае победы миролюбивых сил на выборах в Европарламент и США, считает премьер-министр Венгрии Виктор Орбан, передает Híradó.", + "rbc_news:news_id": "66657b489a794731ffe7280a", + "rbc_news:type": "short_news", + "rbc_news:newsDate_timestamp": "1717928370", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 13:27:05 +0300", + "rbc_news:newsline": "politics", + "rbc_news:tag": [ + "Виктор Орбан", + "Евросоюз", + "США", + "Украина", + "Военная операция на Украине" + ], + "rbc_news:full-text": "Урегулировать конфликт на Украине можно будет в случае победы миролюбивых сил на выборах в Европарламент и США, считает премьер-министр Венгрии Виктор Орбан, передает Híradó.\n\nПо его мнению, главной темой проходящих сейчас выборов в Европарламент во Франции, Германии, Италии, других странах ЕС стал «вопрос о войне и мире». «Это половина работы, другую половину должен будет сделать американский народ на президентских выборах. И тогда может быть мир», — добавил Орбан.\n\n\n\nГолосование на выборах в Европарламент в большинстве стран, в том числе в Венгрии, проходит 9 июня, в так называемое большое воскресенье — финальный день выборов.\n\nВыборы президента США запланированы на 5 ноября. Основные кандидаты — бывший глава государства Дональд Трамп и действующий — Джо Байден.\n\nМосква для урегулирования украинского конфликта требует признания «новых территориальных реалий» — Донецкой и Луганской народных республик, Запорожской и Херсонской областей в составе России. Президент Украины Владимир Зеленский называл одним из условий начала переговоров возвращение к границам страны 1991 года.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/2/36/347179274146362.jpeg", + "rbc_news:type": "image/jpeg", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "Bernadett Szabo / Reuters", + "rbc_news:description": "Виктор Орбан
" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/politics/09/06/2024/6664f7cb9a7947bc1553f868", + "rbc_news:title": "Орбан заявил, что Запад хочет победить Россию ради денег", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/5/15/347178955131155.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Bernadett Szabo / Reuters", + "description": "Виктор Орбан
" + } + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/6462028e9a79477803bdaffd", + "rbc_news:title": "В Польше посчитали преждевременными мирные переговоры России и Украины", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/2/27/346841457775272.jpg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "president.pl", + "description": "Марчин Пшидач
" + } + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/6664c3929a794733d9d0f120", + "rbc_news:title": "На Украине захотели собрать коалицию для информационных атак на Россию" + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "В Минобороны Украины назвали число женщин в рядах ВСУ", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/politics/09/06/2024/6665736d9a7947fffe234918", + "attributes": {} + } + ], + "description": { + "content": "В ВСУ служат свыше 67 тыс. женщин, из них 19 тыс. — гражданские сотрудницы, заявила замминистра обороны Украины. В 2014 году, по оценкам ведомства, этот показатель составлял почти 50 тыс.", + "attributes": {} + }, + "author": { + "content": "Юлия Овчинникова", + "attributes": {} + }, + "category": [ + { + "content": "Политика", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/8/78/347179254085788.jpeg", + "type": "image/jpeg", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:politics:6665736d9a7947fffe234918", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T13:09:35+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "13:09:35", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/politics/09/06/2024/6665736d9a7947fffe234918", + "rbc_news:anons": "В ВСУ служат свыше 67 тыс. женщин, из них 19 тыс. — гражданские сотрудницы, заявила замминистра обороны Украины. В 2014 году, по оценкам ведомства, этот показатель составлял почти 50 тыс.", + "rbc_news:news_id": "6665736d9a7947fffe234918", + "rbc_news:type": "article", + "rbc_news:newsDate_timestamp": "1717927775", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 13:21:15 +0300", + "rbc_news:newsline": "politics", + "rbc_news:tag": [ + "Россия", + "Украина", + "Минобороны Украины", + "женщины" + ], + "rbc_news:full-text": "В Вооруженных силах Украины (ВСУ) сейчас служат более 67 тыс. женщин, из которых 19 тыс. — гражданские сотрудницы, заявила заместитель министра обороны Украины Наталия Калмыкова. Ее интервью опубликовано в YouTube-канале украинского Минобороны.\n\n«Мобилизация у нас не предусматривает призыв женщин, но это не является препятствием, и их число в армии постоянно увеличивается. Сейчас у нас в ВСУ 67 тыс. женщин, из которых 19 тыс. — это гражданские сотрудницы, остальные — военнослужащие», — сказала она.\n\nПо ее словам, росту числа женщин в рядах ВСУ способствовало начало военной операции на Украине, однако они получили право занимать любые должности в армии еще в 2018 году за счет изменения законодательства. В частности, сейчас они могут управлять артиллерией и дронами, отметила Калмыкова.\n\nСогласно данным Минобороны Украины, в октябре 2023 года численность женщин в ВСУ составляла 62 тыс. по сравнению с почти 50 тыс. в 2014-м. Этот показатель Калмыкова называла рекордным в новейшей истории страны.\n\n24 февраля 2022 года на Украине объявили всеобщую мобилизацию и военное положение, действие которых в дальнейшем неоднократно продлевалось.\n\nПрезидент Украины Владимир Зеленский 16 апреля 2024 года ужесточил условия мобилизации. В частности, возраст призыва был снижен с 27 до 25 лет, а также отменена категория ограниченно годных. Всех украинских мужчин в возрасте 18–60 лет обязали носить с собой военный билет вне зависимости от их годности к службе и права на отсрочку, а военнообязанных — обновить данные в территориальных центрах комплектования (аналог военкомата) в течение 60 дней.\n\nВ конце 2023 года Зеленский рассказал о просьбе Генштаба и главкома ВСУ дополнительно призвать на службу 450–500 тыс. человек. Он оценил затраты на проведение дополнительной мобилизации в 500 млрд грн (около $13 млрд).", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/8/78/347179254085788.jpeg", + "rbc_news:type": "image/jpeg", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "Leon Neal / Getty Images" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/society/06/01/2024/659939099a79471312811618", + "rbc_news:title": "«Мобилизация» стала словом года на Украине", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/3/45/347045423790453.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "John Moore / Getty Images" + } + }, + { + "@url": "https://www.rbc.ru/politics/24/12/2023/65883af19a7947b205a3791c", + "rbc_news:title": "В Киеве рассказали, когда начнется демобилизация на Украине", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/6/01/347034285362016.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "John Moore / Getty Images" + } + }, + { + "@url": "https://www.rbc.ru/politics/01/06/2024/665b40459a7947332d980272", + "rbc_news:title": "Депутат Рады заявил, что мобилизация затронет спасателей и пожарных", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/7/97/347172567331977.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "dsns_telegram / Telegram" + } + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "В Миргороде прогремели взрывы", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/politics/09/06/2024/666579f39a79471a2aa3bb18", + "attributes": {} + } + ], + "description": { + "content": "Взрывы прогремели в украинском Миргороде, где расположен крупный военный аэродром. Воздушная тревога в настоящее время объявлена в четырех областях Украины", + "attributes": {} + }, + "author": { + "content": "Илья Пламенев", + "attributes": {} + }, + "category": [ + { + "content": "Политика", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/0/23/347179272525230.jpeg", + "type": "image/jpeg", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:politics:666579f39a79471a2aa3bb18", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T13:04:35+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "13:04:35", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/politics/09/06/2024/666579f39a79471a2aa3bb18", + "rbc_news:anons": "Взрывы прогремели в украинском Миргороде, где расположен крупный военный аэродром. Воздушная тревога в настоящее время объявлена в четырех областях Украины", + "rbc_news:news_id": "666579f39a79471a2aa3bb18", + "rbc_news:type": "article", + "rbc_news:newsDate_timestamp": "1717927475", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 13:54:10 +0300", + "rbc_news:newsline": "politics", + "rbc_news:tag": [ + "Полтавская область", + "взрывы", + "Военная операция на Украине", + "военные аэродромы" + ], + "rbc_news:full-text": "Взрывы прозвучали в Миргороде Полтавской области, сообщают «Зеркало недели» и «Страна.ua». Воздушная тревога объявлена в Черниговской, Полтавской, Сумской и Николаевской областях Украины.\n\nВ черте Миргорода находится военный аэродром, об ударах по которому ранее неоднократно отчитывалось Минобороны России. По данным ведомства, с начала спецоперации российскими силами были уничтожены 610 самолетов и 275 вертолетов ВВС Украины.\n\n\n\nРанее этой ночью украинские СМИ сообщали о взрывах в Николаеве и Одессе. Минобороны России подчеркивает, что удары наносятся только по военным и энергетическим объектам Украины и связанной с ними инфраструктуре.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/0/23/347179272525230.jpeg", + "rbc_news:type": "image/jpeg", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "сервис «Яндекс.Карты»" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/rbcfreenews/66652a3f9a7947ecba74c931", + "rbc_news:title": "В Одессе прогремел взрыв" + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/6664d21e9a79478069098562", + "rbc_news:title": "В Николаеве прогремел взрыв" + }, + { + "@url": "https://www.rbc.ru/politics/09/06/2024/66653d869a79474ab771afb5", + "rbc_news:title": "МЧС сообщило о спасении семи человек из-под завалов в Луганске", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/3/48/347179117697483.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Александр Река / ТАСС" + } + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "Уроженец Дагестана Имавов победил американца в главном бою турнира UFC", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/sport/09/06/2024/666576bf9a794710b7db95ad", + "attributes": {} + } + ], + "description": { + "content": "Судья остановил бой в четвертом раунде, когда Каннонье еще был на ногах и в сознании после серии ударов Имавова, что вызвало недовольство болельщиков. Имавов одержал 14-ю победу в ММА", + "attributes": {} + }, + "author": { + "content": "Анна Сатдинова", + "attributes": {} + }, + "category": [ + { + "content": "Спорт", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/6/78/347179267448786.png", + "type": "image/png", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:sport:666576bf9a794710b7db95ad", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T12:58:17+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "12:58:17", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/sport/09/06/2024/666576bf9a794710b7db95ad", + "rbc_news:anons": "Судья остановил бой в четвертом раунде, когда Каннонье еще был на ногах и в сознании после серии ударов Имавова, что вызвало недовольство болельщиков. Имавов одержал 14-ю победу в ММА", + "rbc_news:news_id": "666576bf9a794710b7db95ad", + "rbc_news:type": "article", + "rbc_news:newsDate_timestamp": "1717927097", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 13:07:13 +0300", + "rbc_news:newsline": "sport", + "rbc_news:tag": [ + "смешанные единоборства (ММА)", + "UFC" + ], + "rbc_news:full-text": "Родившийся в Дагестане французский боец Нассурдин Имавов одержал победу техническим нокаутом над американцем Джаредом Каннонье в главном поединке турнира UFC в Луисвилле (штат Кентукки, США).\n\nПоединок в среднем весе (до 84 кг) завершился в четвертом раунде.\n\nСудья остановил бой на второй минуте раунда, когда американец после серии ударов Имавова еще был в сознании и на ногах, однако болельщики посчитали, что он поторопился, и выразили недовольство.\n\nИмавов после боя заявил, что готов был продолжать поединок, если бы рефери позволил, но при этом считает, что решение судьи было правильным, пишет MMA Fighting.\n\n\n\nИмавов одержал 14-ю победу в ММА при четырех поражениях (еще один бой был признан несостоявшимся).\n\nКаннонье потерпел седьмое поражение при 17 победах.\n\nИмавов родился в Хасавюрте, в юности переехал во Францию и представляет эту страну. Выступает в UFC с 2020 года, одержал в промоушене шесть побед, два боя проиграл. В рейтинге UFC занимает седьмое место.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/6/78/347179267448786.png", + "rbc_news:type": "image/png", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "Jeff Bottari / Zuffa LLC via Getty Images", + "rbc_news:description": "Нассурдин Имавов
" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/sport/05/06/2024/66601b2f9a79478709a80270", + "rbc_news:title": "Российский бизнесмен купил за $95 тыс. тренировку c экс-чемпионом UFC", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/0/60/347175745717600.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Global Look Press", + "description": "Чарльз Оливейра
" + } + }, + { + "@url": "https://www.rbc.ru/sport/06/06/2024/666163649a7947ae5601212a", + "rbc_news:title": "Порье рассказал о полученных в чемпионском бою UFC с Махачевым переломах", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/7/27/347176585073277.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Luke Hales / Getty Images", + "description": "Дастин Порье и Ислам Махачев
" + } + }, + { + "@url": "https://www.rbc.ru/sport/02/06/2024/665c39189a7947c2f637e0ac", + "rbc_news:title": "Хабиб Нурмагомедов встретился с Трампом на турнире UFC", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/5/88/347173202481885.png", + "type": "image/png", + "size_nick": "original", + "copyright": "limited", + "source": "Luke Hales / Getty Images", + "description": "Дональд Трамп
" + } + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "Захарова заявила о «кознях Запада» перед ПМЭФ", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/rbcfreenews/6665767e9a794710b7db95a8", + "attributes": {} + } + ], + "description": { + "content": "Запад строил козни перед Петербургским международным экономическим форумом (ПМЭФ), но Россия выстраивает отношения с мировым большинством.", + "attributes": {} + }, + "author": null, + "category": [ + { + "content": "Политика", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/2/68/347179269365682.jpeg", + "type": "image/jpeg", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:politics:6665767e9a794710b7db95a8", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T12:55:00+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "12:55:00", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/rbcfreenews/6665767e9a794710b7db95a8", + "rbc_news:anons": "Запад строил козни перед Петербургским международным экономическим форумом (ПМЭФ), но Россия выстраивает отношения с мировым большинством.", + "rbc_news:news_id": "6665767e9a794710b7db95a8", + "rbc_news:type": "short_news", + "rbc_news:newsDate_timestamp": "1717926900", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 13:03:51 +0300", + "rbc_news:newsline": "politics", + "rbc_news:tag": [ + "Мария Захарова", + "МИД", + "аккредитация", + "ПМЭФ" + ], + "rbc_news:full-text": "Запад строил козни перед Петербургским международным экономическим форумом (ПМЭФ), но Россия выстраивает отношения с мировым большинством. Об этом на полях мероприятия заявила ТАСС официальный представитель МИДа Мария Захарова.\n\n«Да, западники всегда будут строить козни. И здесь, [на форуме], и когда мы едем куда-то», — сказала она. По словам Захаровой, российским дипломатам не дают визы, пролетные документы, аккредитации, угрожают не разрешать посадку самолета.\n\nРоссия, в свою очередь, занимается конструктивной повесткой и выстраиванием отношений с мировым большинством, отметила представитель МИДа. В пример она привела африканское турне министра иностранных дел Сергея Лаврова. «Вот там как раз и развивается то, что мы называем многополярностью, причем об этом говорят все», — заключила она.\n\n\n\nМИД считает «дискриминацией по национальному признаку» отказ в аккредитациях на международные мероприятия, которые участились после начала Россией военной операции на Украине. В частности, в середине мая Россия получила отказ от властей Нидерландов в аккредитации на международную конференцию ЮНЕСКО, которая должна была пройти в Гааге.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/2/68/347179269365682.jpeg", + "rbc_news:type": "image/jpeg", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "Александр Демьянчук / ТАСС", + "rbc_news:description": "Мария Захарова
" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/business/08/06/2024/6664337e9a7947f093d718c8", + "rbc_news:title": "Организаторы ПМЭФ раскрыли общую сумму заключенных контрактов", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/2/13/347178455295132.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Михаил Гребенщиков / РБК" + } + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/6662f7189a7947eeb386f2c3", + "rbc_news:title": "Путин встретился с Бегловым перед пленарным заседанием ПМЭФ", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/5/68/347177650436685.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Александр Казаков / РИА Новости", + "description": "Владимир Путин и Александр Беглов
" + } + }, + { + "@url": "https://www.rbc.ru/politics/07/06/2024/6662b0509a7947a447d4c3d0", + "rbc_news:title": "Выступление Путина на пленарном заседании ПМЭФ. Видео" + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "В Германии решили увеличить число резервистов", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/politics/09/06/2024/666570559a794747ceae4f9c", + "attributes": {} + } + ], + "description": { + "content": "Власти Германии на фоне «вызовов в сфере безопасности» планируют довести количество военных резервистов до 60 тыс., сообщили в бундесвере. Там уточнили, что в рамках военного закона могут быть призваны 800 тыс. немцев", + "attributes": {} + }, + "author": { + "content": "Илья Пламенев", + "attributes": {} + }, + "category": [ + { + "content": "Политика", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/0/59/347179263271590.jpeg", + "type": "image/jpeg", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:politics:666570559a794747ceae4f9c", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T12:52:02+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "12:52:02", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/politics/09/06/2024/666570559a794747ceae4f9c", + "rbc_news:anons": "Власти Германии на фоне «вызовов в сфере безопасности» планируют довести количество военных резервистов до 60 тыс., сообщили в бундесвере. Там уточнили, что в рамках военного закона могут быть призваны 800 тыс. немцев", + "rbc_news:news_id": "666570559a794747ceae4f9c", + "rbc_news:type": "article", + "rbc_news:newsDate_timestamp": "1717926722", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 13:03:56 +0300", + "rbc_news:newsline": "politics", + "rbc_news:tag": [ + "Германия", + "Бундесвер", + "резервисты", + "Военная операция на Украине", + "перевооружение" + ], + "rbc_news:full-text": "Министерство обороны Германии разрабатывает планы по созданию усиленного резерва бундесвера (ВС ФРГ), в котором будут состоять как минимум 60 тыс. человек, заявил генерал-лейтенант, заместитель генерального инспектора бундесвера Александр Хоппе, передает Zeit.\n\nПо словам немецкого генерала, новые резервисты, в числе которых будут и мужчины, и женщины, должны обучаться как во времена холодной войны, чтобы могли усиливать или заменять действующие войска в бою. «Я убежден, что мы должны адаптировать резерв к текущим вызовам политики безопасности, чтобы тот мог должным образом поддерживать бундесвер в выполнении задач национальной обороны и обороны альянса», — сказал Хоппе.\n\nЦелью военных служит наличие в будущем до 60 тыс. резервистов так называемого базового назначения, то есть квалифицированных и способных выполнять постоянные задачи в этом статусе. Минобороны также изучает, насколько велико число граждан, которые вообще могут быть призваны и пригодны к службе в случае обороны. «Там разные цифры. Мы предполагаем, что есть около 800 тыс., которые также могут быть призваны по военному закону», — отметил генерал.\n\nПризыв на военную службу в Германии был приостановлен в 2011 году, а численность бундесвера с тех пор неуклонно сокращалась и сегодня составляет 181,5 тыс. солдат. По данным Welt, Минобороны ФРГ при этом располагает лишь 44 тыс. резервистами, получившими базовую квалификацию. Как отмечает Spiegel, планы НАТО подразумевают увеличение численности личного состава вооруженных сил Германии до 272 тыс. мужчин и женщин.\n\n\n\nВ начале июня глава комитета бундестага по обороне Мари-Агнес Штрак-Циммерман призвала поставить на учет 900 тыс. резервистов на фоне «российской угрозы». Министр обороны Германии Борис Писториус при этом заявлял, что бундесвер должен быть готов к войне к 2029 году. «Мы не должны думать, что Путин остановится у границ Украины», — отмечал он.\n\nBild в начале июня опубликовал документ с планом властей Германии на случай войны. Из него в том числе следует, что в стране в случае конфликта возобновится обязательная военная служба. Служба занятости при этом сможет обязать граждан старше 18 лет работать на определенной работе, к примеру на почте и в пекарнях. Одновременно власти начнут массовую эвакуацию, а через страну пойдут эшелоны войск НАТО.\n\nРоссийская сторона не раз отвергала планы войны с НАТО. Президент Владимир Путин говорил о нежелании столкновения с альянсом. При этом он отмечал, что конфликт на Украине связан с «созданием угроз безопасности России со стороны США и НАТО», которые при этом отказываются от переговоров.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/0/59/347179263271590.jpeg", + "rbc_news:type": "image/jpeg", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "Sean Gallup / Getty Images" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/rbcfreenews/6663607a9a79478abd18be45", + "rbc_news:title": "Bloomberg узнал, что Германия готова поставить Украине еще один Patriot", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/4/47/347177893251474.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Karl-Josef Hildenbrand / dpa / Global Look Press", + "description": "Пусковая установка зенитно-ракетного комплекса Patriot
" + } + }, + { + "@url": "https://www.rbc.ru/politics/06/06/2024/6661a1a29a7947062c42ce1a", + "rbc_news:title": "Шольц пообещал не допустить войну в Германии", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/0/17/347176779986170.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Henning Schacht / Keystone Press Agency / Global Look Press", + "description": "Олаф Шольц
" + } + }, + { + "@url": "https://www.rbc.ru/politics/05/06/2024/66607dd99a7947c0e4e5476e", + "rbc_news:title": "Писториус заявил о необходимости подготовить Германию к войне к 2029 году", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/2/90/347176011297902.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Christoph Soeder / dpa / Global Look Press", + "description": "Борис Писториус
" + } + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "Гладков рассказал о последствиях атаки на Шебекино", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/rbcfreenews/666574689a7947fc21cd7a6a", + "attributes": {} + } + ], + "description": { + "content": "Под обстрел со стороны Украины попал Шебекинский городской округ, никто не пострадал, сообщил губернатор Белгородской области Вячеслав Гладков.", + "attributes": {} + }, + "author": null, + "category": [ + { + "content": "Политика", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/3/26/347179258202263.jpeg", + "type": "image/jpeg", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:politics:666574689a7947fc21cd7a6a", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T12:30:57+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "12:30:57", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/rbcfreenews/666574689a7947fc21cd7a6a", + "rbc_news:anons": "Под обстрел со стороны Украины попал Шебекинский городской округ, никто не пострадал, сообщил губернатор Белгородской области Вячеслав Гладков.", + "rbc_news:news_id": "666574689a7947fc21cd7a6a", + "rbc_news:type": "short_news", + "rbc_news:newsDate_timestamp": "1717925457", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 12:37:07 +0300", + "rbc_news:newsline": "politics", + "rbc_news:tag": [ + "Шебекино", + "Белгородская область", + "Вячеслав Гладков", + "обстрел" + ], + "rbc_news:full-text": "Под обстрел со стороны Украины попал Шебекинский городской округ, никто не пострадал, сообщил губернатор Белгородской области Вячеслав Гладков.\n\nОб обстреле Шебекино и округа региональное управление МЧС предупредило в 9:40 мск.\n\nВ городе повреждены два автобуса и один автомобиль, сообщил глава региона. В селе Муром дрон сбросил взрывное устройство — в двух частных домах выбило окна, повредило фасады, заборы и кровли. Кроме того, пострадал автомобиль.\n\n\nШебекино расположен менее чем в 5 км от границы с Харьковской областью Украины, это ближайший к российско-украинской границе город Белгородской области. Он регулярно попадает под обстрелы.\n\n\n\n\nБелгородская область в последние месяцы подвергается интенсивным обстрелам, в регионе периодически объявляют ракетную опасность, сбивают украинские ракеты и дроны.\n\nРанее Гладков сообщил об уничтожении воздушных целей над Новооскольским городским округом. По его словам, никто не пострадал. В нескольких частных и многоквартирных домах выбило окна, пострадали несколько автомобилей.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/3/26/347179258202263.jpeg", + "rbc_news:type": "image/jpeg", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "Алексей Гавриш / ТАСС" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/rbcfreenews/66656bfb9a794747ceae4f91", + "rbc_news:title": "Над Белгородской областью сбили ракету «Нептун» и два дрона", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/8/74/347179234584748.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Николай Гынгазов / ТАСС" + } + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/6665564c9a7947d363ac1ebd", + "rbc_news:title": "В Воронежской области вслед за Белгородом объявили ракетную опасность", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/5/90/347179180733905.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Сергей Бобылев / ТАСС", + "description": "Воронеж
" + } + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/666551a39a7947eab562cb15", + "rbc_news:title": "В Белгороде объявили ракетную опасность" + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "Жителей Белгорода во второй раз за день предупредили о ракетной опасности", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/rbcfreenews/6665750c9a794710b7db959e", + "attributes": {} + } + ], + "description": { + "content": "В Белгороде и Белгородском районе вновь ввели режим ракетной опасности, сообщил губернатор региона Вячеслав Гладков в телеграм-канале.", + "attributes": {} + }, + "author": null, + "category": [ + { + "content": "Политика", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/2/40/347179255944402.jpeg", + "type": "image/jpeg", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:politics:6665750c9a794710b7db959e", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T12:29:05+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "12:29:05", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/rbcfreenews/6665750c9a794710b7db959e", + "rbc_news:anons": "В Белгороде и Белгородском районе вновь ввели режим ракетной опасности, сообщил губернатор региона Вячеслав Гладков в телеграм-канале.", + "rbc_news:news_id": "6665750c9a794710b7db959e", + "rbc_news:type": "short_news", + "rbc_news:newsDate_timestamp": "1717925345", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 12:33:36 +0300", + "rbc_news:newsline": "politics", + "rbc_news:tag": [ + "Белгород", + "ракетная опасность", + "Вячеслав Гладков" + ], + "rbc_news:full-text": "В Белгороде и Белгородском районе вновь ввели режим ракетной опасности, сообщил губернатор региона Вячеслав Гладков в телеграм-канале.\n\nОн призвал местных жителей спуститься в подвалы и оставаться там до получения сигнала «отбой ракетной опасности».\n\nТакой сигнал в Белгороде и Белгородском районе запускают во второй раз за день. Ранее он действовал с 9:50 по 10:15 мск. В это время силы ПВО сбили украинскую ракету «Нептун».\n\n\n\nБелгородская область в последние месяцы подвергается интенсивным обстрелам, в регионе периодически объявляют ракетную опасность, сбивают украинские ракеты и дроны. В Белгороде продолжают устанавливать бетонные автобусные остановки и модульные железобетонные укрытия.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/2/40/347179255944402.jpeg", + "rbc_news:type": "image/jpeg", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "Александр Рюмин / ТАСС", + "rbc_news:description": "Белгород
" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/rbcfreenews/66656bfb9a794747ceae4f91", + "rbc_news:title": "Над Белгородской областью сбили ракету «Нептун» и два дрона", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/8/74/347179234584748.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Николай Гынгазов / ТАСС" + } + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/6665564c9a7947d363ac1ebd", + "rbc_news:title": "В Воронежской области вслед за Белгородом объявили ракетную опасность", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/5/90/347179180733905.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Сергей Бобылев / ТАСС", + "description": "Воронеж
" + } + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/666551a39a7947eab562cb15", + "rbc_news:title": "В Белгороде объявили ракетную опасность" + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "На петербургской «СКА Арене» за ₽60 млрд произошел пожар", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/sport/09/06/2024/66656e3c9a794764ba47759b", + "attributes": {} + } + ], + "description": { + "content": "Арену ввели в эксплуатацию в конце прошлого года, на ней проводит домашние матчи хоккейный клуб СКА. Ночью в чаше стадиона произошел пожар, пострадали трибуны и рекламные щиты", + "attributes": {} + }, + "author": { + "content": "Анна Сатдинова", + "attributes": {} + }, + "category": [ + { + "content": "Спорт", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/0/96/347179243148960.png", + "type": "image/png", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:sport:66656e3c9a794764ba47759b", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T12:24:07+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "12:24:07", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/sport/09/06/2024/66656e3c9a794764ba47759b", + "rbc_news:anons": "Арену ввели в эксплуатацию в конце прошлого года, на ней проводит домашние матчи хоккейный клуб СКА. Ночью в чаше стадиона произошел пожар, пострадали трибуны и рекламные щиты", + "rbc_news:news_id": "66656e3c9a794764ba47759b", + "rbc_news:type": "article", + "rbc_news:newsDate_timestamp": "1717925047", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 12:29:00 +0300", + "rbc_news:newsline": "sport", + "rbc_news:tag": [ + "Хоккей", + "ХК СКА Санкт-Петербург" + ], + "rbc_news:full-text": "Пожар произошел в ночь на 9 июня в чаше спортивного комплекса «СКА Арена» в Санкт-Петербурге, которая была введена в эксплуатацию в конце прошлого года, сообщают «Фонтанка» и 78.ru.\n\nПлощадь возгорания составила 225 кв. м, после вызова пожарных в 1:46 мск его ликвидировали менее чем за полчаса.\n\nОт огня пострадали часть трибун и рекламные щиты. По предварительной информации, причиной пожара стала неисправность проводки.\n\nРБК обратился за комментарием в пресс-службу управления МЧС по Санкт-Петербургу и «СКА Арену».\n\n\n\nГендиректор стадиона Дмитрий Сватковский в ноябре заявил, что стоимость арены составляет около 60 млрд руб.\n\nНа арене проводит домашние матчи хоккейный клуб СКА, на играх которого был установлен рекорд посещаемости для крытых стадионов (почти 24 тыс. зрителей). В декабре там также прошел Матч звезд КХЛ.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/0/96/347179243148960.png", + "rbc_news:type": "image/png", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "Валентина Певцова / ТАСС", + "rbc_news:description": "Матч звезд КХЛ на «СКА Арене»
" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/sport/07/05/2024/663a66f99a7947cf3edb9942", + "rbc_news:title": "Экс-футболист «Челси» помог спасти 100 человек от наводнения в Бразилии", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/3/38/347151035455383.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Wagner Meier / Getty Images", + "description": "Диего Коста
" + } + }, + { + "@url": "https://www.rbc.ru/sport/26/02/2024/65dc708f9a7947312c275fd6", + "rbc_news:title": "Рудковская опровергла информацию об обвалившейся крыше академии Плющенко", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/7/37/347089463952377.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Вячеслав Прокофьев / ТАСС", + "description": "Евгений Плющенко
" + } + }, + { + "@url": "https://www.rbc.ru/sport/04/03/2024/65e5fcec9a794738ffd036b0", + "rbc_news:title": "РФС разрешил «Спартаку» вернуться на домашний стадион после ЧП с травой" + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "Россияне получили восемь медалей на Азиатской олимпиаде по физике", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/rbcfreenews/66656f199a794764ba4775a1", + "attributes": {} + } + ], + "description": { + "content": "Российские школьники завоевали пять золотых и три серебряные медали на 24-й Азиатской физической олимпиаде, сообщили РБК в пресс-службе Минпросвещения.", + "attributes": {} + }, + "author": null, + "category": [ + { + "content": "Общество", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/5/98/347179249039985.jpeg", + "type": "image/jpeg", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:society:66656f199a794764ba4775a1", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T12:18:46+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "12:18:46", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/rbcfreenews/66656f199a794764ba4775a1", + "rbc_news:anons": "Российские школьники завоевали пять золотых и три серебряные медали на 24-й Азиатской физической олимпиаде, сообщили РБК в пресс-службе Минпросвещения.", + "rbc_news:news_id": "66656f199a794764ba4775a1", + "rbc_news:type": "short_news", + "rbc_news:newsDate_timestamp": "1717924726", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 12:25:40 +0300", + "rbc_news:newsline": "society", + "rbc_news:tag": [ + "физика", + "школьная олимпиада", + "школьники", + "россияне", + "Минпросвещения" + ], + "rbc_news:full-text": "Российские школьники завоевали пять золотых и три серебряные медали на 24-й Азиатской физической олимпиаде, сообщили РБК в пресс-службе Минпросвещения.\n\nАзиатская физическая олимпиада (Asian Physics Olympiad, APhO) — ежегодное соревнование, состоящее из теоретического и практического тура. В этом году она прошла в Малайзии и включала 28 команд старшеклассников из 27 стран.\n\n\n\nВ прошлом году российские школьники получили восемь золотых медалей на APhO, которая проходила в Монголии. По ее итогам формировали российскую сборную для участия на 53-й Международной физической олимпиаде школьников в Токио, где россияне получили пять золотых медалей.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/5/98/347179249039985.jpeg", + "rbc_news:type": "image/jpeg", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "пресс-служба Минпросвещения России" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/sport/07/06/2024/6661a38d9a79475bdcea5fe2", + "rbc_news:title": "Как российская школьница привела в восторг звезд тенниса", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/1/95/347177360462951.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Reuters", + "description": "Мирра Андреева
" + } + }, + { + "@url": "https://www.rbc.ru/society/06/06/2024/666199fb9a79472fbec7ee60", + "rbc_news:title": "На ЕГЭ по литературе 100 баллов получили более 1700 школьников", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/6/67/347176799049676.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Кирилл Кухмарь / ТАСС" + } + }, + { + "@url": "https://www.rbc.ru/society/03/06/2024/665db0999a7947d3cf3631b4", + "rbc_news:title": "Прокуратура проверит чувашскую школу из-за раздевания школьниц перед ЕГЭ", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/5/76/347174196322765.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Александр Щербак / ТАСС" + } + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "Times узнала, что легенда велоспорта может потерять трофеи из-за долгов", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/sport/09/06/2024/666564dc9a794773c50876ab", + "attributes": {} + } + ], + "description": { + "content": "Лучшего велогонщика в истории Великобритании признали банкротом в начале июня из-за долга его компании, который превысил £1 млн. У Брэдли Уиггинса могут изъять даже награды и кубки, как это произошло с Борисом Беккером", + "attributes": {} + }, + "author": { + "content": "Анна Сатдинова", + "attributes": {} + }, + "category": [ + { + "content": "Спорт", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/7/65/347179210481657.png", + "type": "image/png", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:sport:666564dc9a794773c50876ab", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T12:12:11+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "12:12:11", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/sport/09/06/2024/666564dc9a794773c50876ab", + "rbc_news:anons": "Лучшего велогонщика в истории Великобритании признали банкротом в начале июня из-за долга его компании, который превысил £1 млн. У Брэдли Уиггинса могут изъять даже награды и кубки, как это произошло с Борисом Беккером", + "rbc_news:news_id": "666564dc9a794773c50876ab", + "rbc_news:type": "article", + "rbc_news:newsDate_timestamp": "1717924331", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 12:23:17 +0300", + "rbc_news:newsline": "sport", + "rbc_news:tag": [ + "велоспорт", + "Великобритания", + "банкротства" + ], + "rbc_news:full-text": "Пятикратный олимпийский чемпион по велоспорту британец Брэдли Уиггинс после признания банкротом может лишиться своих наград, как это произошло в 2022 году с теннисистом Борисом Беккером, пишет The Times.\n\nУиггинс — первый велогонщик, выигравший золото Олимпиад и чемпионатов мира и на треке, и на шоссе, а также победивший на «Тур де Франс» (в 2012-м). Он завершил карьеру в 2016 году.\n\nВ 2020 году компания Wiggins Rights Limited, которой экс-велогонщик владел вместе с матерью и бывшей женой, объявила о ликвидации с долгами в размере £650 тыс. ($825 тыс.). Причем одним из кредиторов было Управление по налоговым и таможенным сборам Великобритании, которое в прошлом году заявило, что компания должна ему более £300 тыс.\n\nВ 2022 году Уиггинс заключил соглашение, которое должно было помочь расплатиться, но к 2023-му долг вырос почти до £1 млн.\n\n3 июня Уиггинса объявили банкротом, специальный управляющий будет изымать его активы, в том числе, возможно, медали и кубки, как в деле Беккера в 2022-м, которому пришлось отдать свои трофеи Уимблдона.\n\n\n\nВсего на счету Уиггинса — восемь медалей Игр в Сиднее, Афинах, Пекине, Лондоне и Рио-де-Жанейро и восемь побед на чемпионатах мира в 2000–2016 годах.\n\nВелогонщик в 2013 году был посвящен в рыцари после победы на домашней Олимпиаде и в «Тур де Франс».\n\nБывший немецкий теннисист Беккер был признан банкротом в 2017 году из-за невыплаченного кредита в размере более €3,6 млн за недвижимость на Майорке. В апреле 2022-го его приговорили к двум с половиной годам заключения за нарушение закона о банкротстве, но уже в декабре выпустили из британской тюрьмы с целью депортации на родину.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/7/65/347179210481657.png", + "rbc_news:type": "image/png", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "Doug Pensinger / Getty Images", + "rbc_news:description": "Брэдли Уиггинс
" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/sport/06/06/2024/66618b149a79477a208934f0", + "rbc_news:title": "Российские велогонщики завоевали три лицензии для участия в Олимпиаде", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/2/03/347176686995032.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Tim de Waele / Getty Images", + "description": "Александр Власов
" + } + }, + { + "@url": "https://www.rbc.ru/sport/16/03/2024/65f5697d9a7947f0228d8aff", + "rbc_news:title": "Велогонщика отстранили после перепроверки допинг-пробы с Олимпиады-2016", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/8/08/347105822152088.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Justin Setterfield / Getty Images", + "description": "Христос Воликакис (в белом)
" + } + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/5b26b8089a7947547b4137c6", + "rbc_news:title": "В Бельгии 20 велогонщиков пострадали из-за нарушившей ПДД автомобилистки" + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "Ефимов рассказал о редевелопменте почти 2 тыс. га бывших промзон в Москве", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/rbcfreenews/66633e709a7947818686c01f", + "attributes": {} + } + ], + "description": { + "content": "Заместитель мэра Москвы по вопросам градостроительной политики и строительства Владимир Ефимов в своем выступлении на ПМЭФ-2024 рассказал, что по программе комплексного развития территорий (КРТ) на разных стадиях проработки и реализации в столице находятся 236 проектов, больше половины из них расположены на участках бывших промзон.", + "attributes": {} + }, + "author": null, + "category": [ + { + "content": "Экономика", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/3/38/347177801323383.jpeg", + "type": "image/jpeg", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:economics:66633e709a7947818686c01f", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T12:08:02+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "12:08:02", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/rbcfreenews/66633e709a7947818686c01f", + "rbc_news:anons": "Заместитель мэра Москвы по вопросам градостроительной политики и строительства Владимир Ефимов в своем выступлении на ПМЭФ-2024 рассказал, что по программе комплексного развития территорий (КРТ) на разных стадиях проработки и реализации в столице находятся 236 проектов, больше половины из них расположены на участках бывших промзон.", + "rbc_news:news_id": "66633e709a7947818686c01f", + "rbc_news:type": "short_news", + "rbc_news:newsDate_timestamp": "1717924082", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 13:27:09 +0300", + "rbc_news:newsline": "economics", + "rbc_news:tag": [ + "редевелопмент", + "Владимир Ефимов", + "Москва", + "промзоны" + ], + "rbc_news:full-text": "Заместитель мэра Москвы по вопросам градостроительной политики и строительства Владимир Ефимов в своем выступлении на ПМЭФ-2024 рассказал, что по программе комплексного развития территорий (КРТ) на разных стадиях проработки и реализации в столице находятся 236 проектов, больше половины из них расположены на участках бывших промзон.\n\n«Сегодня в программу вовлечено свыше 3,1 тыс. га земли, из которых 1,8 тыс. расположены на территории бывших промзон, — сообщил Ефимов. — Остальные площади приходятся на неэффективно используемые и незастроенные территории с высоким потенциалом для комплексного развития». Так, по его словам, в рамках реализации 120 проектов на месте бывших промзон планируется создать современные городские пространства со сбалансированной застройкой и рабочими местами.\n\nСтоличная программа КРТ подразумевает создание многофункциональных городских кластеров, где на месте бывших промзон и неэффективно используемых участков возводится современная недвижимость разного назначения с развитой инфраструктурой. Реализация проектов КРТ возможна тремя способами — нынешним собственником участка, городским оператором либо же сторонним девелопером, привлеченным по итогу открытого аукциона.\n\nКак удачный пример редевелопмента вице-мэр привел комплексное развитие части бывшей промзоны «Южный порт». Там в активной стадии реализации находится в совокупности уже четыре проекта КРТ общей площадью более 114 га, на которых построят около 2,5 млн кв. м недвижимости — жилой (в том числе по реновации), промышленной, офисно-деловой и так далее.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/3/38/347177801323383.jpeg", + "rbc_news:type": "image/jpeg", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "пресс-служба Градостроительного комплекса Москвы", + "rbc_news:description": "Владимир Ефимов
" + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "Умер бывший директор ЗИЛа Валерий Сайкин", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/politics/09/06/2024/666569c99a79473c35ec8aa4", + "attributes": {} + } + ], + "description": { + "content": "Валерий Сайкин занимал должность зампредседателя Совета министров РСФСР с апреля по август 1990 года. В 1991-м он баллотировался в мэры Москвы и занял второе место с 16,3%, уступив победу Гавриилу Попову", + "attributes": {} + }, + "author": { + "content": "Илья Пламенев", + "attributes": {} + }, + "category": [ + { + "content": "Политика", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/3/67/347179238466673.jpeg", + "type": "image/jpeg", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:politics:666569c99a79473c35ec8aa4", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T12:06:35+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "12:06:35", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/politics/09/06/2024/666569c99a79473c35ec8aa4", + "rbc_news:anons": "Валерий Сайкин занимал должность зампредседателя Совета министров РСФСР с апреля по август 1990 года. В 1991-м он баллотировался в мэры Москвы и занял второе место с 16,3%, уступив победу Гавриилу Попову", + "rbc_news:news_id": "666569c99a79473c35ec8aa4", + "rbc_news:type": "article", + "rbc_news:newsDate_timestamp": "1717923995", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 12:14:39 +0300", + "rbc_news:newsline": "politics", + "rbc_news:tag": [ + "политик", + "Госдума", + "РСФСР", + "КПРФ", + "ЗИЛ" + ], + "rbc_news:full-text": "Заместитель председателя Совета министров РСФСР, депутат Госдумы третьего созыва и двукратный победитель первенств СССР по классической борьбе Валерий Сайкин умер на 87-м году жизни, сообщила Федерация спортивной борьбы России (ФСБР) на своей странице во «ВКонтакте».\n\n«Федерация спортивной борьбы России, спортсмены и тренеры сборных команд России по вольной, женской и греко-римской борьбе искренне соболезнуют родным и близким Валерия Тимофеевича», — говорится в сообщении.\n\n\nСайкин родился в 1937 году в Москве. Состоял в КПСС с 1966-го. Двукратный чемпион СССР по классической борьбе (среди юношей). С 1981 года — первый заместитель генерального директора, а в 1982–1986-м — генеральный директор ПО «ЗИЛ». По инициативе первого секретаря МГК КПСС Бориса Ельцина в январе 1986 года был избран председателем Мосгорисполкома. В 1990-м стал заместителем председателя Совета министров РСФСР (высший исполнительный и распорядительный и распорядительный орган союзной республики).\n\nВ 1991 году баллотировался в мэры Москвы, занял второе место (16,3%), уступив победу Гавриилу Попову (65,3%). Той же осенью вернулся на ЗИЛ в качестве главного инженера. Депутат Государственной думы третьего созыва от КПРФ в 1999–2003 годах. В последние годы жизни был членом бюро московского городского комитета КПРФ.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/3/67/347179238466673.jpeg", + "rbc_news:type": "image/jpeg", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "Виталий Созинов / ТАСС", + "rbc_news:description": "Валерий Сайкин, 1987 г.
" + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "Сеул возобновит трансляции на границе с КНДР в ответ на «мусорную войну»", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/rbcfreenews/666566869a7947faaadbf0be", + "attributes": {} + } + ], + "description": { + "content": "Южная Корея возобновит вещание пропагандистских трансляций из громкоговорителей на границе с Северной Кореей, сообщает агентство Yonhap со ссылкой на решение Совета национальной безопасности (СНБ).", + "attributes": {} + }, + "author": null, + "category": [ + { + "content": "Политика", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/4/78/347179231116784.jpeg", + "type": "image/jpeg", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:politics:666566869a7947faaadbf0be", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T11:54:35+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "11:54:35", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/rbcfreenews/666566869a7947faaadbf0be", + "rbc_news:anons": "Южная Корея возобновит вещание пропагандистских трансляций из громкоговорителей на границе с Северной Кореей, сообщает агентство Yonhap со ссылкой на решение Совета национальной безопасности (СНБ).", + "rbc_news:news_id": "666566869a7947faaadbf0be", + "rbc_news:type": "short_news", + "rbc_news:newsDate_timestamp": "1717923275", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 12:01:05 +0300", + "rbc_news:newsline": "politics", + "rbc_news:tag": [ + "Южная Корея", + "Северная Корея", + "КНДР", + "воздушные шары" + ], + "rbc_news:full-text": "Южная Корея возобновит вещание пропагандистских трансляций из громкоговорителей на границе с Северной Кореей, сообщает агентство Yonhap со ссылкой на решение Совета национальной безопасности (СНБ).\n\nТеперь жители приграничных районов КНДР смогут услышать K-pop, новости и другие южнокорейские передачи.\n\nС конца мая Пхеньян отправил в сторону Южной Кореи около тысячи воздушных шаров с мусором и навозом. В ответ группа северокорейских беженцев направила с территории Южной Кореи в КНДР воздушные шары с листовками, осуждающими действия соседа.\n\nУчастники заседания СНБ пришли к выводу, что действия КНДР «неприемлемы», и решили принять «соответствующие меры». «Правительство будет сохранять твердую и полную готовность противостоять любым провокациям со стороны Северной Кореи, чтобы обеспечить общественную и национальную безопасность», — подчеркнули в совете.\n\nРешению предшествовала очередная партия воздушных шаров с отходами: накануне Северная Корея запустила около 330 шаров, порядка 80 из них приземлились, пишет агентство.\n\n\n\nЮжная Корея и КНДР начали пропагандистские трансляции с использованием громкоговорителей в 1963 году. Обе стороны приостановили их в 2015-м, накануне переговоров на высшем уровне руководства. Однако в январе 2016 года Сеул возобновил трансляции в ответ на ядерные испытания КНДР. Через громкоговорители транслировались сообщения с критикой коммунистической политической системы Северной Кореи. Это прекратилось в 2018 году.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/4/78/347179231116784.jpeg", + "rbc_news:type": "image/jpeg", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "Korea Pool-Donga Daily / Getty Images" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/rbcfreenews/6664d6c19a79472f66d34c9c", + "rbc_news:title": "КНДР снова отправила воздушные шары с мусором и навозом в Южную Корею" + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/666132c39a79478450a147d7", + "rbc_news:title": "Южная Корея направила в КНДР воздушные шары с листовками", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/8/99/347176563805998.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Chung Sung-Jun / Getty Images" + } + }, + { + "@url": "https://www.rbc.ru/politics/03/06/2024/665d51ec9a7947526f91d930", + "rbc_news:title": "Южная Корея определилась с ответом на шары с навозом из КНДР", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/1/36/347173988907361.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Yonhap / Reuters" + } + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "Над Белгородской областью сбили ракету «Нептун» и два дрона", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/rbcfreenews/66656bfb9a794747ceae4f91", + "attributes": {} + } + ], + "description": { + "content": "Средства противовоздушной обороны сбили управляемую ракету «Нептун-МД» и два беспилотника самолетного типа над Белгородской областью, сообщает Минобороны России.", + "attributes": {} + }, + "author": null, + "category": [ + { + "content": "Политика", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/8/74/347179234584748.jpeg", + "type": "image/jpeg", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:politics:66656bfb9a794747ceae4f91", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T11:52:22+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "11:52:22", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/rbcfreenews/66656bfb9a794747ceae4f91", + "rbc_news:anons": "Средства противовоздушной обороны сбили управляемую ракету «Нептун-МД» и два беспилотника самолетного типа над Белгородской областью, сообщает Минобороны России.", + "rbc_news:news_id": "66656bfb9a794747ceae4f91", + "rbc_news:type": "short_news", + "rbc_news:newsDate_timestamp": "1717923142", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 11:57:46 +0300", + "rbc_news:newsline": "politics", + "rbc_news:tag": [ + "Белгородская область", + "ракета", + "беспилотники", + "Вячеслав Гладков" + ], + "rbc_news:full-text": "Средства противовоздушной обороны сбили управляемую ракету «Нептун-МД» и два беспилотника самолетного типа над Белгородской областью, сообщает Минобороны России.\n\nАтаки пресекли с 9:30 до 10:30 мск, уточнили в ведомстве.\n\nВ Белгороде и Белгородском районе с 9:50 по 10:15 мск действовал сигнал ракетной опасности.\n\n\n\nБелгородский губернатор Вячеслав Гладков сообщил об уничтожении нескольких воздушных целей над Новооскольским городским округом. По его словам, никто не пострадал. В селе Песчанка выбило окна в частном жилом доме и коммерческом объекте, повреждены два автомобиля. В поселке Прибрежный повреждены окна в подъездах двух многоквартирных домов.\n\nБелгородская область в последние месяцы подвергается интенсивным обстрелам, в регионе периодически объявляют ракетную опасность, сбивают украинские ракеты и дроны.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/8/74/347179234584748.jpeg", + "rbc_news:type": "image/jpeg", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "Николай Гынгазов / ТАСС" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/rbcfreenews/6665564c9a7947d363ac1ebd", + "rbc_news:title": "В Воронежской области вслед за Белгородом объявили ракетную опасность", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/5/90/347179180733905.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Сергей Бобылев / ТАСС", + "description": "Воронеж
" + } + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/666551a39a7947eab562cb15", + "rbc_news:title": "В Белгороде объявили ракетную опасность" + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/66652f6b9a7947f9e7a4c4fe", + "rbc_news:title": "Гладков назвал количество установленных в Белгородской области убежищ" + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "«Вкусно — и точка» передумала открывать рестораны в Абхазии", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/business/09/06/2024/666563739a7947752bc72774", + "attributes": {} + } + ], + "description": { + "content": "Абхазия на международной арене считается территорией, принадлежащей Грузии, а там работает франшиза McDonald's, с которой «Вкусно — и точка» не хочет конкурировать, объяснил отказ от планов экспансии гендиректор сети Пароев", + "attributes": {} + }, + "author": { + "content": "Илья Пламенев", + "attributes": {} + }, + "category": [ + { + "content": "Бизнес", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/7/78/347179220201787.jpeg", + "type": "image/jpeg", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:business:666563739a7947752bc72774", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T11:45:13+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "11:45:13", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/business/09/06/2024/666563739a7947752bc72774", + "rbc_news:anons": "Абхазия на международной арене считается территорией, принадлежащей Грузии, а там работает франшиза McDonald's, с которой «Вкусно — и точка» не хочет конкурировать, объяснил отказ от планов экспансии гендиректор сети Пароев", + "rbc_news:news_id": "666563739a7947752bc72774", + "rbc_news:type": "article", + "rbc_news:newsDate_timestamp": "1717922713", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 11:54:26 +0300", + "rbc_news:newsline": "business", + "rbc_news:tag": [ + "Абхазия", + "рестораны", + "Вкусно – и точка", + "Макдоналдс", + "Грузия", + "ПМЭФ" + ], + "rbc_news:full-text": "Сеть ресторанов быстрого питания «Вкусно — и точка» больше не планирует выходить на рынок Абхазии, рассказал в интервью «РИА Новости» на ПМЭФ-2024 генеральный директор сети Олег Пароев.\n\n«Мы внимательно изучили рынок Абхазии и пришли к выводу, что не будем там открываться. Причин этому несколько: с одной стороны, Абхазия на международной арене считается территорией, принадлежащей Грузии, а там работает франшиза McDonald's и мы бы не хотели создавать конфликт», — сказал он.\n\nТем не менее, по словам Пароева, вскоре ресторан «Вкусно — и точка» может открыться возле Абхазии — в Сочи или Адлере, что будет «логистически гораздо проще» с точки зрения управления и набора персонала.\n\n\nРоссия признала независимость Абхазии и Южной Осетии в 2008 году.\n\n\nПароев также не стал исключать выход сети «Вкусно — и точка» в другие страны. «На данный момент я не хотел бы говорить про конкретные страны, хотя могу сказать, что конкретные планы уже рассматриваются», — отметил он.\n\n\n\nВладелец «Вкусно — и точка» Александр Говор заявил о планах сети выйти на новые рынки, в том числе в Абхазию, в декабре 2022 года. «Непризнанные республики к нам тоже обращаются. Мы все делаем, чтобы туда зайти, например в Абхазию. Но от нас это не зависит. Новые территории мы пока не рассматриваем, в том числе Крым», — сказал он тогда.\n\nО том, что сеть не планирует выходить в новые регионы, Пароев говорил в начале июня. «Сейчас мы не видим возможности, как мы можем обеспечить стабильность поставок и безопасность наших гостей. Это самая большая проблема», — объяснял он. При этом во всех остальных российских регионах сеть уже присутствует, добавил гендиректор.\n\n\n\n\n«Вкусно — и точка» пришла на смену «Макдоналдсу», который в марте 2022 года приостановил работу в России, а в мае объявил об уходе из страны. Бизнес приобрел сооснователь компании «НефтеХимСервис» Александр Говор, чья компания «Гид» управляла 25 ресторанами американской сети в Сибири. Бизнесмен заявлял, что приобрел бизнес «за символическую плату», но точную сумму разглашать отказался. В соглашении предусмотрен опцион на обратный выкуп в течение 10–15 лет при условии, если Говор будет мастер-франчайзи.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/7/78/347179220201787.jpeg", + "rbc_news:type": "image/jpeg", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "Михаил Гребенщиков / РБК" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/business/07/06/2024/6662de8b9a7947accdbf99a1", + "rbc_news:title": "Попова назвала «Вкусно — и точка» новым «флагманом здорового питания»" + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/6662db419a7947a929f85a81", + "rbc_news:title": "Попова назвала сеть «Вкусно — и точка» флагманом здорового питания. Видео" + }, + { + "@url": "https://www.rbc.ru/business/06/06/2024/666189739a79475330035f26", + "rbc_news:title": "Во «Вкусно — и точка» пока не стали планировать выход в Донбасс", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/0/37/347176711656370.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Михаил Гребенщиков / РБК" + } + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "На юге Азербайджана двух пограничников убило ударом молнии", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/rbcfreenews/666563279a7947752bc7276f", + "attributes": {} + } + ], + "description": { + "content": "Два пограничника погибли от удара молнии на юге Азербайджана, сообщила государственная пограничная служба страны.", + "attributes": {} + }, + "author": null, + "category": [ + { + "content": "Общество", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/6/64/347179215340646.jpeg", + "type": "image/jpeg", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:society:666563279a7947752bc7276f", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T11:21:46+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "11:21:46", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/rbcfreenews/666563279a7947752bc7276f", + "rbc_news:anons": "Два пограничника погибли от удара молнии на юге Азербайджана, сообщила государственная пограничная служба страны.", + "rbc_news:news_id": "666563279a7947752bc7276f", + "rbc_news:type": "short_news", + "rbc_news:newsDate_timestamp": "1717921306", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 11:42:59 +0300", + "rbc_news:newsline": "society", + "rbc_news:tag": [ + "Азербайджан", + "молния", + "пограничники" + ], + "rbc_news:full-text": "Два пограничника погибли от удара молнии на юге Азербайджана, сообщила государственная пограничная служба страны. Инцидент произошел утром 9 июня.\n\n«Руководство выражает глубокие соболезнования семьям и близким погибших военнослужащих, желает им терпения», — говорится в публикации. Погибли майор Бахышлы Бахыш Эльшан-оглу и солдат Нагиев Али Эльшан-оглу. Ведомство начало расследование.\n\n\n\nВ конце мая в подмосковной Балашихе также в результате удара молнии погиб мужчина. Телеграм-каналы «112» и Mash сообщили, что ему было 63 года.", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/6/64/347179215340646.jpeg", + "rbc_news:type": "image/jpeg", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "Алексей Куденко / РИА Новости" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/society/06/06/2024/6661b4fa9a79473aff3b6c8f", + "rbc_news:title": "Молния ударила в «Детское посольство» в Москве" + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/665a1af79a794702df7b7d41", + "rbc_news:title": "В Балашихе молния убила мужчину", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/5/44/347171816956445.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Никита Попов / РБК" + } + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/665a09cb9a794788276d017c", + "rbc_news:title": "В Ростовской области после удара молнии загорелись десятки гектаров леса" + } + ] + } + }, + "attributes": {} + }, + { + "content": { + "title": { + "content": "Welt узнала о поиске Макроном союзников для отправки военных на Украину", + "attributes": {} + }, + "link": [ + { + "content": "https://www.rbc.ru/politics/09/06/2024/6665590d9a794782e847f34c", + "attributes": {} + } + ], + "description": { + "content": "Франция направила десяткам западных стран предложение присоединиться к коалиции по отправке военных инструкторов на Украину, но ФРГ выступила против, выяснила Welt. Москва предупреждала, что такие военные будут «законной целью»", + "attributes": {} + }, + "author": { + "content": "Илья Пламенев", + "attributes": {} + }, + "category": [ + { + "content": "Политика", + "attributes": {} + } + ], + "comments": null, + "enclosure": [ + { + "content": null, + "attributes": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/6/06/347179195427066.jpeg", + "type": "image/jpeg", + "length": "" + } + } + ], + "guid": { + "content": "rssexport.rbc.ru:politics:6665590d9a794782e847f34c", + "attributes": { + "is_perma_link": "false" + } + }, + "pubDate": { + "content": "2024-06-09T11:13:25+03:00", + "attributes": {} + }, + "source": null, + "rbc_news:time": "11:13:25", + "rbc_news:date": "09.06.2024", + "pdalink": "https://www.rbc.ru/politics/09/06/2024/6665590d9a794782e847f34c", + "rbc_news:anons": "Франция направила десяткам западных стран предложение присоединиться к коалиции по отправке военных инструкторов на Украину, но ФРГ выступила против, выяснила Welt. Москва предупреждала, что такие военные будут «законной целью»", + "rbc_news:news_id": "6665590d9a794782e847f34c", + "rbc_news:type": "article", + "rbc_news:newsDate_timestamp": "1717920805", + "rbc_news:newsModifDate": "Sun, 09 Jun 2024 11:49:58 +0300", + "rbc_news:newsline": "politics", + "rbc_news:tag": [ + "Эмманюэль Макрон", + "военные инструкторы", + "Военная операция на Украине", + "коалиция", + "Германия", + "Франция" + ], + "rbc_news:full-text": "Французский президент Эмманюэль Макрон пытается создать коалицию западных стран для совместной отправки военных инструкторов на Украину, сообщает немецкая Welt am Sonntag со ссылкой на дипломатические источники.\n\nПо данным газеты, на прошлой неделе начальник Главного штаба ВС Франции Тьерри Буркхард направил письмо десяткам западных стран, в том числе США, Великобритании, Польше, Нидерландам, Дании и Швеции, в котором пригласил их принять участие в учебной миссии на Украине в рамках многонациональной «коалиции желающих». В то же время в ФРГ оно направлено не было: источники Welt уточнили, что это связано с демонстративным нежеланием правительства Германии направлять свои войска на Украину в любом виде.\n\nСобеседники газеты также рассказали, что миссия на Украине с участием военных инструкторов, по плану Макрона, может быть реализована под эгидой уже существующей учебной миссии ЕС в Украине EUMAM. Однако, чтобы это произошло, необходимо изменить мандат миссии, напоминает Welt. В то же время, отмечает газета, такое вполне возможно: летом параметры EUMAM должны быть пересмотрены, а в ноябре ее необходимо будет продлить.\n\nИсточники отмечают, что пока инициатива Парижа сталкивается с сопротивлением в большинстве стран. Так, правительства Германии, Италии и Испании выразили опасения, что отправка военных инструкторов может создать значительный риск эскалации и «еще глубже» втянуть Запад в конфликт. Венгрия, в свою очередь, еще в конце мая заявила, что у Украины нет никаких шансов одержать верх над Россией.\n\n\n\nДискуссия о возможном вводе войск западных стран на Украину началась в конце февраля, когда такой вариант впервые не исключил Макрон. В марте он допустил и проведение наземной операции против российской армии. Условиями отправки западных войск на Украину будут соответствующий запрос Киева и прорыв фронта, уточнял французский лидер в начале мая.\n\nВ конце мая главком ВСУ Александр Сырский подписал документы, «которые позволят первым французским инструкторам вскоре посетить украинские учебные центры и ознакомиться с их инфраструктурой и персоналом». А спустя еще несколько дней депутат Верховной рады Алексей Гончаренко со ссылкой на собственный источники заявил, что первая группа инструкторов уже направилась в страну.\n\nРоссийский президент Владимир Путин на встрече с представителями международных информагентств 5 июня заявил, что западные военные инструкторы и советники уже присутствуют на Украине и, «к сожалению для них, несут потери». В Кремле предупреждали, что иностранные военные, которые тренируют ВСУ на территории страны, не защищены от ударов, у них «нет никаких иммунитетов».", + "rbc_news:image": { + "rbc_news:url": "https://s0.rbk.ru/v6_top_pics/media/img/6/06/347179195427066.jpeg", + "rbc_news:type": "image/jpeg", + "rbc_news:size_nick": "original", + "rbc_news:copyright": "copyright", + "rbc_news:source": "Clemens Bilan / Getty Images", + "rbc_news:description": "Эмманюэль Макрон
" + }, + "rbc_news:related_links": { + "link": [ + { + "@url": "https://www.rbc.ru/rbcfreenews/666352519a79470b2983ae9b", + "rbc_news:title": "Макрон заявил о начале обучения Францией украинских пилотов", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/6/11/347177862057116.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Joe Raedle / Getty Images" + } + }, + { + "@url": "https://www.rbc.ru/rbcfreenews/666198cf9a79475d8b128eec", + "rbc_news:title": "Зеленский прибыл во Францию на юбилей высадки в Нормандии", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/5/34/347176768866345.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Piroschka van de Wouw / File Photo / Reuters", + "description": "Владимир Зеленский
" + } + }, + { + "@url": "https://www.rbc.ru/politics/09/06/2024/6664dbda9a7947fc7b6e8869", + "rbc_news:title": "В Чехии исключили отправку своих инструкторов на Украину", + "rbc_news:thumbnail": { + "url": "https://s0.rbk.ru/v6_top_pics/media/img/5/09/347178878144095.jpeg", + "type": "image/jpeg", + "size_nick": "original", + "copyright": "limited", + "source": "Oleksandr Ratushniak / Reuters" + } + } + ] + } + }, + "attributes": {} + } + ], + "language": { + "content": "ru", + "attributes": {} + }, + "copyright": null, + "managingEditor": null, + "webMaster": null, + "pubDate": null, + "lastBuildDate": null, + "category": [], + "generator": null, + "docs": null, + "cloud": null, + "ttl": { + "content": 30, + "attributes": {} + }, + "image": { + "content": { + "url": { + "content": "http://pics.rbc.ru/img/fp_v4/skin/img/v6-logo.png", + "attributes": {} + }, + "title": { + "content": "Главные новости :: www.rbc.ru", + "attributes": {} + }, + "link": { + "content": "https://www.rbc.ru", + "attributes": {} + }, + "width": null, + "height": null, + "description": null + }, + "attributes": {} + }, + "rating": null, + "textInput": null, + "skipHours": null, + "skipDays": null + }, + "attributes": {} + }, + "@xmlns:rbc_news": "https://www.rbc.ru" +} diff --git a/tests/samples/rss/rss_0_91/data.xml b/tests/samples/rss/rss_0_91/data.xml new file mode 100644 index 0000000..ed3ce89 --- /dev/null +++ b/tests/samples/rss/rss_0_91/data.xml @@ -0,0 +1,40 @@ + +Body
" + assert entry.content.attributes == {"type": "html"} + + def test_entry_without_title_is_rejected(self): + with pytest.raises(ValidationError, match="title"): + parse_feed("