6.1 C
New York
Wednesday, March 19, 2025
Home Blog Page 4

Dexterity launches Mech dual-armed cellular manipulator for truck loading

0


Dexterity launches Mech dual-armed cellular manipulator for truck loading

Mech can raise as much as 130 lbs (round 59 kg) – 65 lbs (29 kg) per arm – and place bins as excessive as 8 ft (2.4 m) within the air. | Supply: Dexterity

Dexterity Inc. Monday introduced the launch of Mech, an industrial cellular manipulator. Made up of two arms mounted on a rover, Mech can navigate to workstations throughout warehouses or industrial websites and carry out demanding, repetitive duties.

Redwood Metropolis, Calif.-based Dexterity engineered Mech from the bottom as much as convey larger ability and energy to industrial environments. The system leverages Dexterity’s superior Bodily AI to rapidly and simply deal with new duties.

“We’re tremendously excited to introduce Mech, our groundbreaking industrial superhumanoid designed particularly to revolutionize logistics,” mentioned Samir Menon, CEO and Founding father of Dexterity. “Mech represents a significant leap ahead in our mission to empower folks with clever, versatile robots that safely and effectively remedy complicated, labor-intensive industrial challenges. Combining human-like adaptability with superhuman energy and complex Bodily AI, Mech will essentially rework logistics operations around the globe.”

Mech is offered to Dexterity’s industrial and enterprise clients for truck loading, with new software program purposes scheduled all through 2025 to increase its capabilities additional.

Based in 2017, Dexterity mentioned it makes use of “bodily AI” to provide its full-stack methods human-like dexterity, liberating staff in logistics, warehousing, and provide chain operations from repetitive and strenuous duties. Final week, it raised $95 million, bringing its whole valuation to $1.65 billion.

The firm is not any stranger to dual-armed expertise. Its earlier robotic, DexR, is a dual-armed system for unloading bins from trailers and containers on the loading dock. The robotic makes use of machine imaginative and prescient, power sensing, and built-in movement planning to choose up a spread of things, from stiff cardboard to mushy plastic.

Dexterity emphasizes energy and suppleness with Mech

Enterprises worldwide face mounting stress to enhance effectivity whereas sustaining office security. Dexterity mentioned Mech instantly addresses these challenges by combining dexterity and intelligence to carry out duties that require complicated planning and heavy lifting. These embody loading and unloading vans, palletizing and depalletizing bins, and order choosing from low-cost racks.

Mech is able to lifting as much as 130 lbs (round 59 kg) between its two arms and inserting bins as excessive as 8 ft (2.4 m) within the air. Past its velocity and energy, Mech works natively within the demanding circumstances of brownfield industrial websites, integrating with current infrastructure and legacy automation methods.

With 4 independently steerable wheels, Mech can navigate autonomously to the place probably the most bodily demanding duties are and may instantly start lifting, loading, packing, palletizing, constructing, and extra, with the press of a button.

Dexterity’s Bodily AI runs instantly on Mech’s onboard AI supercomputer, using tons of of AI fashions to intelligently deal with a wide range of difficult eventualities—comparable to stacking random arrays of bins, coordinating its twin arms in tight areas, and delicately dealing with crushable packages by a sophisticated built-in sense of contact. Mech is additional enhanced by as much as 16 onboard cameras that assist Mech perceive what it’s choosing and decide the most effective packing technique whereas loading and palletizing—in temperatures starting from 32 to 122°F.

One affiliate can concurrently handle and monitor as much as 10 Mechs, dramatically lowering accidents related to repetitive stress and heavy lifting duties.

To additional enhance its flexibility and effectivity, Mech will be simply upgraded with new software program apps that allow it to study and carry out extra complicated duties. The preliminary software accessible at launch is a specialised truck-loading app, with extra task-specific apps deliberate for launch later this 12 months.


SITE AD for the 2025 Robotics Summit registration.
Register now so you do not miss out!


xcode – What’s the appropriate solution to create an iOS ipa on distant machine?


I have been struggling for a couple of week attempting to put in writing a Github motion that builds and uploads an iOS ipa to App Retailer Join.

I appear to be working into points when attempting create the ipa file itself. I’ve tried quite a few variations of the next workflow yml:

title: Handbook Workflow

on:
  workflow_dispatch:
    inputs:
      job:
        description: 'Choose the job to run'
        required: true
        default: 'build_and_upload_to_google_play'
        kind: selection
        choices:
          - build_and_upload_to_app_store_connect

jobs:
  build_and_upload_to_app_store_connect:
    if: ${{ github.occasion.inputs.job == 'build_and_upload_to_app_store_connect' }}
    runs-on: macos-latest

    steps:
      - title: checkout repository
        makes use of: actions/checkout@v3

      - title: Set up the Apple certificates and provisioning profile
        env:
          BUILD_CERTIFICATE_BASE64: ${{ secrets and techniques.DEVELOPMENT_CERTIFICATE_BASE64 }}
          P12_PASSWORD: ${{ secrets and techniques.P12_PASSWORD }}
          BUILD_PROVISION_PROFILE_BASE64: ${{ secrets and techniques.DEVELOPMENT_PROVISIONING_PROFILE_BASE64 }}
          KEYCHAIN_PASSWORD: ${{ secrets and techniques.KEYCHAIN_PASSWORD }}
        run: |
          # create variables
          CERTIFICATE_PATH=$RUNNER_TEMP/build_certificate.p12
          PP_PATH=$RUNNER_TEMP/build_pp.mobileprovision
          KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db

          # import certificates and provisioning profile from secrets and techniques
          echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode -o $CERTIFICATE_PATH
          echo -n "$BUILD_PROVISION_PROFILE_BASE64" | base64 --decode -o $PP_PATH

          # create non permanent keychain
          safety create-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH
          safety set-keychain-settings -lut 21600 $KEYCHAIN_PATH
          safety unlock-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH

          # import certificates to keychain
          safety import $CERTIFICATE_PATH -P "$P12_PASSWORD" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH
          safety list-keychain -d person -s $KEYCHAIN_PATH

          # apply provisioning profile
          mkdir -p ~/Library/MobileDevice/Provisioning Profiles
          cp $PP_PATH ~/Library/MobileDevice/Provisioning Profiles          

      - title: construct archive
        run: |
          xcodebuild -workspace ios/Runner.xcworkspace 
          -scheme Runner 
          -archivePath construct/ios/archive/Runner.xcarchive 
          -sdk iphoneos 
          -configuration Debug 
          -destination generic/platform=iOS 
          clear archive        

      - title: export ipa
        env:
          EXPORT_OPTIONS_PLIST: ${{ secrets and techniques.EXPORT_OPTIONS_PLIST }}
        run: |
          EXPORT_OPTS_PATH=$RUNNER_TEMP/ExportOptions.plist
          echo -n "$EXPORT_OPTIONS_PLIST" | base64 --decode -o $EXPORT_OPTS_PATH
          xcodebuild -exportArchive -archivePath $RUNNER_TEMP/Runner.xcarchive -exportOptionsPlist $EXPORT_OPTS_PATH -exportPath $RUNNER_TEMP/construct

It doesn’t matter what I do, I’m at all times seeing some variation of those error messages:

/Customers/runner/work/my-project/my-project/ios/Runner.xcodeproj: error: No Accounts: Add a brand new account in Accounts settings. (in goal 'Runner' from undertaking 'Runner')
/Customers/runner/work/my-project/my-project/ios/Runner.xcodeproj: error: No profiles for 'com.bundle.identifier' have been discovered: Xcode could not discover any iOS App Improvement provisioning profiles matching 'com.bundle.identifier'. (in goal 'Runner' from undertaking 'Runner')

I’ve tried variations of “Robotically managed signing” on and off and have the identical end result both means. When “Robotically managed signing” has been off, I had assigned a Improvement provisioning profile to the debug and profile configs, and a Distribution provisioning profile to the discharge config.

I even have my improvement and distribution provisioning profiles signed with two totally different signing certificates.

I’ve additionally tried variations of putting in each provisioning profiles and their related certificates in addition to putting in every provisioning profile and their related certificates individually.

I assume the questions I’ve are:

  1. Ought to my undertaking be utilizing “Robotically managed signing” if I wish to construct/add an ipa in a CI/CD pipeline?
  2. If the reply to 1 is “no”, am I appropriate in my assertion that the discharge construct config ought to be signed with the Distribution provisioning profile and the opposite two with the Improvement provisioning profile?
  3. Did I make a mistake in signing my Distribution and Improvement provisioning profiles with two distinct signing certificates?
  4. What’s the established strategy for constructing an iOS ipa on a distant machine? Is there something I’m doing that’s clearly flawed?

P.S.:

It is in all probability value mentioning that I’ve tried utilizing fastlane and flutter construct as a substitute of xcodebuild instantly, however have in the end run into the “No Accounts” and “No profiles” errors it doesn’t matter what I’ve tried.

Reserving.com Phishing Rip-off Targets Staff within the Hospitality Sector

0


At hotel receptionA phishing marketing campaign is impersonating journey company Reserving.com to focus on staff within the hospitality business, in response to researchers at Microsoft.

The Quantum Arms Race Isn’t Simply About Tech, It’s About Who Controls the Narrative

0


The quantum arms race is now not only a battle over expertise, it’s a battle over notion. For years, the narrative round quantum computing has been clouded by skepticism, fueled by early hype that outpaced supply. Business leaders like Jensen Huang have bolstered the concept that sensible quantum computing is a long time away. Whilst you can’t fault him for speaking about his e-book, this notion advantages corporations invested in classical computing. The fact is totally different. Quantum computing is making significant progress, and the organizations that management the narrative will dictate who reaps the financial and strategic advantages.

Framing the dialog round quantum computing requires a shift from purely technical discussions to real-world purposes. The typical government doesn’t want to grasp quantum superposition or entanglement; they should understand how quantum computing can clear up issues that classical computing can’t. That is the place messaging issues. AI confronted an identical problem till GPT fashions put their capabilities in entrance of individuals. Earlier than that, AI was an idea. Now, it’s a software. The identical transition should occur for quantum computing.

Shaping the Quantum Narrative

The largest impediment to quantum adoption isn’t the expertise itself, it’s the notion that it’s nonetheless theoretical. Early breakthroughs in quantum computing had been so thrilling that they created unrealistic expectations. When these expectations weren’t instantly met, skepticism took maintain. This isn’t distinctive to quantum computing. AI, blockchain, and even the web confronted related cycles of hype and doubt. The businesses that efficiently moved previous this skepticism did so by shifting the dialog from what the expertise is to what it does.

For quantum computing, meaning taking complicated ideas and making them tangible. Provide chain and logistics present a helpful analogy. Earlier than COVID-19, most individuals didn’t take into consideration provide chains. Then, when furnishings deliveries had been delayed by six to 9 months, the issue turned actual. As soon as the problem was defined – factories shutting down, delivery backlogs, materials shortages – individuals understood. Quantum computing wants an identical shift. As a substitute of discussing qubits and error charges, corporations must be explaining how quantum computing can optimize drug discovery, enhance monetary modeling, or improve cybersecurity.

The Geopolitical Stakes 

Quantum computing isn’t simply one other expertise, it’s a nationwide safety asset. The competitors between the US and China in quantum analysis is a trendy arms race. Whoever achieves quantum supremacy first could have a strategic benefit in encryption, intelligence, and financial management. Governments acknowledge this, which is why nationwide insurance policies and funding initiatives are accelerating. The U.S. Nationwide Quantum Initiative and China’s multi-billion-dollar investments in quantum analysis aren’t nearly scientific progress, they’re about securing dominance.

For corporations on this area, this geopolitical actuality presents each dangers and alternatives. On one hand, nationwide safety issues could result in tighter rules and restrictions on quantum analysis collaborations. Alternatively, authorities funding and strategic partnerships can present important benefits. The hot button is to stability nationwide pursuits with world collaboration. Corporations that place themselves as leaders in safe quantum purposes could have an edge in securing each authorities contracts and private-sector partnerships.

Differentiation in a Crowded Market

Quantum computing corporations face a branding drawback. Many declare to have the very best qubits, essentially the most scalable platforms, or the very best constancy. However for many patrons, these claims are meaningless. Not like conventional enterprise expertise, the place patrons can examine specs, quantum computing continues to be too complicated for many decision-makers to guage on technical benefit alone. This is the reason differentiation should transcend uncooked efficiency metrics.

Profitable corporations on this area are studying from Apple’s playbook. As a substitute of hyping its technical prowess, Apple targeted on simplicity and consumer expertise. As a substitute of main with qubit counts, QC corporations must be main with utility and drawback fixing. An organization that positions itself because the chief in quantum-powered monetary modeling or pharmaceutical analysis will stand out far a couple of that merely claims to have the very best {hardware}. Partnerships additionally play a key position. Aligning with main business gamers, whether or not in finance, healthcare, or cybersecurity, provides credibility and gives real-world proof factors.

The Expertise Drawback

The quantum computing expertise pool is small. Whereas the excellent news is that the variety of physics PhDs conferred annually is rising, estimates recommend fewer than 10,000 PhDs are actively working within the discipline, and lots of of them have been absorbed by finance and different industries. This implies corporations aren’t simply competing for purchasers; they’re competing for the individuals who will construct the way forward for quantum computing.

Attracting high expertise on this area requires extra than simply aggressive salaries. Employer branding issues. Corporations that place themselves as analysis hubs, foster collaborations with high universities, and supply clear profession development paths could have a greater likelihood of securing the very best minds. The quantum business additionally must develop its expertise pipeline. Investing in coaching packages, internships, and partnerships with educational establishments will likely be vital for long-term development.

Overcoming Adoption Obstacles

Most enterprises are quantum-curious however hesitant to speculate. The largest roadblock is ROI. Executives need to know when quantum computing will ship measurable worth, and proper now, the timeline is unclear. This mirrors the early days of AI, when corporations had been spending extra on AI improvement than they had been saving from AI-driven efficiencies. That equation is shifting for AI, and it’ll shift for quantum computing as properly.

To speed up adoption, corporations have to shift their messaging. As a substitute of specializing in how superior their expertise is, they should deal with the way it solves actual enterprise issues. A pharmaceutical firm doesn’t care about quantum error correction; it cares about discovering new drug compounds sooner. A monetary agency doesn’t want to grasp quantum algorithms; it wants higher threat modeling. The businesses that may make this connection clear would be the ones that drive early enterprise adoption.

The quantum arms race isn’t nearly who builds the very best expertise; it’s about who tells essentially the most compelling story. Quantum computing is shifting from idea to actuality, however outdated perceptions are slowing its adoption. Corporations that efficiently shift the narrative from summary science to sensible purposes will outline the way forward for this business. Governments, enterprises, and traders are paying consideration. The query is, who will form what they see?

Elecq Residence: The Future Of EV Charging Is Smarter, Safer, & Extra Environment friendly



Join every day information updates from CleanTechnica on e-mail. Or comply with us on Google Information!


As an EV proprietor, I rapidly realized that having a house charger isn’t nearly comfort — it’s about management. Public charging stations may be unreliable, costly, or just unavailable if you want them most. At house, I needed a charger that wasn’t simply quick, but additionally good sufficient to optimize vitality use, combine with my schedule, and perhaps even assist reduce down my electrical energy invoice.

That’s once I began trying into good chargers, and Elecq Residence stood out. With options like photo voltaic integration, app-based controls, and clever load balancing, it promised to be greater than only a charging station — it aimed to be an vitality administration device. However does it stay as much as the hype?

Designed For Each Surroundings: Sturdiness Meets Aesthetics

At first look, Elecq Residence strikes a steadiness between fashionable aesthetics and sensible performance. Its matte black end, clear geometric traces, and compact type create a glossy, understated look that matches seamlessly into each indoor and out of doors environments. In contrast to many cumbersome charging stations that really feel intrusive, Elecq House is designed to combine naturally into its environment, whether or not mounted on a storage wall or positioned outdoors a house.

However nice design goes past aesthetics — it’s about reliability. With an IP54 safety ranking, Elecq House is constructed to resist mud, water, and excessive temperatures, guaranteeing constant efficiency indoors or outside. Whether or not you reside in a scorching desert or a freezing local weather, Elecq Residence delivers uninterrupted charging if you want it.

Easy Set up: Get Up & Working Quicker

Putting in an EV charger could be a trouble, usually requiring complicated wiring {and professional} help. Elecq Residence simplifies the method with its Snap-in set up, decreasing setup effort and time. The charger’s versatile cable entry choices — high, backside, or rear — assist preserve a clear, clutter-free look, minimizing modifications to current electrical setups.

Dynamic Load Balancing (DLB) For Multi-EV Properties

For properties with a number of EVs, Elecq Residence introduces Dynamic Load Balancing (DLB), which robotically distributes energy throughout a number of chargers, stopping circuit overload and eliminating the necessity for costly electrical panel upgrades. That is notably useful for households planning to broaden their EV lineup, guaranteeing a future-proof charging setup.

Elecq Home EV charger
Elecq Residence EV charger

Photo voltaic-Optimized Charging: Smarter Charging, Decrease Prices

With rising electrical energy prices and extra householders adopting solar energy, an EV charger ought to do extra than simply pull vitality from the grid — it ought to optimize vitality use. Elecq Residence addresses this with its EcoCharge system, which intelligently prioritizes how vitality is used. If photo voltaic manufacturing is excessive, the charger ensures your own home’s important energy wants are met first, then directs the remaining vitality to your EV. This manner, as a substitute of counting on costly grid electrical energy throughout peak hours, you’re maximizing the free vitality already being produced in your rooftop. And for individuals who wish to push sustainability even additional, the charger can function in “Solely Photo voltaic” mode, guaranteeing your EV runs purely on renewable vitality. This degree of management means you’re not simply charging your automotive—you’re managing family vitality in a wiser, less expensive method.

Efficiency: A Charging Resolution That Adapts to You

  • Excessive Local weather Resilience: One of the speedy benefits of Elecq House is its charging pace and reliability in excessive situations. Many chargers scale back energy output in sizzling climate to stop overheating, slowing down the charging course of if you want it most. Elecq Residence, nonetheless, maintains full-rated charging energy as much as 50℃ (122℉) because of its superior thermal administration system. Even in frigid situations as little as -40℃ (-40℉), it continues to function with out efficiency loss. This makes it one of the vital climate-resilient chargers obtainable, guaranteeing your EV is able to go irrespective of the climate.
  • Seamless Connectivity & Sensible Residence Integration: Connectivity is one other robust level the place Elecq Residence outperforms normal chargers. Wi-Fi connectivity is a frequent supply of complaints in good house units, as weak alerts can result in charging interruptions or failed scheduled classes. To handle this, Elecq Residence incorporates Wi-SUN know-how, providing a 200-meter sign vary and powerful wall penetration, guaranteeing a secure connection even in garages or out of doors installations. Mixed with OTA (Over-the-Air) updates, this implies customers get steady software program enhancements with out handbook intervention.
Elecq Home EV charger
Elecq Residence EV charger

Sensible Efficiency: Quicker, Smarter, & Extra Dependable Charging

Elecq Residence additionally removes operational friction, making every day charging easy. Many good chargers require customers to open an app or authenticate by way of an RFID card earlier than charging. Elecq Residence simplifies this with Bluetooth authentication and Cellphone Key, permitting the charger to robotically acknowledge a licensed person and start charging upon plug-in—no further steps required.

For shared entry, you possibly can grant charging permissions to as much as 10 customers by way of the app or share RFID playing cards, making it simple for relations or visitors to cost with out issues.

Moreover, voice management integration with Apple Siri and Alexa lets customers begin, cease, or test charging standing hands-free, making it simple to handle with out disrupting every day routines.

Ultimate Ideas: A Smarter, Extra Dependable EV Charging Future

Elecq House is a forward-thinking vitality resolution designed for the trendy electrical car proprietor. With its quick charging speeds, sturdy security options, and superior good capabilities, it redefines what house charging may be. Its mixture of cutting-edge know-how, user-centric design, and vitality effectivity makes it a compelling selection for individuals who need the very best for his or her EVs and their properties. Able to improve your EV charging expertise? Go to Elecq Residence’s official web site or test it out on Amazon to study extra and make the swap to smarter, safer, and extra environment friendly house charging in the present day.

Whether or not you’ve solar energy or not, please full our newest solar energy survey.



Chip in just a few {dollars} a month to assist help unbiased cleantech protection that helps to speed up the cleantech revolution!


Have a tip for CleanTechnica? Need to promote? Need to counsel a visitor for our CleanTech Discuss podcast? Contact us right here.


Join our every day e-newsletter for 15 new cleantech tales a day. Or join our weekly one if every day is just too frequent.


Commercial



 


CleanTechnica makes use of affiliate hyperlinks. See our coverage right here.

CleanTechnica’s Remark Coverage