Urgent.News

the world's headlines, one feed

Editions

Tech

Hospitality recruitment app Supp calls gig-workers contractors. Some users say it leads to casual work without entitlements

Exclusive : Workers’ rights experts raise ‘alarm bells’ over app requiring ABNs for jobs they say lack worker autonomy Get our breaking news email , free app or daily news podcast Concerns have been raised that workers using an increasingly popular Australian hospitality gig-work app may be missing out on entitlements such as superannuation by being hired as “independent contractors”, similar to…

Hospitality recruitment app Supp calls gig-workers contractors. Some users say it leads to casual work without entitlements

The Guardian has reported concerns that Australian hospitality gig-work app Supp may be causing issues for workers by classifying them as independent contractors, potentially denying them entitlements such as superannuation. Supp, launched in Melbourne in 2017 by the owners of Lune Croissanterie, Kate and Cameron Reid, functions as a jobs marketplace for the hospitality industry, allowing businesses to advertise shifts and workers to secure ad-hoc employment at hourly rates.

However, workers' rights experts have raised "alarm bells" over the app, stating that it may lead to casual work without proper entitlements.

Brief written by urgent.news from The Guardian's own syndicated text. Machine-written — it may contain errors, so check the original before relying on it.

Read the original at theguardian.com →

More in Tech

Safeguarding Your Systems: An Introduction to the Circuit Breaker Pattern

The circuit breaker pattern is a modern software design strategy used to detect failures and prevent an application from repeatedly executing an operation that is highly likely to fail.

  • Circuit breaker pattern prevents continuous execution of likely-failing operations
  • Acts as protective shield around external calls, halting traffic to broken services
  • Operates in Closed, Open, and Half-Open states to manage service recovery

Thinking and Decision Making: Cognitive Processes Explained

Introduction Every day you make thousands of decisions: what to eat, which route to take, whether a news headline is true. You probably think you're reasoning logically through each choice.

  • Decision-making relies on algorithms and heuristics
  • Heuristics are mental shortcuts, not always reliable
  • Common heuristics: availability and representativeness

Linux Memory Region Data Structures

The memory descriptor ( mm_struct ) maintains information about a process's address space (current memory it owns). One of its members is a linked list of Virtual Memory Areas (VMAs) , represented by…