Connect with us

Press Release

“Security officer” in the digital economy era, the next block-chain technology outlet–privacy computing

Published

on

Nowadays, public and personal privacy disclosure happen from time to time. However, the “big data era” will never become the “infringement era”, and the relevant parties are speeding up relevant actions

Government concerns

“2021 Private Computing Industry Research Report” from KPMG shows that private computing is driven by the dual needs of big data fusion and privacy protection. The Chinese market will develop rapidly. After three years, technical service revenue is expected to reach RMB 10-20 billion.  It will even grow into a $100 billion market.

Obviously, China will not miss this huge market, just like seizing the opportunity of mobile Internet ten years ago. The Chinese government takes the lead in establishing a government-enterprise alliance, which focuses on  industry application implementation, standard construction, policy supervision research, and technology popularization.

On December 21, 2020, the China Academy of Information and Communications Technology and nearly 50 units jointly launched the “Privacy Computing Alliance”. The Privacy Computing Alliance covers almost all mainstream domestic privacy computing companies, including Huawei, Tencent, Baidu and other companies. It will build a government-industry-university-research cooperation platform which focuses on basic core technology research, industry application implementation, standard system construction, and privacy computing policies.  In addition, it is also necessary to help alliance members improve R&D design and production service levels, and cultivate relevant industry markets jointly.

Infrastructure

Privacy computing technology has broad application scenarios on the blockchain. Since 2021, block-chain applications focusing on privacy computing solutions have emerged one after another. The network infrastructure that solves the pain points of privacy protection is gradually appearing. According to official sources, the privacy computing public infrastructure PlatON has launched its main network in April 2021 after two and a half years of research and development, eight months of technical testing on the Pellet World Test network, six months of business verification on the Alaya meta network, and three rounds of internal exercises.  Besides, PlatON continueS to cooperate with well-known blockchain projects such as Polkadot, Zilliqa, Mask Network, SubDao, WePiggy, etc. in cryptography, privacy computing, and cross-chain applications.

PlatON combines blockchain and privacy computing technology to build a decentralized collaborative artificial intelligence network and global brain, which works to promote the democratization of artificial intelligence and establish a secure general artificial intelligence.

Data Exchange established

Under the auspices of Beijing municipal government, on March 31, 2021, Beijing Financial Holdings Group together and 3 companies, with market-oriented data transaction operation experience, jointly initiated the Beijing International Big Data Trading Co., Ltd. At  press conference, the Beijing International Big Data Exchange was established and the Beijing Data Trading System was launched.

The Beijing International Big Data Exchange will be supported by data technology, using privacy computing, blockchain and other technology to separate data ownership, use rights, and privacy rights, and establish a data circulation mechanism that integrates data registration, evaluation, sharing, transaction, application, and service. The Beijing International Big Data Exchange will create a leading domestic data transaction infrastructure and become an important data cross-border circulation hub all around the world.

Technology alliance

According to news from HelpNetSecurity, on May 6, 2021, more than 20 companies around the world announced the establishment of Data Privacy Agreement Alliance (DPPA), which is committed to establishing a decentralized, blockchain-based data system. It will provide consumers with control rights over their data so that they can compete with data monopolies such as Google and Facebook. The founding members of DPPA include data aggregators, privacy advocates, brands, agencies, and advertising platforms.

What’s indisputable is that it is a critical period for building a global privacy computing infrastructure between now and 2025. Plenty of technology-driven blockchain companies are working hard in this direction. From the beginning of independent exploration, iterative research and development, testing, and tuning, blockchain companies turn into multi-party alliances, actively cooperating in identity authentication technology, community governance, and business promotion, and strive to promote the realization of a global privacy data economy.

About Author

Disclaimer: The views, suggestions, and opinions expressed here are the sole responsibility of the experts. No Digi Observer journalist was involved in the writing and production of this article.

Continue Reading

Press Release

Qoder Launches Qoder Security, Putting Three Layers of Security Into the AI Coding Session

Published

on

The built-in capability shifts code security from after-the-fact scanning to proactive, in-session protection, improving vulnerability detection by about 60 percent and cutting false-positive alerts by about 80 percent compared with traditional solutions

Singapore, July 23, 2026 — Qoder, the agentic coding platform with more than 5 million registered users, today announced Qoder Security, a built-in capability that embeds security review directly into the AI coding session. As code is written, Qoder Security runs three progressive layers of protection and fixes the issues it finds in the same session, before the code is committed.

The launch targets a widening gap between how fast Agent writes code and how slowly that code gets checked. Agent now assists in generating a large share of new code, and a July 2026 academic study that applied multi-tier verification to nearly 9,000 C++ programs found that AI-generated code triggers confirmed runtime violations at roughly twice the rate of human-written code, even after controlling for code length and test pass rates. Most security tooling, however, still runs after the fact, in CI pipelines or pre-release audits, when the developer’s context is gone and fixes are slowest and most expensive.

“The speed of agentic coding has quietly become the speed at which vulnerabilities enter the repository,” said Ding Yu, Head of Product at Qoder. “We believe security cannot depend on a model’s good behavior. It has to be built into the product architecture. Qoder Security gives every developer the equivalent of a dedicated security engineer, one that reviews, verifies and fixes issues while the code is being written, not weeks later in a report.”

From Static Scanning to Proactive Security

Traditional code security relies on rules and pattern matching. That approach catches hardcoded secrets and known dangerous calls, but it cannot reason about logic flaws such as authorization bypasses or exploitable data flows. Qoder Security, built on Qoder’s proprietary security LLM, takes an approach the company calls proactive security. The system understands code context and taint propagation paths, verifies that a detected issue is actually reachable before reporting it, and then drives the fix itself.

The architecture separates the agent that writes code from the agent that reviews it, avoiding what engineers call reviewing its own work. On the review side, scanning and verification are split between two cooperating agents to improve accuracy. Once a fix lands, the next scan re-verifies it, closing the loop so no security debt is left behind.

Three Layers, Escalating Depth

Running a frontier-scale model over every line of code would be too slow and too expensive. Qoder Security instead assigns a distinct job to each of three layers:

  • Static Check. Pattern-based screening at generation time. Dangerous function calls and other known high-risk patterns are caught and fixed the moment they appear, with no latency and no model cost.

  • Lightweight Scan. After a coding task wraps up, the system suggests a semantic review of the incremental changes. This layer reasons about what the code is trying to do, catching risks such as SQL injection, remote command execution and sensitive data exposure, and verifies reachability before reporting.

  • Deep Scan. Before code is pushed, the system offers a cross-file, cross-function analysis that traces complete data flows from taint source to dangerous sink, surfacing chained vulnerabilities invisible from any single file.

None of the layers interrupts the developer. The first runs silently; the other two appear as suggestions at natural break points in the workflow and run only when the developer says yes. A scan can also be triggered at any time with the /security-scan command or a plain-language request.

Reported Results

According to company data, Qoder Security improves vulnerability detection rates by about 60 percent and reduces false-positive alerts by about 80 percent compared with traditional solutions, shrinking the time from discovery to fix from days to minutes. In internal testing ahead of launch, the system surfaced more than 600 security issues across production-grade open-source projects and AI infrastructure components, many of them widely used and actively maintained. Within Qoder’s own engineering organization, security-related comments in code review have dropped by roughly 35 to 45 percent since adoption.

Qoder Security improves vulnerability detection rates by about 60 percent and reduces false-positive alerts by about 80 percent compared with traditional solutions

The broader industry is converging on the same conclusion. Leading AI labs have begun building security review into their coding tools, some at the repository level, others inside the coding session. Qoder Security productizes the in-session approach end to end, with three layers of protection, same-session remediation and closed-loop re-verification available out of the box.

Qoder Security is designed to complement existing security programs rather than replace them. CI-stage scanning and human review remain the right tools for compliance and organizational control; Qoder Security shifts detection and remediation left, to the moment the code is born. Findings may still include false positives, and developers always decide whether to accept a fix.

Availability

Qoder Security is available now in Qoder Desktop and in Qoder CLI. It requires no plugins and no configuration files: open Settings > Security in Qoder Desktop, or run /security-settings in the CLI, and switch it on. Static Check is free; Lightweight Scan and Deep Scan consume credits.

About Qoder

Qoder is an agentic coding platform serving more than 5 million registered developers worldwide through Qoder Desktop, Qoder CLI and JetBrains plugin. Launched in 2025, Qoder pairs autonomous coding agents to help developers ship reliable software faster. Learn more at qoder.com.

Media Contact

Organization: Qoder

Contact Person: Nathan Steel

Website: https://qoder.com

Email:
contact@qoder.com

City: Singapore

Country:Singapore

Release id:47400

The post Qoder Launches Qoder Security, Putting Three Layers of Security Into the AI Coding Session appeared first on King Newswire. This content is provided by a third-party source.. King Newswire makes no warranties or representations in connection with it. King Newswire is a press release distribution agency and does not endorse or verify the claims made in this release. If you have any complaints or copyright concerns related to this article, please contact the company listed in the ‘Media Contact’ section

file

About Author

Disclaimer: The views, suggestions, and opinions expressed here are the sole responsibility of the experts. No Digi Observer journalist was involved in the writing and production of this article.

Continue Reading

Press Release

Adam Weitsman Backs Unserious in their Acquisition of Creepz and Psychrome homecoming

Published

on

Miami, United States, July 22nd, 2026, Chainwire

Unserious today announced the acquisition of Creepz, one of the most recognizable NFT collections of the 2021-22 cycle. Backed by entrepreneur and investor Adam Weitsman, and with the support of the original founders, the deal places the lizard cult brand under a powerhouse new team.

Most importantly, the acquisition marks a homecoming for Psychrome – the original mastermind and creative genius behind the Creepz lore. Returning to lead IP development, he also brings a resume as a globally exhibited artist whose commercial collaborations span Nike, Salomon, Sneaker Con, Staple, Disney, Warner Bros., and Rovio.

Beyond this foundational creative leadership, the Unserious team brings deep operating experience with a track record spanning consumer brands, entertainment, and enterprise tech, alongside crypto’s largest token launches – including the historic ApeCoin.

Unserious also took the opportunity to formally deny the existence of lizard people, their alleged evil activities, and any plans for $CREEPZ world domination.

About Unserious

Unserious is reimagining the future of decentralized brands.

Contact

Acquirer
Unserious
Unserious
contact@unserious.inc

About Author

Disclaimer: The views, suggestions, and opinions expressed here are the sole responsibility of the experts. No Digi Observer journalist was involved in the writing and production of this article.

Continue Reading

Press Release

Mandela Digital Announces $5 Million Investment From Datavault AI

Published

on

Laramie, Wyoming, July 22nd, 2026, FinanceWire

Mandela Digital today announced a $5 million investment from Datavault AI and the launch of its official digital website at www.mandela.digital.

Datavault AI Commits $5 Million and Technology Platform to Support Mandela Dollar

Datavault AI Inc. has committed and begun deploying $5 million in funding to Mandela Digital. The investment will accelerate the development and launch of the Mandela Dollar (MUSD), a 1:1 USD-backed stablecoin designed to promote financial inclusion, remittances, and digital payments across the Global South and beyond.

Mandela Digital combines institutional-grade financial infrastructure with the moral authority of the Mandela name to address the needs of the billions of people globally who remain unbanked or underbanked.

Under the agreement, Datavault AI’s investment will support stablecoin infrastructure, regulatory compliance, exchange integrations, liquidity, and go-to-market initiatives. As the primary technology partner, Datavault AI will also provide its patented AI platforms, blockchain tokenization expertise, SanQtum quantum-resilient encryption, and real-world asset (RWA) frameworks to power MUSD’s issuance, redemption, compliance, and on-chain transparency.

Key Highlights

  • $5 million investment by Datavault AI Inc. (NASDAQ: DVLT) into Mandela Digital.
  • Full deployment of Datavault AI’s technology stack, including AI-driven platforms, tokenization patents, quantum-secure encryption, and RWA infrastructure.
  • Launch of the Application Stage of the Early Access Programme, which will remain open for a symbolic 67-day window starting on Nelson Mandela International Day 2026, honoring the 67 years Nelson Mandela spent fighting for human rights, equality and social justice. 
  • Official website www.mandela.digital now live as the central global hub for the initiative.

Mandela Digital Launches Official Digital Home

www.mandela.digital

The new website at www.mandela.digital serves as the venture’s primary global hub, offering stakeholders transparent information, official updates, and resources. It follows the recent opening of applications for the Mandela Dollar Early Access Programme on Nelson Mandela International Day.

Key sections of the website will be updated periodically to include details on the MUSD framework, reserves and audits, governance, the Early Access Programme for financial institutions and intergovernmental organizations, partnership information, and educational resources aligned with Nelson Mandela’s values of economic empowerment.

Quotes

Mustaq Patel, Chairman, Mandela Digital: “I conceived the Mandela Dollar to solve what the industry has long failed to deliver: a stablecoin that combines institutional architecture with genuine moral authority. Technology without trust is a commodity; trust without infrastructure is insufficient. Datavault AI’s $5 million investment and full technology deployment under a signed legal agreement mark the transition from vision to construction. www.mandela.digital represents our commitment to transparency and accessibility as we build serious financial infrastructure for the Global South and beyond.”

Zaziwe Dlamini-Manaway, Director, Mandela Digital “My grandfather measured progress by its impact on people’s daily lives — whether families could thrive, young people could build futures, and workers could preserve the value of their labor. Mandela Digital, brought to us by Mustaq Patel and now supported by Datavault AI’s capital and technology under formal agreement, carries that vision forward with clarity and seriousness of purpose. The Mandela name stands for what endures, and we are confident this initiative is built to last.”

About Mandela Digital

Mandela Digital is the U.S.-headquartered Joint Venture developing the Mandela Dollar (MUSD), a 1:1 USD-backed stablecoin engineered to institutional standards. The initiative aims to expand reliable U.S. Dollar-denominated financial access across Africa, Southeast Asia, Latin America, and beyond.

Caution Regarding Unauthorized Tokens

The Mandela Dollar (MUSD) is currently in development and not yet live on any blockchain or exchange. Mandela Digital has not authorized any token sale, pre-sale, ICO, IEO, or similar offering. The public is advised to exercise extreme caution against any unauthorized tokens, websites, or individuals claiming to represent MUSD or Mandela Digital. Suspected fraudulent activity should be reported to legal@mandela.digital. All verified information is available exclusively at www.mandela.digital.

Forward-Looking Statements

This press release contains forward-looking statements within the meaning of U.S. federal securities laws. These statements are based on current expectations and are subject to risks and uncertainties, including regulatory developments, technology timelines, market conditions, and other factors that may cause actual results to differ materially. Neither Datavault AI nor Mandela Digital undertakes any obligation to update forward-looking statements except as required by law.

Nothing in this release constitutes an offer to sell or solicitation to buy any security or digital asset.

Contact

Chairman
Mustaq Patel
Mandela Digital
PR@mandela.digital

About Author

Disclaimer: The views, suggestions, and opinions expressed here are the sole responsibility of the experts. No Digi Observer journalist was involved in the writing and production of this article.

Continue Reading

LATEST POST