Skip to main content

Turning humans and any object invisible

The camouflage design company based in Canada – HyperStealth Biotechnology Corp, claims to have successfully designed a material that completely hides any object by bending light. The creators also claim that the working of their technology remains a well kept secret.

On the company’s official page, they have answered several questions like why it made sense to release this news in public, and questions like could there be a commercial version of Quantum Stealth? And as claimed, the material has been declared classified by the US and Canadian military. With of all these on one hand, there is no existence of a solid proof of it’s existence on the other. Whether if it’s real or another hoax, we would probably never know.

Comments

Popular posts from this blog

What is ARP Monitor?

ARP MONITOR It’s FREE  tool like arpwatch but for Windows OS. This tool can help with ARP activity monitoring in computer networks.   It allows you to catch intruders on the network, track MAC-IP bundles, detect scans, monitor real-time ARP protocol activity in the segment, and much more. This windows software monitors ethernet activity like unix apwatch and keeps a database of ethernet/ip address pairings. new activity - This ethernet/ip address pair has been used for the first time. new station - The ethernet address has not been seen before. flip flop - The ethernet address has changed from the most recently seen address to the second most recently seen address. changed ethernet address - The host switched to a new ethernet address.  Download :   Mirror: http://www.binaryplant.com/binaryplant-arp-monitor.exe

Intel's extra-fast 3D storage comes to your desktop PC

It didn't take long for Intel's 3D  Optane storage  to reach a product you can realistically buy. The chip maker has  introduced  Optane modules designed to boost the performance of your desktop PC. They're strictly cache drives that only hold 16GB or 32GB (the server module packs 375GB), but don't let that dismay you. In theory, the combination of extremely low latency (under 10 microseconds) with solid state drive speeds (at least 900MB/s in peak sequential reads) should dramatically reduce loading times across the board. Compared to a PC with a conventional spinning hard drive, Intel claims that you should see a 28 percent overall performance boost, with storage up to 14 times faster. Common apps like the Chrome or Outlook should load five to six times faster, Intel says. And not surprisingly, Intel is making a big deal out of gaming performance. The company boasts that games can start up to 67 percent faster, and load levels up to 65 percent fa...

Create your own Audiobook from any PDF using Python

  Are you bored of reading pdfs, soft copies, books? Then here's a solution, you can convert it into an Audiobook and Listen. Let's get Started First, we need to install the necessary libraries. We require two libraries to build Audiobooks using Python. 1. PyPDF2 A Pure-Python library built as a PDF toolkit. It is capable of extracting document information splitting documents page by page merging documents page by page cropping pages merging multiple pages into a single page encrypting and decrypting PDF files and more! So open your terminal and run the following command.  pip install PyPDF2 2. Pyttsx3 pyttsx3 is a text-to-speech conversion library in Python. Unlike alternative libraries, it works offline and is compatible with both Python 2 and 3. So open your terminal and run the following command. pip install pyttsx3 Now here the code for it. import pyttsx3 import PyPDF2 book_name = open('harrypotter.pdf','rb') pdf_reader = PyPDF2.PdfFileReader(book_name) pa...