Skip to main content

ORICO — small things that stand out

More than once I've written about stuff made by Big Brand manufacturers so I decided to balance things out by writing about a mostly-unknown but good things. In short, if you need something small like HDD enclosure or some cable or USB hub or a dongle of some kind, check if ORICO makes it and chances are you won't be disappointed. It's usually slightly more expensive than low-end stuff from aliexpress but, in my opinion, it's usually worth it.

Disclaimer. This post is a shameless promotion of their brand although, unfortunately, nobody paid me for it or even sent me any free stuff. Guys from ORICO and not, if you read this, I'll gladly review whatever free goodies you send me :) I only do honest reviews so better make sure to send the good stuff.

At this point I own a USB hub, three different 2.5" HDD enclosures, and a precision screwdriver set from them. And probably something else I don't remember. Here are the pics:

USB hub in its natural habitat, surrounded by cables.

It's powered with external adapter and supports Battery Charge protocol. Not powerful enough for most phones, no Quick Charge or anything like, but enough for charging smaller devices. Speed is ok although I feel plugging fast external HDDs directly into laptop is somewhat better. Full USB 3.0 support, no Type-C ports but it's older than the new standard anyway. The only serious disadvantage, in my opinion is that it only has four ports, it has one unused side so it easily could've been six (and possibly one or two on top for flash drives and like, although I like to put wireless charger stand on top of it so I probably wouldn't use them). The thing is I have a TRNG, mouse RF dongle, and RJ-45 dongle permanently plugged into it, it leaves only one empty port for anything else (which is usually enough but I don't like it). I'll probably upgrade it one day to something with both Type-C and Type-A ports and RJ-45 built-in. Maybe even a full-scale docking station, with video and audio... There are all kinds of these things on the manufacturer's site but I haven't compared them properly because I don't really need anything right now anyway.

Two kinds of 2.5" HDD enclosures
The transparent one is for slim 7mm drives while black one is for "full-sized" 9.5mm. Both have good speed and Type-C connectors. Unclear how much of USB 3.1 it actually supports, I have no laptops with full 3.1 support yet. But hopefully it's future-proof enough. The third enclosure (not pictured) I have is not Type-C (it uses one of the microUSB 3.0 variants) but works ok nevertheless.

Precision screwdriver in a nice case

it's quite compact
I like that heads are screwed in instead of magnets and the case is quite failsafe, it's really hard to break it since it's soft and even losing something is complicated. Handle allows for good grip although doesn't have anything for helping with tighter screws (no hexagonal segment, no ribs, nothing) but it's rarely required for electronics anyway. I hope steel is good, so far neither T6 nor T5 head is broken (which were problematic with most of screwdrivers I had previously, I even managed to strip some of bottom case screws in my Yoga 900 because of a bad T5 driver) but we'll see.

These are just some examples, they really have lots of stuff. Anything from data cables and power banks to surge protectors to NAS. Check out their site and aliexpress store and compare their stuff to competitors if you need something. Although it's probable that not everything is sunshine and rainbows I'm yet to be disappointed. Let me know in comments about your experience if you have any of their other devices.

Popular posts from this blog

「この番組は、ご覧のスポンサーの提供でお送りします」Inference Labs

It's official, I have corporate sponsors now (which will hopefully be closer to strategic partnership soon, at least I'd like that). Thanks for the steaks and wine and equipment and all other resources for my distributed hacker team (I'm hoping for a cool demo for ETHOnline hackathon), and local Web3 meatup group I facilitate in Tbilisi (steaks and gas money for everyone participating in the ecosystem), and my Web3 community support army in training. A large bag of kudos for our general sponsor: Inference Labs! If anybody needs help onboarding into the decentralised world, reach me privately and we'll help you navigating the options, we have the expenses covered and good people for this (better points of contact are being established, things are being worked on, stay tuned). I should probably tell a few words about what we actually do at Inference Labs but things change so often I hope we're still bringing decentralized AI to the Web3 world when you read this (maybe...

New horizons

I originally started this blog with ideas of reviewing devices and services and hoping that eventually if it gets popular enough somebody starts sending me stuff to review. A lot has changed since, I stopped obsessing that much about new gadgets and got into vintage electronics, many of things that were new and interesting a few years ago are a commodity now. I thought about reviewing the phone I finally got to refreshing last year (S23 Ultra is ok upgrade for Note 8, I'm glad that new ultras will finally have flat screen again, I might upgrade next year or so just for that) but I don't really feel like it or think it would mean much for the readers. Most of my vintage electronics is at home where I haven't been for a couple years and it's not something I can currently do something about, I touched a soldering iron like once or twice this year. I might post something work-related once I get the hang of what I'm actually doing there and have some rough ideas wen dece...

Using virtualenv for more than Python projects

Sorry, it's not a complete instruction, just a thought. It occurred to me (some time ago) that Python's virtualenv is, essentially, a simplified version of system "prefix", it has bin, lib, include, and can have more stuff when needed. If you're willing to experiment (you'll probably have to set a few additional environment variables and/or build flags but that's no big deal), you can install various other tools there up until you have a complete system with its own compiler and complete set of libraries although it's much simpler to keep using system compiler and libraries only complimenting them when needed. Granted, prefixes are nothing new, people were using /opt (and their home directory) this way since the beginning of time. But with little help of virtualenv-wrapper or pyenv you can easily switch between them and isolate environments better. Binaries and stuff installed in virtualenv would override system defaults but only when venv is activat...