PHP Annotated – January 2025
Welcome to the January edition of PHP Annotated! This recap is carefully handcrafted and brings you the most interesting developments in the PHP community over the past couple of months, so you don’t have to sift through the noise, we’ve done it for you. Highlights PHP 8.4 PHP 8.4 was officially released on November 21, […]
Welcome to the January edition of PHP Annotated! This recap is carefully handcrafted and brings you the most interesting developments in the PHP community over the past couple of months, so you don’t have to sift through the noise, we’ve done it for you.
Highlights
PHP 8.4
PHP 8.4 was officially released on November 21, 2024, and by now, version 8.4.3 is already available.This major language update brings many new features, such as property hooks, asymmetric visibility, an updated DOM API, performance improvements, bug fixes, and general code cleanup.
If you want to learn more about all the goodies in the release, visit php.watch and stitcher.io.
There are also some lesser known improvements that you can learn more about from the Tideways blog:
- PHP 8.4 improves Closure Naming for simplified debugging.
- What’s new in PHP 8.4 in terms of performance, debugging, and operations.
Install or upgrade to PHP 8.4
- Windows: Compiled binaries available at windows.php.net.
- Fedora/RHEL/CentOS: Available as a software collection (php84) from the Remi repo.
- macOS: PHP 8.4 can be installed via Homebrew using the shivammathur/homebrew-php tap.
- Docker: PHP 8.4 images are now available on Docker Hub with 8.4 tags.
- Herd also comes with PHP 8.4 supported.
Watch a 📺 Celebrating PHP 8.4 stream with Nicolas, Brent, and Roman:
youtube.com/embed/1AL2oDt9q38?…PHP 8.2 goes in security-fixes-only phase
Starting this year, PHP versions now follow a four-year support timeline: two years of active support followed by two years of security fixes.For PHP 8.1 security patches will be provided until December 31, 2025, while PHP 8.2 will be maintained until December 31, 2026. The recent PHP 8.2.27 release marked the end of its active support phase.
PHPStan 2.0 has been released
This update introduces Level 10 code analysis with stricter handling of mixed types, and adds support for the List type. You can also expect reduced memory consumption and improved performance.Markus Staab shares interesting technical insights about improving PHPStan:
A mixed type PHPStan journey, PHPStan performance on different hardware, My new PHPStan focus: multi-phpversion support.🎂 The PHP Foundation turned three
The PHP Foundation was established three years ago. Over the past year, the PHP Foundation has supported the work of ten core developers, and made a significant contribution to the PHP language.Consider supporting the PHP Foundation via OpenCollective or GitHub Sponsors.
The PHP Foundation has been also active with developments:
- PHP 8.4: How Property Hooks Happened – Larry Garfield details the decade-long journey of implementing Property Hooks in PHP 8.4.
- The PHP Installer for Extensions php/pie reached version 0.5!
Learn more about it from Pie: new extension installer for PHP post by Grzegorz Korba.
Rector 2.0
This major release updates dependencies (PHPStan 2 and PHP-Parser 5), runs 10–15% faster, and has 5 new features.FrankenPHP 1.3
In this release, expect performance improvements, watcher mode, dedicated Prometheus metrics, and more.Conductor – Automatic dependency updates for Composer
The Packagist team announced a new tool that is similar to Dependabot, but specifically tailored to PHP projects.You can now run code examples directly on the php.net website
PHP Core
✅ RFC: Add persistent curl share handles
PHP 8.5 will bring a new functioncurl_share_init_persistent()
, which would allow cURL handles to be stored in global memory and reused in subsequent requests.Persistence allows PHP scripts to eliminate the overhead of establishing a connection (and DNS lookups, SSL session IDs, etc.) and can improve performance and reliability.
✅ RFC: Support Closures in constant expressions
In PHP 8.5 it will be possible to use closures in previously- In attribute parameters,
- As default values of properties and parameters.
- Constants and class constants.
<?phpclass Foo{ public static Closure $callback = static function ($item) { echo "Hello world"; };}function my_array_filter( array $array, Closure $callback = static function ($item) { return !empty($item); },) { // ...}✅ RFC: Attributes on Constants
Attributes were first introduced in the RFC: Attributes v2. Daniel Scherzer proposes to add support for attributes on compile-time non-class constants.
#[MyAttribute]const EXAMPLE = 1;✅ RFC: Error Backtraces v2
Previously, unlike exceptions, PHP errors did not provide backtraces, which made it difficult to figure out their underlying cause. PHP 8.5 will come with a new ini settingfatal_error_backtraces=1
which will generate detailed error messages and trace forE_ERROR
s.📣 RFC: Records vs. RFC: Data Class vs. RFC: Structs
Apparently, there is a big interest in the community to add a simple native way of creating Value Objects in PHP.Which one would you prefer?
- youtube.com/embed/BvAcP6RtlAA?…
Tools
- ringPHP/php-mrloop – A PHP port of the mrloop eventware designed to harness the powers of
io_uring
. Read an Introducing ext-mrloop blog post to learn why io_ring is better thanselect()
,poll()
, andepoll()
async io implementations. - loupe-php/loupe – A full text search engine with tokenization, stemming, typo tolerance, filters, and geo support based on only PHP and SQLite.
- twigstan/twigstan – TwigStan is a static analyzer for Twig templates powered by PHPStan.
- azjezz/psl – A modern, consistent, centralized, well-typed, non-blocking set of APIs for PHP programmers.
- Full LAMP Sandbox – (PHP + WebServer + DB) running 100% inside your browser.
- carthage-software/mago – A toolchain for PHP that aims to provide a set of tools to help developers write better code. Built in Rust.
- smoqadam/pvm – A simple bash script to manage multiple PHP versions on Linux and macOS.
- tnylea/php-ext – A Chrome extension to show PHP (Laravel) devtools console.
- phikiphp/phiki – Syntax highlighting powered by TextMate grammars in PHP.
- coduo/php-humanizer – A useful tool to transform different strings and numbers to human-readable form.
- RoadRunner v2024.3.0 – The PHP application server got a major update with auto workers scaling.
AI
- echolabsdev/prism – A unified interface for working with LLMs in Laravel. Supports Anthropic, DeepSeek, Gemini, Groq, Mistral, Ollama, OpenAI, and xAI APIs.
Also extensible with jordan-price/toolbox. - CodeWithKyrian/whisper.php – Local Speech to Text in PHP made easy thanks to Whisper.cpp and OpenAI.
- deepseek-php/deepseek-php-client – Supercharged community-maintained PHP API client that allows you to interact with deepseek API.
PhpStorm
PhpStorm 2024.3 is now available
The new PhpStorm comes with full PHP 8.4 support, inline AI prompts, Laravel Herd support.Support for
.env
files is now built into PhpStorm. Previously it required installing a separate plugin.JetBrains also announced a closed beta for Junie, AI Coding Agent for IDEs.
- MetaStorm – This plugin allows extending PhpStorm’s behaviour and adding support for your custom frameworks with a few lines in a config file. It unlocks both references and autocompletion at regular places such as
method($object,), render()
, etc. - buggregator/phpstorm-plugin – This plugin works in the pair with buggregator/trap and allows dumping and debugging PHP projects just inside the IDE. Supports VarDumper server, Xhprof profiler, local SMTP server, local Sentry, and much more.
- Cron & Crontab Support Plugin
Frameworks
Symfony 7.2.0 has been released
Check the Living on the Edge category on this blog to learn about the main features of this new stable release.Drupal CMS
Previously known as Drupal Starshot Initiative, Drupal CMS is the new way of creating web apps based on Drupal with no-code building experience.- thedevdojo/wave – The SaaS starter kit based on Laravel.
- WordPress as a git repo by Adam Zieliński – A promising addition that might be landed in WordPress core, allowing using markdown files as a backend for WordPress site.
- How Geocodio keeps 300M addresses up to date with Laravel and SQLite.
- Naoray/laravel-github-monolog – Laravel log Channel for GitHub issues.
Misc
- Building Maintainable PHP Applications: Data Transfer Objects by Davor Minchorov.
- Playtime with PHP Attributes by Pete Wond.
- Why Final Classes make Rector and PHPStan more powerful by Tomas Votruba.
- Property Hooks in PHP 8.4: Game Changer or Hidden Trap? by David Grudl.
- PHP version stats: January, 2025 by Brent.
- Unleash: Feature flags in PHP by Dominik Chrástecký.
- The Dangers of PHP’s unserialize and How to stay safe by Sheikh Heera.
- Stop using Pseudo-Types by Frédéric Bouchery.
- Importing 1.7 billion rows of CSV data from Stripe by Jon Purvis.
- azjezz/php-pretty-diff – A nice demo repository on how to use Rust code in a PHP project with FFI.
- TIL: You can use #️⃣ emoji instead of
#
symbol in comments and attributes in PHP!
Conferences
These PHP events are all worth a visit, and some are still accepting presentation proposals:
- Laracon EU 2025 – Amsterdam, The Netherlands, February 3–4.
- PHP UK Conference 2025 – London, UK, February 19.
- Laracon India 2025 – Ahmedabad, India, March 8–9. CFP
- PHP Conference Odawara 2025 – Japan, April 12.
- php[tek] 2025 – Chicago, IL, USA, May 20–22.
- PHPers Summit 2025 – Poznań, Poland, May 24–25. CFP
- Summer Camp – Opatija, Croatia, July 3–5. CFP 🆕
To find a PHP meetup happening near you, check out the calendar on php.net.
Fun
If you have any interesting or useful links to share via PHP Annotated, please leave a comment on this post or let us know on X/Twitter.
Roman Pronskiy
Developer Advocate at @PhpStorm, Executive Director at @The PHP Foundation.
Importing 1.7 billion rows of CSV data from Stripe with PHP
This post is inspired from a Tweet Christoph Rumpel put out earlier today and it got me thinking about the work I did last year to ensure one of our systems at work could handle massive files that we'd get from Stripe: What are your best practi…Jon Purvis
What scareware is and how to protect yourself | Kaspersky official blog
We explain what scareware is and why it’s dangerous, with tips for guarding against this threat.
Imagine: you’re calmly working away on your computer, when suddenly a scary message appears on the screen: “Your computer is infected with viruses! Install an antivirus immediately!” or “Your data is at risk! Clean your system immediately!” Panic? That’s what the scammers are hoping for.
This post explains what scareware is and why this threat is dangerous. We also give tips for avoiding falling for scarewarers’ tricks, and protecting you and your family from such attacks.
What is scareware?
Scareware is a type of digital fraud that weaponizes users’ fears. The aim is to frighten the victim into visiting a malicious site and downloading something they shouldn’t. Scareware usually mimics antiviruses, system optimizers, registry cleaners, and the like. But other, more exotic types also exist.
The user is not so subtly informed that no fewer than five viruses have been found on their computer. However, the window header contains a small misprint: “Threaths detected” Source
To display their alarming messages, scammers tend to deploy browser pop-up windows and notifications, banner ads, and on occasion even good-old email.
Scareware creators use a variety of social engineering tricks to instill a sense of danger in the user. Often, threatening messages appear at the most unexpected moment — catching the victim off guard.
And scammers frequently hurry the victim into taking rash actions — not giving them time to think things over. Then, when the target has been properly prepared (that is, put into a state of panic), the attackers offer a simple solution to the problem: just install such-and-such software and all your troubles will be gone.
Fake antiviruses pretend to search for malware in the user’s system. Source
Upon receiving a scareware notification, in the best case scenario the victim will install a useless but harmless program on their device and pay a relatively small sum for the pleasure. But sometimes an attack can have more serious consequences. Under the guise of an “antivirus” or “system optimizer”, the victim may be fed proper malware that encrypts data or steals money from online bank accounts.
Sextortion scareware
Sometimes scammers employ a hybrid scheme: scareware combined with sextortion. It may go as follows: the user receives an intimidating email saying they’ve been caught in a compromising video.
To see for themselves, the victim is invited to visit a website where they can watch the footage. However, to view the video, they first need to install a special player. This, of course, is malware in disguise.
Faulty screen caused by a virus
In a new variant of the scareware scheme, the user is told that a virus has infected their smartphone. Nothing unusual so far — mobile versions of scareware have been around for ages. Here, however, the focus is artfully placed on what perhaps all smartphone owners fear the most: a faulty screen:
The scareware simulates screen damage caused by a virus that must be removed.Source
Curiously, the “faulty” display — which also blinks for added alarm — is capable of clearly showing the message about the supposed virus infection. How this window is able to float above a damaged screen is a mystery… To “fix” the screen, you just need to tap the button in the box and purchase the offered “antivirus”.
How to protect against scareware
Of course, the best defense against fake “protection” is the real thing. To defeat scareware, install a bona fide antivirus from a reputable developer, keep a close eye on its notifications, and always heed its recommendations.
Also bear in mind that it’s seniors who are most likely to fall victim. So it’s worth helping your older relatives get the right protection since it can be a challenge for them.
Scareware scheme operator thrown behind bars for targeting US media
Visitors of the Minneapolis Star Tribune found their computers infected with malware and were exposed to fake Windows support messages.Charlie Osborne (ZDNET)
मैकलोडगंज में पानी की बोतल के बिल को लेकर भिड़े पांच लोग, रेस्टोरेंट में गाली गलौच के साथ की मारपीट
Kangra News: पर्यटक नगरी मकलोडगंज के भागसूनाग में गुरुवार को खूब लात-घूंसे चले। पानी की बोतल के बिल को लेकर शुरू हुई कहासुनी देखते ही देखते हाथापाई तक पहुंच गई और दो पक्षों में लात घूंसे शुरू हो गए।
पुलिस ने इस घटना पर पांच लोगों के खिलाफ मामला दर्ज करके जांच आरंभ कर दी है। पुलिस से मिली जानकारी के अनुसार शिकायतकर्ता गुलशुन ठाकुर पुत्र अशोक कुमार गांव सहराड़ा, डाकघर सोहरा, तहसील गगंथ, जिला कांगड़ा, हिमाचल प्रदेश ने पांच व्यक्ति के खिलाफ मामला दर्ज करवाया है।
शिकायतकर्ता ने बताया कि वह रेस्टोरेंट में काम करता है और गुरुवार रात्रि उपरोक्त आरोपियों ने रेस्टोरेंट में आकर मेरा काम बंद करवाकर दिया, मेरे साथ गाली-गलौज की, धमकाया, तेज हथियारों के साथ लड़ाई-झगड़ा किया और रेस्टोरेंट के शीशे तोड़ दिए हैं। इस संबंध में पुलिस ने शिकायत के आधार पर मारपीट करने वाले लोगों के खिलाफ धारा 190, 191, 324(2) व 115(2) बीएनएस के तहत मामला दर्ज कर आगामी कार्रवाई शुरू कर दी है।
मामले की जानकारी अतिरिक्त पुलिस अधीक्षक वीर बहादुर ने दी। जानकारी के अनुसार भागसूनाग के समीप पानी की बोतल के बिल को लेकर स्थानीय लोगों व होटल कर्मियों के बीच झगड़ा हो गया। बिल के लिए पहले कहासुनी होती रही और फिर हाथापाई शुरू हो गई। दोनों पक्षों ने एक-दूसरे पर प्रहार किए। मामला शांत न होते देख होटल मालिक ने इसकी शिकायत मकलोडगंज पुलिस थाना में की, जिस पर पुलिस ने पांच लोगों के खिलाफ मामला दर्ज कर लिया है।
होटल के मालिक अमित ने बताया कि पानी की बोतल के पैसों को लेकर स्थानीय लोगों ने लड़ाई की है। इस दौरान होटल के स्टाफ को आई चोटें भी आई हैं। मालिक ने बताया कि उनके ऊपर भी हमला किया गया है। उधर, एसपी कांगड़ा शालिनी अग्रिहोत्री ने पुष्टि करते हुए बताया कि लड़ाई-झगड़े के मामले में मकलोडगंज पुलिस थाना में मामला दर्ज किया गया है, जांच जारी है।
K-State Agriculture Today: 1859 – Grain Market Weather…Winter Cattle Lice
traffic.libsyn.com/secure/agto…
- Grain Exports and Ethanol Prices
- Managing Lice on Cattle
- Melting Snow
00:01:05 – Grain Exports and Ethanol Prices: Dan O’Brien, K-State grain economist, gets today’s show rolling with his grain market outlook. He breaks down where the markets are moving and what is contributing to it.
00:12:05 – Managing Lice on Cattle: K-State Extension beef veterinarian A.J. Tarpoff continues the show as he discusses lice on cattle and why they are more of an issue in the winter.
Have a Plan for Lice Control this Winter
00:23:05 – Melting Snow: The show wraps with K-State meteorologist Chip Redmond with his weather forecast. Chip comments on recent rain but how increased fire concern is beginning.
Send comments, questions or requests for copies of past programs to ksrenews@ksu.edu.
Agriculture Today is a daily program featuring Kansas State University agricultural specialists and other experts examining ag issues facing Kansas and the nation. It is hosted by Shelby Varner and distributed to radio stations throughout Kansas and as a daily podcast.
K‑State Research and Extension is a short name for the Kansas State University Agricultural Experiment Station and Cooperative Extension Service, a program designed to generate and distribute useful knowledge for the well‑being of Kansans. Supported by county, state, federal and private funds, the program has county Extension offices, experiment fields, area Extension offices and regional research centers statewide. Its headquarters is on the K‑State campus in Manhattan
चिड़गांव में भीषण आग लगने से दो मंजिला मकान जलकर हुआ राख, लाखों के नुकसान का अनुमान
Shimla News: हिमाचल में सर्द मौसम में आग (Fire) लगने से लोगों के आशियान जल कर राख हो रहे हैं। शिमला जिले के रोहड़ू ( Rohru)उपमंडल में गत रात एक मकान में आग लग गई। रोहड़ू की चिडगांव तहसील के क्लोटी पंचायत स्थित मस्तोट गांव में भीषण आग लगने से एक परिवार का दो मंजिला मकान( House) पूरी तरह जलकर राख हो गया। आग से घर में रखा सारा सामान जल कर राख हो गया और सर्द रातों में परिवार बेघर हो गया।
यह मकान मस्तोट निवासी कलम सिंह का था । घटना में कोई जानी नुकसान नहीं हुआ है। लोगों ने आग लगी देखी तो परिवार के लोगों के बाहर निकाला और फायर ब्रिगेड (Fire Brigade)को सूचित किया। सूचना मिलते ही फायर ब्रिगेड की टीम मौके पर पहुंची और कड़ी मशक्कत के बाद आग पर काबू पाया गया।
हालांकि तब तक मकान पूरी तरह से जल चुका था। आग लगने के कारणों का अभी तक पता नहीं चल पाया है। आग से लाखों के नुकसान का अनुमान लगाया जा रहा है। प्रशासन मौके पर पहुंच कर आग से हुए नुकसान का आकलन कर रहा है।
यूपी सरकार की बदइंतजामी के कारण हुई भगदड़ की घटना, नरेश चौहान बोले, साधन नहीं थे तो करोड़ों लोगों को बुलाया क्यों
Himachal News: मुख्यमंत्री के प्रधान मीडिया सलाहकार नरेश चौहान ने महाकुंभ में भगदड़ को लेकर यूपी सरकार पर हमला बोला है। उन्होंने कहा कि जिस शाही स्नान की भाजपा हिमायत कर रही है, वहां लोगों की भारी भरकम भीड़ में भगदड़ मच जाने से लोगों को जान से हाथ धोना पड़ा। जबकि नेता प्रतिपक्ष जयराम ठाकुर महाकुंभ में स्नान से अर्थ व्यवस्था के मजबूत होने की बात कर रहे हैं।
उन्होंने कहा कि उत्तरप्रदेश सरकार की बदइंतजामी के कारण इतनी बड़ी घटना घटी। यदि उत्तर-प्रदेश सरकार के पास इतने बड़े इंतजाम करने के साधन नहीं थे तो व्यापक स्तर पर इतना बड़ा पर्व आयोजित करने तथा करोड़ों की संख्या में वहां लोगों को बुलाने की क्या आवश्यकता थी। शुक्रवार को जारी प्रेस बयान में नरेश चौहान ने जयराम ठाकुर के उस बयान पर आपत्ति जताई है जिसमें उन्होंने कांग्रेस के राष्ट्रीय अध्यक्ष मल्लिकार्जुन खरगे पर हमला बोलते हुए यह आरोप लगाया है कि कांग्रेस सनातन का अपमान कर रही है।
नरेश चौहान ने कहा कि जयराम ठाकुर का यह निरर्थक बयान राजनीति से प्रेरित है। ऐसा लगता है कि उन्हें अखबारों की सुर्खियों में बने रहने का ज्यादा शौक है, जिसके लिए वह आए दिए कांग्रेस पार्टी पर बेवजह कटाक्ष करते रहते हैं। नरेश चौहान ने कहा कि तीनों पीठों के शंकराचार्य, जिन्होंने एक साथ अमृत स्नान किया, ने भी इस घटना को दुर्भाग्यपूर्ण बताते हुए कहा कि संगम पर भगदड़ मच जाने पर यह अव्यवस्था पैदा हुई जिससे वह पूरी तरह से आहत हैं। उनका कहना था कि श्रद्धालुओं के जीवन की सुरक्षा भी धर्म है जो सरकार की पूरी जिम्मेदारी है। शंकराचार्यों ने यह भी बयान दिया है कि प्रशासन यदि कड़ी कार्रवाई करता तो ऐसी दुर्घटना से बचा जा सकता था।
उन्होंने वहां की सरकार एवं प्रशासन द्वारा वीवीआईपी कल्चर को सुरक्षा प्रदान करने पर भी प्रश्नचिह्न उठाते हुए कहा कि उनके लिए अलग व्यवस्था और आयोजन पर अंकुश लगाया जाना चाहिए था ताकि श्रद्धालुओं पर खास ध्यान केंद्रित किया जा सकता। उन्होंने कहा कि कांग्रेस को जयराम ठाकुर और उनकी पार्टी से सनातन संस्कृति, धर्म और धार्मिक परंपराएं सीखने की आवश्यकता नहीं है। कांग्रेस पार्टी किसी धर्म अथवा पर्व की खिलाफत नहीं करती बल्कि सनातन परम्पराओं का सम्मान करती है।
संगड़ाह की हेमलता की महाकुंभ में तबियत बिगड़ने से हुई मौत, आंगनबाड़ी में कार्यकर्ता के रूप में थी कार्यरत
Sirmaur News: प्रयागराज में आयोजित हो रहे महाकुंभ में तबीयत बिगड़ने के बाद उपमंडल संगड़ाह की एक महिला के मौत होने का मामला सामने आया है। प्राप्त जानकारी के अनुसार संगड़ाह के रजाना निवासी हेमलता (38) आंगनबाड़ी कार्यकर्ता के रूप में कार्यरत थी।
हेमलता कुछ दिन पहले अपने पति बबलू एवं अन्य लोगों के साथ ददाहू से यात्रा करवाने निकली बस में धार्मिक नगरी प्रयागराज कुंभ स्नान करने गई थी। इस दौरान वहां पर अचानक उनकी तबीयत बिगड़ गई। इसके उपरांत उसके साथी हेमलता को अस्पताल लेकर गए लेकिन चिकित्सकों ने उसे मृत घोषित कर दिया।
हेमलता अपने पीछे तीन छोटे बच्चों को छोड़ गई है। उधर महिला की मौत के बाद क्षेत्र में शोक की लहर है। परिजनों से मिली जानकारी में हेमलता का प्रयागराज में पोस्टमार्टम करवा दिया गया है तथा वहीं पर ही उसका आज ही दाह-संस्कार किया जाएगा।
अचानक हुई इस घटना के उपरांत ब्राह्मण सभा रेणुका जी द्वारा सरकार एवं प्रशासन से मृतक के परिजनों को सहायता प्रदान करने की मांग की है ताकि हेमलता के बच्चों को इस दुखद घड़ी में सहायता मिल सके।
संत नहीं हैं सीएम योगी, इस्तीफा दें, शंकराचार्य बोले, सरकार ने 18 घंटे तक छिपाया सच; जानें मोक्ष के बारे क्या कहां
Mahakumbh News: महाकुंभ 2025 में भले ही यूपी सरकार शुरू से ही सारी व्यवस्थाओं के चाक-चौबंद होने की बात कह रही थी लेकिन मौनी अमावस्या के दिन मची भगदड़ से असलियत कुछ और ही जाहिर हुई है. इसे लेकर कई संतों में नाराजगी है तो कई संत इसे एक दुर्घटना मान रहे हैं.
हालांकि इस पर बद्रीनाथ ज्योतिष पीठ के शंकराचार्य स्वामी अविमुक्तेश्वरानंद सरस्वती ने खुलकर विचार रखे हैं. उन्होंने विरोध प्रकट किया है और नाराजगी जाहिर करते हुए सीएम योगी आदित्यनाथ के इस्तीफे की मांग की है. उन्होंने कहा कि भगदड़ जैसी हृदयविदारक घटना को छिपाना ठीक नहीं था ऐसे में सीएम को पद से इस्तीफा दे देना चाहिए.
स्वामी अविमुक्तेश्वरानंद ने बातचीत के दौरान नाराजगी जाहिर करते हुए कहा है कि लोगों ने सरकार के दावों पर भरोसा कर लिया था. सरकार ने महाकुंभ से पहले कहा था कि अंदाजन 42 करोड़ लोग महाकुंभ में आने वाले हैं और सरकार ने 100 करोड़ लोगों तक की व्यवस्था कर ली है. मौनी अमावस्या से इन व्यवस्थाओं की पोल खुल गई है. उन्होंने कहा कि अगर 100 करोड़ की व्यवस्था थी और 40 करोड़ ही आए हैं तो फिर अव्यवस्था कैसे हो गई? अगर 140 करोड़ आते तो माना जा सकता था कि ओवर क्राउडेड हो गया है.
स्वामी अविमुक्तेश्वरानंद ने कहा कि यह बहुत पीड़ाजनक बात है कि हमारे सीएम ने इतनी बड़ी घटना को एक दो नहीं बल्कि 18 घंटे तक छिपाकर रखा. इसके बाद भी लोगों के मौत के आंकड़े छिपाए जा रहे हैं. सीएम ने अपने सोशल मीडिया हैंडल से कहा कि अफवाहों पर ध्यान न दें. शंकराचार्य बोले कि जब तक सीएम ने स्पष्ट नहीं किया तब तक उन्हें यह लग रहा था कि सभी बातें अफवाह ही हैं और सरकार की व्यवस्थाओं को बदनाम करने की साजिश रची जा रही है. हालांकि 18 घंटे बाद सीएम ने ही हादसे और लोगों की मौत की बात कबूल की थी.
संत नहीं हैं सीएम योगी, इस्तीफा दें
स्वामी अविमुक्तेश्वरानंद ने नाराजगी जाहिर करते हुए कहा कि सीएम योगी कोई संत नहीं हैं. अगर वो संत होते तो लोगों की मौत जैसी पीड़ादायत दुर्घटना को छिपाते नहीं. संत छिपाते कुछ नहीं हैं वह सामने आकर स्वीकार करते हैं. अविमुक्तेश्वरानंद सरस्वती ने कहा कि सीएम योगी को इतनी बड़ी घटना के बाद इस्तीफा दे देना चाहिए और उनकी जगह पर किसी काबिल व्यक्ति को सीएम बनाना चाहिए.
6 जगह हुईं घटनाएं
शंकराचार्य ने कहा कि घूंसी की घटना का कहीं जिक्र ही नहीं किया गया है. शंकराचार्य ने कहा कि उन्हें पुलिस अधिकारी ने बताया है कि 1-2 नहीं बल्कि 6 जगहों पर भगदड़ जैसे हालात बने थे. कितने लोग मारे गए इस पर उनका कहना था कि अधिकारिक आंकड़ा 30 है. शंकराचार्य ने कहा कि मृतकों की सही संख्या भी अभी तक छिपाई जा रही है. हालांकि अभी तक 49 लोगों की मौत की बात सामने आई है जिसमें 25 लोगों की शिनाख्त की जा चुकी है जबकि 24 लोग अभी भी अज्ञात हैं.
शंकराचार्य ने कहा कि जो संत कह रहे हैं कि भगदड़ में मारे गए लोग मोक्ष को प्राप्त हुए हैं, उन संतों को भी गंगा में धक्का देकर मोक्ष दे देना चाहिए. क्या वह इसके लिए तैयार हैं? उन्होंने कहा कि जो बच्चे-महिलाएं और बुजुर्ग कुचले गए और तड़प-तड़पकर मरे हैं उनके लिए कह देना कि मोक्ष प्राप्त हो गया बहुत सरल है. सरकार को सीसीटीवी जारी करना चाहिए या सभी को एक्सेस दे देना चाहिए ताकि सच सामने आ सके.
#PrayagrajNews #Shankaracharya #uttarPradeshNews #YogiAdityanath
What to do, with a TP-Link Archer C7?
I got an Archer C7 and i am wondering what to do with it. It already runs openwrt, but we dont need another router.
Are there any recommendations on using a openwrt as Pi-Hole-like thing for example?
दंगों के समय दलितों और अल्पसंख्यकों के साथ नहीं थे केजरीवाल, जानें राहुल गांधी ने पीएम मोदी के बारे क्या कहा
Delhi Elections 2025: कांग्रेस नेता राहुल गांधी ने आम आदमी पार्टी के मुखिया अरविंद केजरीवाल पर बड़ा हमला बोला है। उन्होंने कहा है कि केजरीवाल जी ‘वैगन आर’ में आए और सीधा ‘शीशमहल’ की पार्किंग में चले गए। उन्होंने करोड़ों रुपए का घर बनाया, भष्ट्राचार किया, शीला दीक्षित जी के सारे विकास के काम बर्बाद कर दिए। केजरीवाल सिर्फ झूठे वादे करते हैं।
राहुल गांधी ने कहा, सच्चाई है कि जब केजरीवाल जी आए थे तो कहा था, नई तरह की राजनीति करूंगा। बिजली के खंबे पर चढ़ गए थे। वैगनार में आए थे औऱ सीधा शीशमहल की पार्किंग में चले गए। राहुल गांधी ने कहा, केजरीवाल जी ने कहा था कि दलितों और अल्पसंख्यकों की रक्षा करूंगा। लेकिन जब दंगा हुआ तब केजरीवाल जी आपके साथ नहीं थे। वहीं कांग्रेस पूरी मजबूती से आपके साथ खड़ी थी। यही कांग्रेस की विचारधारा है। जहां अन्याय होता है, कांग्रेस वहां अन्याय के खिलाफ खड़ी मिलती है।
राहुल गांधी ने कहा, केजरीवाल और नरेंद्र मोदी अपने भाषण में सिर्फ झूठ बोलते हैं। आप मेरी एक स्पीच दिखा दीजिए जिसमें मैंने कभी झूठा वादा किया हो। मैं वही वादा करता हूं, जो किया जा सकता है। हम मनरेगा स्कीम लाए, किसानों का कर्ज माफ किया, दिल्ली में फ्लाईओवर बनवाए, विकास का काम किया, लेकिन कभी झूठे वादे नहीं किए।
यमुना को लेकर विवाद भी निशाना
राहुल गांधी ने युमना की सफाई को लेकर भी अरविंद केजरीवाल पर निशाना साधा। उन्होंने कहा, केजरीवाल जी ने कहा था यमुना का पानी पिऊंगा, यमुना में डुबकी लगाऊंगा। केजरीवाल जी, आप यमुना का पानी छोड़िए, दिल्ली की झुग्गियों का नार्मल पानी पीकर दिखा दीजिए। आपने कहा था कि यमुना को साफ करूंगा, लेकिन ऐसा कुछ नहीं किया। आपके शब्द खोखले हैं।
#ArvindKejriwal #DelhiElectionNews #delhiNews #PMModi #RahulGandhi
Sens. Moran, Cruz Announce Intent to Host Senate Commerce Committee Briefing with Key Federal Officials
WASHINGTON – U.S. Senator Jerry Moran, chairman of the Senate Commerce Subcommittee on Aviation, Space, and Innovation, and Sen. Ted Cruz (R-Texas), chairman of the Senate Committee on Commerce, Science and Transportation, issued the following joint statement after receiving a briefing from the National Transportation Safety Board (NTSB) and Federal Aviation Administration (FAA):
“We are grateful for the emergency personnel who are working tirelessly to aid in the recovery efforts following this heartbreaking tragedy. Our prayers are with the people of Kansas and all who have lost a loved one in this accident.
“Yesterday, we hosted a briefing with the FAA and NTSB.
“It is too early to draw conclusions on the cause of this accident, but we will continue to actively gather information and will allow the NTSB to conduct a thorough investigation and determine the probable cause in a timely manner. In the coming days, we will be hosting a bipartisan member-level briefing for all Senate Commerce Committee members to hear from key federal officials about their preliminary findings.”
सेक्स सीन की शूटिंग कर रही पोर्नस्टार अन्ना पोली बालकनी से गिरी, मौके पर हुई मौत; पुलिस कर रही मामले की जांच
Pornstar Anna Polly Died: ब्राजील की एक पोर्नस्टार की बालकनी से गिरने से मौत हो गई। यह घटना 23 जनवरी को घटी जब वह बालकनी में एक सेक्स सीन की शूटिंग कर रही थी। पोर्नस्टार की पहचान अन्ना बीट्रिज़ परेरा अल्वेस के रूप में हुई है। उन्हें ‘अन्ना पोली’ के नाम से जाना जाता था। वह एक ऑनलाइन अडल्ट कंटेंट साइट के लिए रियो डी जेनेरो में एक थ्रीसम सेक्स सीन की शूटिंग कर रही थी। द यूएस सन की एक रिपोर्ट के अनुसार, उनका शव होटल के परिसर के आंगन में पाया गया।
न्यूयॉर्क पोस्ट ने द यूएस सन के हवाले से बताया कि अन्ना एक तीव्र अडल्ट सीन की शूटिंग के बाद बालकनी से गिर पड़ीं। जिन दो लोगों के साथ वह फिल्म की शूटिंग कर रही थीं, वे भी घटनास्थल पर मौजूद थे।
रिपोर्ट में दावा किया गया कि दोनों अभिनेताओं ने जो कुछ हुआ उसके बारे में विरोधाभासी बयान दिए हैं। हालांकि, पुलिस ने पूछताछ के बाद उन्हें छोड़ दिया। बाद में शव को पोस्टमार्टम के लिए भेजा गया, ताकि उसकी मौत का सही कारण पता चल सके।
मामले की जांच जारी रहने के दौरान होटल परिसर में लगे सीसीटीवी कैमरों को स्कैन किया जा रहा है। रिपोर्ट में बैक्साडा फ्लूमिनेंस होमिसाइड यूनिट के प्रवक्ता के हवाले से कहा गया, “हम यह पता लगाने के लिए गहन जांच कर रहे हैं कि आखिर क्या हुआ। यह एक जटिल मामला है और हम दुर्घटना से लेकर संभावित अपराध तक किसी भी संभावना से इनकार नहीं करते हैं।”
पोर्नस्टार के बॉयफ्रेंड पेड्रो हेनरिक ने आउटलेट को बताया, “मामले की सारी जानकारी पहले से ही पुलिस के पास है और वे जांच कर रहे हैं। अगर कोई दोषी है तो उसे सजा भुगतनी होगी। अपराधी को ढूंढ़ निकाला जाएगा।”
हेनरिक ने एक सोशल मीडिया पोस्ट में अपनी प्रेमिका की मौत की घोषणा की जिसमें लिखा था, “तुम्हारे बिना यह बहुत मुश्किल है। जैसे-जैसे घंटे बीतते जा रहे हैं, यह बात मेरे दिल में घर कर रही है और मेरे दिल में छेद और भी बड़ा होता जा रहा है।”
ईडी के छापों से आहत पायल मोदी ने जहर पीकर दी जान, सुसाइड नोट में लिखा चिराग पासवान का नाम; जानें कौन थी पीड़िता
Payal Modi Suicide News: जयश्री गायत्री फूड प्रोडक्ट्स की डायरेक्टर पायल मोदी ने जान देने की कोशिश की है। पायल मोदी की कंपनी पर दो दिन पहले ईडी के छापे पड़े थे। छापे के बाद पायल मोदी ने जहर पीकर जान देने की कोशिश की है। इससे पहले पायल ने हिंदू में चार पन्नों का एक सुसाइड नोट लिखा है। इसमें केंद्रीय मंत्री चिराग पासवान और उनके करीबियों के नाम हैं।
बताया जा रहा है कि चिराग पासवान के कथित करीबी पहले जयश्री गायत्री फूड प्रोडक्ट्स में डायरेक्टर रहे हैं। विवाद के बाद अलग हो गए हैं। पायल मोदी के पति किशन मोदी ने आरोप लगाया है कि इनलोगों ने कुछ बड़ा होने की धमकी दी थी।
ईडी की कार्रवाई में क्या मिला
वहीं, कार्रवाई के बाद ईडी ने कहा है कि मेसर्स जयश्री गायत्री फूड प्रोडक्ट्स प्राइवेट लिमिटेड के मामले में मध्य प्रदेश के भोपाल, सीहोर और मुरैना जिलों में स्थित विभिन्न परिसरों में पीएमएलए, 2002 के प्रावधानों के तहत 29 जनवरी को छापेमारी की गई है। तलाशी के दौरान विभिन्न आपत्तिजनक दस्तावेज मिले हैं।
इस दौरान 25 लाख रुपए की नकदी, बीएमडबल्यू और फॉर्च्यूनर जैसी लग्जरी कारें मिली हैं। साथ ही किशन मोदी (पायल मोदी के पति) की विभिन्न कंपनियों और परिवार के सदस्यों के नाम पर 66 करोड़ रुपए से अधिक की अचल संपत्तियों से संबंधित दस्तावेज पाए गए हैं और उन्हें जब्त किया गया है। इसके साथ ही 6.26 करोड़ रुपए की सावधि जमा के रूप में चल संपत्ति भी जब्त कर ली गई है।
चार पन्नों का सुसाइड नोट
पायल मोदी ने जहर खाने से पहले चार पन्ने का सुसाइड नोट लिखा है। उन्होंने लिखा कि मैं पायल मोदी, किशन मोदी की पत्नी हूं। कभी सोचा नहीं था कि जिंदगी में ये सब करने को मजबूर हो जाऊंगी। कुछ लोग हैं, जिनके हाथ में आज राजनीतिक पावर है, उनकी वजह से खुशहाल परिवार बिखरने जा रहा है। मैं जो कदम उठाने जा रही हूं, उसके लिए जिम्मेदार चंद्रप्रकाश पांडे और वेद प्रकाश पांडे (युवा लोजपा के प्रवक्ता हैं), सुनील त्रिपाठी, भगवान सिंह मेवड़ा, हितेश पंजाबी और केंद्रीय मंत्री चिराग पासवान के साथ अन्य लोग हैं।
चंद्र प्रकाश पांडे को बताया जीजा
वहीं, पायल मोदी ने दावा किया है कि चंद्र प्रकाश पांडे चिराग पासवान के जीजा हैं। वेद प्रकाश पांडे उनके छोटे भाई हैं। ये सभी लोग चिराग पासवान के पावर का इस्तेमाल कर मेरे परिवार को परेशान कर रहे हैं। इनलोगों ने मेरी कंपनी में चोरी की है, इनके खिलाफ हमने एफआईआर भी करवाई है। इसमें हमारी कोई सुनवाई नहीं हुई है। हमारी फैक्ट्री और घर पर सीजीएसटी, ईओडब्ल्यू, ईडी और एफएसएसआई के छापे पड़वाए जा रहे हैं।
बच्चे छोटे फिर भी कदम उठा रही हूं
पायल मोदी ने आगे लिखा कि मेरे तीन छोटे बच्चे हैं। इसके बावजूद मैं यह कदम उठा रही हूं। इन सभी रेड में मुझे और मेरे पति को परेशान किया जा रहा है। वह हार्ट के मरीज हैं, मुझे डर है कि उन्हें कुछ हो न जाए। उन्हें जान से मारने की धमकी मिली है। हमने कई जगहों पर शिकायत की लेकिन कोई कार्रवाई नहीं हुई। भोपाल निवासी भगवान सिंह मेवड़ा, जो कि खुद को समाजसेवी बताता है, वह चंद्र प्रकाश पांडे और वेद प्रकाश पांडे का भोपाल में कठपुतली है। वह हमारे खिलाफ सभी बैंकों को मेल करता है और कंपनी को बदनाम करता है।
पटना जाकर चंद्रप्रकाश पांडे के पैरेंट्स से मिली
वहीं, पायल मोदी ने लिका कि 24 जनवरी 2025 को चंद्र प्रकाश पांडे के पटना स्थित घर गए। वहां उसके माता-पिता से मिले। उन्होंने आश्वासन दिया कि सब ठीक हो जाएगा। साथ ही वेद प्रकाश पांडे से फोन पर बात कराई। फिर बसंत कुंज स्थित उनके दिल्ली आवास पर गए, इसके बाद चंद्र प्रकाश पांडे होटल में मिलने आया। लेकिन कुछ नहीं हुआ।
इसके बाद हमें और हमारे पति को एहसास हो गया कि सत्ता और पावर से हम जीत नहीं सकते। वेद प्रकाश पांडे ने हमें बताया कि चार-पांच दिन में तुम्हारे यहां ईडी के छापे पड़ेंगे। अब छापे पड़ गई है। हमारे पति हॉस्पिटल में भर्ती हैं।
हमने इसके लिए सीएम मोहन यादव, पीएमओ और भोपाल पुलिस कमिशनर के पास गुहार लगाई लेकिन कोई कार्रवाई नहीं हुई। अंत में यह कहना चाहूंगी कि एक मां के लिए यह कितना कठोर फैसला है। मेरे बाद मेरे परिवार को न्याय मिले।
चिराग की पार्टी की सफाई
वहीं, इन आरोपों चिराग पासवान की पार्टी के प्रवक्ता प्रो विनीत सिंह ने कहा कि सुसाइड एक अनुचित व्यवहार है। अगर आपकी शिकायत मंत्री जी और पार्टी पदाधिकारियों के विरोध में है तो पुलिस में शिकायत कीजिए। पुलिस इस मामले की जांच कर रही है। हमारी पार्टी आपके साथ खड़ी है और हम सुनिश्चित करेंगे कि आपको न्याय मिले।
Proton's biased article on Deepseek
Article: proton.me/blog/deepseek
Calls it "Deepsneak", failing to make it clear that the reason people love Deepseek is that you can download and it run it securely on any of your own private devices or servers - unlike most of the competing SOTA AIs.
I can't speak for Proton, but the last couple weeks are showing some very clear biases coming out.
DeepSeek? More like DeepSneak
Not only does DeepSeek collect extensive personal information, but it cannot legally resist government demands for access to that data.Edward Komenda (Proton)
Stimpunks.org Changelog for January 2025
Our website is a living document. Here are some changes we made to the site in January.
Week 1
- Updated Now with “We Will” and “Problems to Keep in Mind” sections.
- Published Latest Terms in the Stimpunks Glossary for December 2024.
- Published Stimpunks.org Changelog for December 2024.
- Updated Pebble Board with more pebbles.
- Updated the stats on our Impact page and front page.
- Sent out our December 2024 newsletter.
- Updated Creators page with latest Creator Grant recipient.
Week 2
- Updated Neurospicy with new quotes.
- Updated the About page to add Ronan as Vice Chair and update roles for everyone else.
- Added signatories to these Why Sheets: Positive Greetings at the Door, Hoodie, Alternatives to ABA, and Behaviorism.
- Created Weird Pride Day 2025 playlist.
- The Map of Monotropic Experiences sticker and poster are up on our Raygun store.
- Published Resilience.
- Updated Map of Monotropic Experiences with links to the sticker and poster in our merch store and to the PDF and SVG for those who want to print their own.
Week 3
- Added Weird Pride Day to our Now page.
- Created Weird Pride Day planning page on our public operations blog.
- Added digital download of Map of Monotropic Experiences to our shop.
- Created an event page for Weird Pride Day 2025 on Givebutter so we can issue tickets and accept donations.
- Published Problems to Keep in Mind for 2025.
- Linked products in Stimpunks.org shop to Raygun shop.
- Added our Objective and Key Results (OKRs) to the Now page.
- Updated Rot Economy with a quote from Ed Zitron.
- Created Map of Monotropic Experiences project page.
- Updated Neuroqueer Learning Spaces project page.
- Updated Projects page.
- Published It is time to celebrate our interdependence!
- Add some neutral, biophilic colors to the website’s color picker.
- Published Biophilic Design.
- Updated Our Umbrella: It Is Time to Celebrate Our Interdependence! with layout changes and a section on Biophilic Design.
Week 4
- Created Tech Ethics Starter Pack on Bluesky.
- Updated The Road to Neuronormative Domination: Thorndike won, Dewey lost. Skinner won, Papert lost. with quotes from Designed to Fail: A History of Education in the United States.
- Published Imposter Syndrome.
- Published Dopamine Dressing.
Week 5
- Published Lowering the Bar.
- Published DEIB and Their Adversaries.
- Published Latest Terms in the Stimpunks Glossary for January 2025.
Now - Stimpunks Foundation
What We’re Doing Now Objectives and Key Results for Q1 2025 Raise 2.2k in funds Host 19 virtual events Develop 2 learning experiences What is a “now page”? Most websites have a link that says “about”.Stimpunks Foundation