Urgent.News

the world's headlines, one feed

Tech

Court remands suspect for bank hacking, diverting N800m

A suspect has been remanded in court for allegedly hacking Suntrust Bank and diverting N800m. Learn more about the bank hacking case and ongoing trial. Read More: https://punchng.com/court-remands-suspect-for-bank-hacking-diverting-n800m/

Court remands suspect for bank hacking, diverting N800m

Ugochukwu Eze, also known as "Amazon," has been arraigned before the Federal High Court in Lagos on charges of hacking into Suntrust Bank Plc's server and fraudulently diverting N800m into various accounts. The suspect, 47 years old, was represented by the Department of State Services (DSS) and pleaded not guilty to the charges.

The prosecution alleges that Eze and others conspired between 2023 and 2026 to unlawfully interfere with the bank's computer system, contravening several laws including the Cybercrimes (Prohibition, Prevention, etc.) Act, 2024, and the Money Laundering (Prevention and Prohibition) Act, 2022. The court has adjourned the matter until August 24 for the hearing of a bail application, during which Eze will remain in custody with the Nigerian Correctional Service.

Brief written by urgent.news from Punch Nigeria's own syndicated text. Machine-written — read the original for the full account.

We haven't written up this one. Punch Nigeria has the full story — the link below goes straight to it.

Read the original at punchng.com →

More in Tech

One Database Can't Hold Everything: Learn Database Sharding

This is Part 9 of my "From One User to One Million" series, where we'll build an understanding of System Design by following a simple application as it grows from a single user to millions.

  • Single database faces data management limitations as application scales
  • Sharding divides data across multiple databases based on criteria
  • Sharding improves scalability by enabling parallel processing

LINE Service Messages vs Messaging API: Choose the Right Message Path

LINE MINI App Service Messages and the LINE Messaging API can both deliver messages to users, but they solve different problems.

  • Service Messages confirm actions within LINE MINI Apps, like reservations or orders.
  • Messaging API enables conversations, outreach, and mass communication via LINE Official Accounts.
  • Misuse can result in rejected templates, unusable tokens, and inefficient architecture.

How asyncio Really Works Under the Hood

Python's asyncio is usually introduced through its public API: define a coroutine with async def , suspend it with await , and run several operations concurrently with create_task() or gather() .

  • Asyncio event loop manages coroutine execution
  • Await keyword pauses coroutine without CPU consumption
  • Event loop cycle resumes coroutines based on dependencies

One skill per action looked like the safe boundary

I've been building an AI-assisted editorial pipeline in Cursor. Notion cards capture observations, skills score and schedule them, and agents draft markdown that eventually syncs to dev.to.

  • Initial approach of one skill per action proved problematic
  • Inbox skill needed create, enrich, and reclassify actions
  • Consolidating operations into a single skill simplifies system