Items
Browse the latest source items collected for AI Weekly Malaysia. Open any item to see the original source, context, and related AI-generated summary when available.
Showing 3426-3450 of 6459 results
| Date | Provider | Category | Status | Item |
|---|---|---|---|---|
| 27 Jul 2026, 11:00 AM | SoyaCincau | malaysia-tech | summarized | Facebook Verified: Everything you need to know about Meta’s new free feature Facebook has introduced Facebook Verified, a new, free feature designed to confirm that there is a real human being behind a profile. Using a simple video selfie process, this initiative aims to restore trust and authenticity on the platform amidst the ever-growing AI-generated content and accounts. What’s the difference between Facebook Verified and Meta Verified? […] |
| 27 Jul 2026, 10:41 AM | SoyaCincau | malaysia-tech | summarized | Samsung One UI 9 can permanently lock your phone after 13 wrong PIN attempts Samsung is introducing a much stricter lock screen security policy with its latest One UI 9 that ships out of the box with the latest Galaxy Z Fold 8, Z Fold 8 Ultra and Z Flip 8. If you enter the wrong PIN, password or pattern 13 times, your device will be permanently locked and […] |
| 27 Jul 2026, 8:19 AM | TechCrunch | technology | summarized | Are brain waves the next unlock for physical AI? Forget YouTube videos — frontier physical AI models need multiple camera angles, dense annotation, and, soon, brain wave readings. |
| 27 Jul 2026, 12:00 AM | Lowyat.NET | malaysia-tech | summarized | Pokemon Card Stores In Japan To Use Facial Recognition, Because Scalpers |
| 27 Jul 2026, 12:00 AM | Lowyat.NET | malaysia-tech | summarized | Microsoft Strengthens TPM-Based KMS Security, But Not For Individual Windows 11 PCs |
| 27 Jul 2026, 8:00 AM | Hugging Face Blog | developer-ai | summarized | Anatomy of a Frontier Lab Agent Intrusion: A Technical Timeline of the July 2026 Incident |
| 27 Jul 2026, 8:00 AM | Anthropic | ai-labs | summarized | Our position on open-weights models |
| 27 Jul 2026, 8:00 AM | Anthropic | ai-labs | summarized | Cognizant and Anthropic expand their partnership to bring Claude to enterprise clients |
| 27 Jul 2026, 5:06 AM | TechCrunch | technology | summarized | Can Apple make smart glasses that aren’t a constant privacy threat? As Apple prepares to launch its first smart glasses, the company may also be wrestling with how to address consumer privacy concerns. |
| 27 Jul 2026, 3:40 AM | TechCrunch | technology | summarized | Making sense of the panic over Chinese AI On the latest episode of Equity, we discussed why Moonshot AI's Kimi seemed to panic Silicon Valley and Wall Street. |
| 27 Jul 2026, 3:30 AM | Simon Willison | developer-ai | summarized | An Inside Look at the Relay Market Powering Token Resellers and Fraud An Inside Look at the Relay Market Powering Token Resellers and Fraud Fascinating investigation by Matt Lenhard into the market that has grown up around reselling LLM tokens at a discount by pooling API keys from various sources. This looks to be mostly a thing in China. Resellers sell access to an LLM proxy that offers significant discounts on regular API pricing, which they achieve by abusing free trials, proxying through unprotected support bots, or sometimes through stolen credit cards or chargeback attacks. The software they are using for these proxies is open source - mostly one-api and its more actively developed fork new-api, both legitimate API proxy products which can be used to load. balance requests across a pool of API credentials. The buyers are seeking cheap tokens, avoiding geo-restrictions, and in some cases collecting data for model distillation. I've been cautious about exposing my own LLM-driven applications publicly out of fear of abuse leading to big token bills. The existence of this marketplace makes me even more cautious: there's now an entire ecosystem that can profit from finding a new unprotected endpoint to exploit. LLM vendors really need to get better at offering strict caps for their API keys. I want my LLM apps to stop working the moment they hit a dollar threshold I've set for a period of time. Here's the (Chinese language) forum thread that served as the principal source for Matt's article. Via Hacker News Tags: ai, generative-ai, llms, llm-pricing, ai-ethics, ai-in-china |
| 27 Jul 2026, 1:03 AM | TechCrunch | technology | summarized | Inside one London founder house rewriting the founder-house rules How one founder house is betting work-life balance can beat burnout . |
| 27 Jul 2026, 12:33 AM | TechCrunch | technology | summarized | Hugging Face CEO calls for ‘radical transparency’ after ‘unprecedented’ OpenAI hack "The first autonomous agent cyberattack is an unprecedented event. It deserves an unprecedented response!" |
| 27 Jul 2026, 12:03 AM | TechCrunch | technology | summarized | TechCrunch Mobility: Uber bets on its former CEO Welcome back to TechCrunch Mobility, your hub for the future of transportation and now, more than ever, the role AI is playing in it. |
| 26 Jul 2026, 8:32 PM | Lenny's Newsletter | product-startup | summarized | Anthropic’s first technical PM on token maxing, the jagged edge, and living in the future | Dianne Penn Listen now | Dianne Penn, Anthropic’s first PM, on the bets that made Claude dominant: the coding pivot, the eval-driven development loop, and what comes after coding is solved |
| 26 Jul 2026, 9:30 AM | TechCrunch | technology | summarized | Monday.com is the latest tech company to blame AI for layoffs — here are 20 others A running look — in reverse chronological order — at the bigger tech companies that have announced significant layoffs this year with AI as a stated factor. |
| 26 Jul 2026, 12:00 AM | Lowyat.NET | malaysia-tech | summarized | F1 Officially Returns To Malaysia |
| 26 Jul 2026, 6:44 AM | Simon Willison | developer-ai | summarized | Ruff v0.16.0 Ruff v0.16.0 Astral shipped a significant new version of their Ruff Python linting tool a few days ago on July 23rd. I noticed today because my various CI jobs all started failing thanks to new default Ruff checks and my unpinned "ruff" dev dependency. From Brent Westbrook's announcement post: Ruff now enables 413 rules by default, up from 59 in previous versions. Since Ruff's default rule set was last modified in v0.1.0, the number of rules in Ruff has grown from 708 to 968. Many of these rules catch severe issues, including syntax errors and immediate runtime errors but were not previously enabled by default. With the new rule set, Ruff will bring these issues and many others to your attention without any Ruff configuration. Here's a one-liner for trying it on any Python project: uvx ruff@latest check . I ran the latest Ruff against my three biggest projects - Datasette, sqlite-utils, and LLM - and it found hundreds of minor issues that breached the new default rules. All three projects have very comprehensive test suites, executed in CI against Python 3.10 through Python 3.14, so upgrades like this are pretty safe. The following command did the bulk of the upgrades: uvx ruff@latest check . --fix --unsafe-fixes Against sqlite-utils, that command reported: Found 1618 errors (1538 fixed, 80 remaining). As an illustrative example, here are three of the remaining issues. Ruff does a nice job of explaining each one: DTZ005 `datetime.datetime.now()` called without a `tz` argument --> tests/test_duplicate.py:17:10 | 15 | "datetime_col" TEXT)""") 16 | # Insert one row of mock data: 17 | dt = datetime.datetime.now() | ^^^^^^^^^^^^^^^^^^^^^^^ 18 | data = { 19 | "text_col": "Cleo", | help: Pass a `datetime.timezone` object to the `tz` parameter BLE001 Do not catch blind exception: `Exception` --> tests/test_plugins.py:16:12 | 14 | db.execute("select * from pragma_function_list()") 15 | return True 16 | except Exception: | ^^^^^^^^^ 17 | return False 18 | finally: | B018 Found useless attribute access. Either assign it to a variable or remove it. --> tests/test_update.py:46:5 | 44 | def test_update_invalid_pk(fresh_db, pk, update_pk): 45 | table = fresh_db["table"] 46 | table.insert({"id1": 5, "id2": 3, "v": 1}, pk=pk).last_pk | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 47 | with pytest.raises(NotFoundError): 48 | table.update(update_pk, {"v": 2}) | Unsurprisingly, given Astral's new home at OpenAI, this output provides everything a coding agent would need to fix the problems. I had Codex (GPT-5.6 Sol high) upgrade LLM and sqlite-utils, and Claude Code (with Opus 5) upgrade Datasette. Tags: python, ruff, astral |
| 26 Jul 2026, 4:55 AM | TechCrunch | technology | summarized | Warner Bros. lawsuit accuses Amazon of illegally poaching executives The lawsuit will likely renew debates about whether term employment agreements are enforceable under California law. |
| 26 Jul 2026, 4:24 AM | TechCrunch | technology | summarized | The hacker who humiliated spyware makers and was never caught An awe-inspiring hacktivist who hacked two controversial government spyware makers may be the most prolific hacker to have never gotten caught. What do we know about Phineas Fisher? |
| 26 Jul 2026, 3:23 AM | TechCrunch | technology | summarized | Elon Musk’s Boring Company reportedly raising funding at a $20 billion valuation Elon Musk's tunneling startup is reportedly in talks for a major new funding round. |
| 26 Jul 2026, 12:46 AM | TechCrunch | technology | summarized | Kalshi demands Netflix take down trailer for ‘Prediction Games’ documentary Kalshi claims the trailer is “defamatory” and contains “both fabricated documents and false and misleading statements.” |
| 26 Jul 2026, 12:09 AM | Digital News Asia | malaysia-tech | summarized | MRANTI’s CEO: If we truly want to create meaningful change in the ecosystem, we cannot continue operating the same way In an ambitious reset, Ashran Ghazi pushes commercialization beyond traditional innovation programmes Bets success on delivering an Innovation District Model that focuses on actual ecosystem outcomes Malaysia has long aspired to become an innovation-driven economy, with tens of billions of ringgit invested over the years in research and development, startups, grants, and digital initiatives. However, translating these ideas into scalable businesses and nationally impactful industries has often proven more difficult. Under the 12th Malaysia Plan, the government allocated approximately RM3.2 billion to research and development across various sectors. Yet, according to reports and studies, the rate of commercialisation has fallen short of expectations. That is the gap MRANTI now wants to address. Make no mistake, it is a huge challenge. During a media briefing in May at MRANTI Innovation Park, Bukit Jalil, Ashran Ghazi (pic), MRANTI CEO who came on board in Dec 2025, laid out a broader vision for the agency. It was about repositioning MRANTI as a national innovation orchestrator focused on commercializing technology and aligning ecosystems. “MRANTI is not a programme. It is an accelerator for the commercialisation of technology,” Ashran said during a media briefing session. “It is a replicable system where every stage is designed to lead.” MRANTI was formed through the merger of MaGIC and Technology Park Malaysia (TPM) in Nov 2021. Under its current direction, MRANTI appears to be moving beyond its role as a technology park operator. It is aiming to build what Ashran repeatedly described as a “Mission-Driven Innovation District”, where national problems are solved through living, working, testing, and scaling together. Before any of these activities bear fruit, taking check of what MRANTI has achieved between 2022 (since it was established in Nov 2021) and 2025 – during which time it was led by Dzuleira Abu Bakar (April 2021- Sept 2023) and Dr Rais Hussin (Oct 2023- Sept 2025) – and based on data shared MRANTI, the agency said it recorded a cumulative economic impact of US$409 million (RM1.675 billion) through investments, revenue creation, and ecosystem partnerships facilitated across its initiatives. It did not share the formula for how it came up with the amount. Over the same period, 7,394 startups, universities, and SMEs participated in MRANTI-linked accelerator programs, commercialization initiatives, funding facilitation efforts, and innovation platforms. No details are available of the impact of these engagements. The agency also launched 16 innovation sandboxes under the National Technology & Innovation Sandbox (NTIS) initiative to help companies test technologies in real-world environments before scaling commercially. Moving beyond programs Ashran noted that research Institutes, universities, corporates, and startups are all working on innovation, but that the vast majority of efforts still happen in silos. And when go |
| 26 Jul 2026, 12:01 AM | Lenny's Newsletter | product-startup | summarized | 🧠 Community Wisdom: Staying on a client’s radar during pilot purgatory, pairing Linear with a discovery tool, the limits of what AI can automate, whether Techstars is worth it, and more Community Wisdom 194 |
| 26 Jul 2026, 12:00 AM | TechCrunch | technology | summarized | Librarians are hosting viral ‘Avoiding AI’ workshops for people who are fed up with Big Tech At libraries around the country, "Avoiding AI" workshops have elicited unprecedented demand. |