calls

AppWizard
May 22, 2025
The Google Phone app, currently available only on Pixel phones in the US, features Call Notes that allow users to transcribe and summarize calls. A recent teardown revealed that Google is exploring an option for automatic deletion of Call Notes, similar to the existing feature for call recordings. Users may be able to set automatic deletions for Call Notes after seven, 14, or 30 days, and there will be an option to delete all Call Notes at once. The feature is expected to help users manage their notes more efficiently. There is potential for the Call Notes feature to expand to other markets and languages in the future.
Winsage
May 22, 2025
Brian Eno has written an open letter to Microsoft titled “Not in My Name,” urging the company to stop providing artificial intelligence and cloud services to the Israeli military. He expresses concern that Microsoft's technological contributions could enable war crimes, stating that the company has acknowledged its support for Israel’s Ministry of Defense. Eno plans to donate his fee from the Windows 95 project to aid victims of the conflict in Gaza. He references a Microsoft blog post about the company's software and services being used by the Israeli government in ways condemned by legal scholars and human rights organizations. Eno emphasizes that selling advanced AI and cloud services to a government involved in systemic ethnic cleansing constitutes complicity and calls for a reevaluation of corporate ethics. He commends Microsoft employees who have spoken out against the company's actions and invites others to join his call for accountability.
AppWizard
May 22, 2025
Telegram has launched a contest with a prize pool of 0,000 inviting participants to create a viral video that showcases Telegram's technological innovations compared to WhatsApp. The contest was announced on May 19, 2025, and submissions are due by May 26, 2025. It is open to global participants, with videos required to be in English and suitable for platforms like TikTok and Instagram Reels. The contest allows the use of AI tools and evaluates entries based on clarity, visual impact, meme potential, and virality. Pavel Durov, the founder of Telegram, has publicly accused WhatsApp of smear campaigns and emphasizes Telegram's commitment to privacy and political neutrality, rejecting government requests to censor political content. The contest aims to expand Telegram's user base and engage content creators by promoting its unique features, which include end-to-end encrypted chats, large group chats, bots, and advanced privacy controls. Winners will be announced in June 2025.
Winsage
May 22, 2025
Renowned musician Brian Eno announced he will donate the earnings from his Windows 95 startup chime to support those affected in Gaza. This decision follows scrutiny of Microsoft’s contracts with the Israeli government amid ongoing humanitarian crises. Eno criticized Microsoft for its involvement in operations contributing to violations of international law and called for the company to suspend services supporting such actions. Microsoft acknowledged its contracts with Israel’s Ministry of Defense but claimed an internal review found no evidence of its technologies targeting civilians in Gaza. Following the October 7, 2023 attack by Hamas, significant casualties have been reported in Gaza, with estimates of over 52,000 to as high as 109,000 deaths. Human rights organizations have accused Israel of war crimes. Protests by Microsoft employees have occurred, demanding accountability for the company's actions. Eno emphasized the need for artists and corporations to consider the implications of their contributions.
Winsage
May 21, 2025
Microsoft has open-sourced its Windows Subsystem for Linux (WSL) code, announced during the Build 2025 developer conference. WSL allows users to run Linux distributions natively on Windows, facilitating integration between Linux tools and the Windows environment. Since its introduction in 2016, WSL has become essential for developers needing Linux utilities without leaving Windows. As of the 2024 StackOverflow developer survey, 16.8% of programmers use WSL, surpassing traditional Linux distributions. The initial version, WSL 1, had performance limitations, but WSL 2 introduced a full Linux kernel in a lightweight virtual machine, improving compatibility and performance. The majority of WSL's codebase is now available on GitHub under the MIT License, including key command-line tools and Linux-side daemons. Some components remain closed source, but the move reflects a significant shift in Microsoft's open-source collaboration approach. Users can access various Linux distributions on WSL, including Fedora, Debian, openSUSE, and Ubuntu.
Winsage
May 20, 2025
Microsoft has announced that the Windows Subsystem for Linux (WSL) is now open source, marking a significant milestone in its development. The company has closed issue #1 on its GitHub issue tracker, which asked if WSL would be open source since April 6, 2016. WSL allows Windows users to run Linux distributions alongside their operating system and has evolved from WSL 1, which used a pico process provider, to WSL 2, which introduced a dedicated Linux kernel and various enhancements such as GPU support, graphical applications, and systemd support. In 2021, WSL was decoupled from the Windows codebase and made available via the Microsoft Store for Windows 11 users. Future updates will further refine the installation process for Linux distributions.
Tech Optimizer
May 19, 2025
Performance issues in PostgreSQL can arise as databases grow, leading to declines in query performance. To identify problematic queries, one can log long-running queries by setting the `log_min_duration_statement` parameter in the `postgresql.conf` file. The `pg_stat_statements` module can be enabled to monitor execution statistics of SQL statements, providing insights into query performance, including execution time and the number of calls. Queries with high standard deviation in execution time may indicate inconsistency, while sorting query statistics by total execution time can reveal excessive load from multiple fast queries. Real-time monitoring can be done using the `pg_stat_activity` view to check active queries and their states, and the `pg_locks` view can help identify blocked processes. The `EXPLAIN` command can analyze query execution plans, and using the `auto_explain` module can log plans for slow queries. Understanding cost parameters in query plans helps in optimizing performance, and different join methods (Nested Loop, Merge Join, Hash Join) have varying complexities and costs. To influence the planner's choice of scanning methods, configuration parameters can be adjusted, such as disabling sequential scanning. Extensions like `sr_plan`, `pg_hint_plan`, and `AQO` can further optimize query execution. Monitoring query progress can be done using dynamic views like `pg_stat_progress_*` for various commands.
Tech Optimizer
May 19, 2025
A researcher known as es3n1n explored Windows security mechanisms to bypass antivirus software validation checks in the Windows Security Center (WSC). He used tools like dnSpy and Process Monitor to analyze how legitimate antivirus solutions register with WSC. He confirmed that WSC validates the signatures of processes calling its APIs. Previously, es3n1n faced controversy when his project, no-defender, was removed from GitHub due to a DMCA takedown request from a software vendor.
Tech Optimizer
May 18, 2025
A new tool called Defendnot, developed by es3n1n, allows users to disable Windows Defender by using an undocumented Windows Security Center (WSC) API to simulate the presence of another antivirus program. This tool is a successor to the no-defender tool, which was taken down due to legal issues. Defendnot does not use third-party antivirus code and aims for a clean implementation. It disables Microsoft Defender upon activation, leaving users vulnerable to malware as it does not provide real-time scanning. Defendnot is designed to run automatically at Windows startup. Microsoft classifies Defendnot as a Trojan, raising concerns about its potential misuse by malicious actors.
Search