GetUSB.info Logo

Google’s DeepMind AI VS. the Go World Champion

It’s over 2500 years old and the rules are deceptively simple, but Go is an incredibly complex game. The rules are simpler than those of chess, but a player typically has a much more vast choice of moves. The game is played with white and black stones and the aim is to capture territory as well as your opponent’s pieces. Stones can be captured by surrounding them but the control of the board is a much more complicated matter which is why a true competitive AI has been rather difficult to create. In a landmark victory against the European champion in October it was proven that the efforts of the DeepMind team and subsequently Google’s efforts on the AlphaGo project had found success in what had been thought impossible since the early years of computing.

GW20160130985-1024x768

By first studying the patterns repeated in various games, AlphaGo will play different versions of itself millions of times during a single match and learn incrementally. Learning from its mistakes is what makes the AI truly remarkable and what led its developers to take their months of improvements since beating the European champion, to the next level. As of today, AlphaGo has secured its second win against world champion Go master Lee Sedol in a 5-game match worth 1 million US dollars. The games are being played with a 2 hour set time limit for each player followed by three 60 second overtime periods as well as the standard Chinese ruleset.

The magnitude of this achievement opens many doors to advanced functionality of artificial intelligence. The emerging truth is machines can learn real world tasks in much the same way they learn to make moves in a game. This opens new paths of scientific research while augmenting existing industries where machines can learn to identify promising areas of research and help humans in the right direction. Whether it’s fields with a sheer overload of data needing to be sifted through such as biology or security, or more subjective fields such as arts and language. As stated many times in AlphaGo’s 7 matches thus far, regardless of which player wins, it is a victory for humanity.

Game 3 between Lee Sedol and AlphaGo is set to take place tonight, March 11th, at 8:00 PST Watch Here

Source: Deep Mind

Continue Reading

Quick Tips for Faster Wi-Fi

Slow internet connections can turn the most innocent web browsing session into an absolute struggle to maintain sanity but luckily there are a variety of steps available to increase speeds once again.

First up, ethernet cables. Ironically the best Wi-Fi tip is to not use your Wi-Fi connection, but rather a wired connection to ensure stability by reducing interference. Plugging an ethernet cable from your machine to a router will ensure connection integrity and having a connection that doesn’t drop out can be particularly helpful for videos and game console activity.

Second, all to often, routers are stuffed in a closet in some far corner of the house. Getting it out in the open and as high as possible will create a larger and more consistent coverage area. Additionally, keep as few walls as possible between the router and the usual location of frequently used devices.

Third, if you’re running 802.11n, you might want to try connecting via 802.11g instead. Throughput speeds can potentially double but it does usually depend on other ISP variables and especially upon what other wireless sources are overlapping signals with the router.

993bdbf331c53410e822da8787a7932c

It’s not always necessary to buy a new router to speed up your Wi-Fi, but if a router is more than a couple years old, an upgrade may provide some benefits. And if you own new gear that has 802.11ac built in, it’s definitely time to upgrade your router. Best of all, some of the least expensive 802.11ac routers out there deliver excellent performance.

Continue Reading

A Breath of Fresh…

Helium?

The gas most commonly associated with balloons and chipmunk voices has recently seen use in Western Digital’s hardware. The memory provider unveiled a new set of their helium-filled drives this week, aimed at personal and small business use. While some of their sizing options are above and beyond what many users would care for, bringing these kinds of options beyond just server use can be a step in an uplifting direction.

wd_red_nas_hdd_678_1_678x452

Just like their predecessors, the new hard drives come with SATA III interfaces. With a density one-seventh that of air, helium filled hardware reduces the drag force acting on the spinning stack and lowers fluid forces affecting the disks, enabling thinner platters in larger numbers. The family of WD’s hermetically-sealed hard drives will include 8TB options with 5400RPM or 7200RPM spindle speeds and looks to be optimized for mixed workloads. While the only helium platforms available are for NAS drives, the use of the gas leads to speculation that Western Digital is working on more inexpensive helium-filled platforms. Hopefully, this will lead to helium adaptations of their high-performance HDDs currently on the market for desktop use.

Continue Reading

Morse Code Beacon via USB Board

For those into home-brew programming projects, its easy to make a microcontroller spit out some Morse code with the post shown below. What makes [pavlin’s] take on this project interesting is that it resides on a tiny USB board with an ARM processor. The design for the board is available with single-sided artwork suitable for production using simple methods like toner transfer.

The STM device has a built-in USB bootloader. It can also act as a serial port, which makes the project very simple and a bit more flexible. The only external parts are a speaker and an opt-oisolator.

The program provides a command line interface over the serial port that you can use to program the message and set other options like speed and the delay between messages.

Continue Reading

AirBar – Make Any Laptop Touchscreen

The Airbar will turn any Windows laptop into a touch screen. Very cool. The technology is friendly with Windows 8 and 10 and this is because it uses Microsoft’s “Gestures” technology to turn your laptop into a touchscreen laptop.

The Airbar was designed in Sweden and made in Sweden. The bar is $50 US Dollars.

The Airbar works by invisible light beams. To get it working you connect is via USB and set the bar at the bottom of your laptop screen, just like you see in the picture.

The Airbar will project light upward. As your fingers break the barrier of the projected light, the bar will translate this into gestures. Through the Windows API for gestures your actions will translate to the programs running.

Continue Reading

Why is my USB write protected?

Why is my USB write protected? (Updated for Windows 11 Fixes)

USB write protected means the USB cannot be written to. But why does this happen? There can be several reasons, ranging from a corrupted flash drive to software settings in Windows that lock the device.

Originally posted in 2015, this article is now updated for modern systems, including Windows 10 and Windows 11, which introduce additional security layers that can cause USB write protection issues.

Hardware or Device Failure

It’s easy to damage a USB stick. A common cause is sending multiple write threads to the device at the same time. For example, copying large files while issuing another write command may corrupt the controller, leaving it permanently locked.

Windows Registry and Security Settings

Windows can mark a USB drive as write-protected due to policy settings or errors. Here’s how to remove this restriction on Windows 10 and Windows 11:

  • Press Win + R, type regedit, and press Enter.
  • Navigate to: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\StorageDevicePolicies
  • If WriteProtect exists, double-click it and set the value to 0. If it doesn’t exist, create a new DWORD (32-bit) entry named WriteProtect and set it to 0.
  • Restart your PC and reconnect the USB drive.

Using Diskpart Command (Windows 11)

Windows 11 offers an advanced command-line tool to clear write protection:

diskpart
list disk
select disk #
attributes disk clear readonly
exit

Replace # with your USB drive number.

Windows Security – Ransomware Protection

Windows 11’s Controlled Folder Access can block external writes. Disable or adjust this setting via: Settings > Privacy & Security > Windows Security > Virus & threat protection > Ransomware protection.

File System Repair

If the drive is corrupted, run:

chkdsk E: /f
(replace E: with your USB letter). This may fix read/write errors without losing data.

Manufacturer Tools

Brands like SanDisk, Kingston, or Nexcopy provide utilities to reset a locked USB device or reformat at a controller level.

Conclusion

Write protection errors are often recoverable and not always caused by hardware failure. With the new features in Windows 11, additional troubleshooting steps may be required before discarding a drive.


FAQ

Q: How do I remove USB write protection in Windows 11?
A: Use Registry Editor, Diskpart, or adjust Ransomware Protection settings to allow writes.

Q: Does Windows Defender block USB writes?
A: Yes, in some cases Controlled Folder Access can block external USB writes. Adjust settings to resolve this.

Continue Reading

Sony files patent for a glove-like controller

With the advent of Virtual Reality consoles upon us, now is as good a time as any for accessories which can be used in tandem with the technological leap. Electronics giant Sony has recently filed for a trio of patents and they look to be taking VR to an interesting new place.

The trio of patents are for a new glove-based controller system which centers around a finger-tracking flex sensor, a separate contact sensor that registers when the user touches a physical object, and a communications module that sends this data to a VR headset where it is incorporated into the simulated experience.

psvr

The patent filing describes the system as “a trackable object that is configured to be illuminated during interactivity with at least one inertial sensor for generating inertial sensor data”. Reminiscent of the Move Motion “wand” revealed in 2009 and released for the PS3, the glove appears to be more dexterous and its collaborative capabilities have the potential to make gesture actions or motions applicable far beyond the world of gaming.

An important note to make in the nature of patents is there is no guarantee a product of this nature will ever see the light of day. Between cost, time, and how well it would actually work, Sony may choose to simply hold the patent and work on other projects but it does suggest they are at least considering wearable computing in the future.

Source: Sony

Continue Reading

Create your own Custom USB Flash Drive Logos

Create your own Custom USB Flash Drive Logos is a great method to build your brand, make a great impression and leave a lasting positive vibe with your clients.

Branding products isn’t a new concept in today’s marketing world, but Nexcopy has made it a lot more accessible to brand one of the most versatile pieces of technology in the industry. With the new USB7P full color inkjet printer, anyone can bring their designs or images to life on their flash drives. Below is a video illustrating the product with its features and benefits.

For more information about customizing this video for our reseller channel, please contact Nexcopy directly.

Source: Nexcopy Inc.

Create your own Custom USB Flash Drive Logos Twitter promotion
Create your own Custom USB Flash Drive Logos Facebook promotion

We recently published an article featuring 60 incredible custom USB flash drive designs that range from miniature cars to footballs and represent industries as diverse as material handling, construction, medical, and environmental services. A custom-shaped USB flash drive is more than just portable storage—it’s a unique, physical representation of your brand

By transforming a company logo or product into a functional USB drive, businesses create a marketing tool that not only stands out but also makes a lasting impression on their target audience. For example, a construction company once commissioned a USB drive molded in the exact shape of one of their heavy-duty excavators. This creative giveaway left potential clients with a practical device that doubled as a memorable conversation starter, reinforcing brand recognition long after the initial meeting

Marketing professionals continue to choose custom logo USB flash drives because they offer a tangible, engaging, and highly effective way to drive home their brand message.

Continue Reading

Energizing How We Charge Our Phones

At trade shows around the world, StoreDot is showing off the Samsung Galaxy S6 with a modified battery and charging port which enabled the device to charge from 10% to 100% in 5 minutes and 25 seconds. This solution isn’t simply faster, the physics within the battery is a new generation of lithium ion batteries which sets it apart from companies pursuing similar avenues to solve the battery inconvenience.

Possibly one of the most impressive features is how the charger manages heat. At Nexcopy we manage temperatures between each piece of our products to keep them safe and durable throughout their use, so we can appreciate some solid thermal decorum when we see it. These new batteries will make sure your phone is never hot to the touch during or after a charging session and it does so with modifications to the connector itself. This however, means there isn’t simply a wire between the phone and the charger but rather a solid, wall-mounted charger unit.

Wall Mounted Charging

What does this means for the industry? Well the technology is alive and well to make our charge times negligible. The delay will be in the coordination needed to make the improvement. There has to be a suitable connection port to enable the top speed charging, and a StoreDot 150W charger is required to reach these speeds. Most notably, Samsung has invested alongside other interested parties so eliminating the wait time of charging could be a thing of the past in the next generation of our smartphones.

Source: StoreDot

Continue Reading

Sony Branded USB Turntable

CES, 2016. Sony releases a USB turntable, named HX500. Sony will provide backup- software for the Mac and PC and it connects via USB. From there, you can send the DSD (Direct Stream Digital) copies to your computer or device. Of course Sony would prefer you to play them back on their Hi-Res-playing Sony Walkmans.

The DSD audio is a lossless audio quality that will sound more full and rich than your downloaded MP3 file. Andy why not, vinyl records have been making a big comeback the last couple of years.

Continue Reading

StarTech USB 3.0 & 4K DisplayPort Dock Station

The USB 3.0 / 4K display and dock station is ideal for the Bring Your Own Device work environment (BYOD).

Assuming you have a limited port laptop computer the StarTech dock station can expand your laptop screen and extend out to a 4K video feed needed. It doesn’t stop there with USB 3.0 port connectivity, and Ethernet connection.

The front side of the dock station also includes a USB charging port. You can avoid the inconvenience of a dead battery and make sure your mobile device is always ready to go, using the dock’s USB fast-charge and sync port. Plus, the always-on port supports device charging even when your laptop isn’t connected to the dock.

The dock station can act as a charging station unplugged as well, making it a very portable solution. A good fit for this product would be home-office where the work space is not that large, or class room where the budget isn’t there for a complete work station and a BYOD situation best applies.

Continue Reading

Question Format a USB Flash Drive as exFAT or NTFS?

USB Flash Drive format exFAT vs NTFS, sketch of USB

It’s a good question; format a USB flash drive as exFAT or NTFS? There are several reasons not to format as NTFS and we’ll explain.

Most of the Time you are Okay

Most of the time, formatting a flash drive is a very simple decision. There are only two situations where you should carefully consider what format to use. Here are the details:

Note: This article is focused on Windows and Mac operating systems.

The file formats available for a USB flash drive are:

  • FAT (also called FAT16)
  • FAT32
  • exFAT
  • NTFS
  • HFS (Mac only)

Flash drive manufacturers typically format a drive as either FAT or FAT32. Any device of 2GB or smaller will be formatted as FAT, and any USB over 2GB will be formatted as FAT32.

Question Format a USB Flash Drive as exFAT or NTFS - image example

These two formats are the best file systems for removable drives like USB flash drives because they support quick disconnect functionality. Chances are very slim that you will destroy the device or files if you unplug the USB without using the Eject function (in Windows) or the Un-mount function (in Mac).

The one huge limitation with FAT and FAT32 is the single file size limit. If a single file is larger than 2GB, you need FAT32. If you have a single file bigger than 4GB, you must use NTFS or exFAT. Typically, these large files are video files or restore image files (for restoring a computer operating system from a single image file).

Continue Reading

Copyright

Copyright © 2006 +

USB Powered Gadgets and more...

All Rights Reserved

Advertise with us

GetUSB Advertising

This is a high value website providing great exposure to your product and brand. Visit our advertising page to learn specifics.

For more information
Visit our advertising page.

Nexcopy Ad

Nexcopy Provides

USB copy protection with digital rights management for data loaded on USB flash drives.

Contact us learn more

Resources and References Page

Resources and References Page