The jury verdict awarded CalTech $837.8 million from Apple and $270.2 million from Broadcom for patent infringement. Broadcom WI-FI chips used in hundreds of millions of Apple iPhones infringed patents relating to data transmission technology. Broadcom is a major Apple supplier, deriving about a fifth of its sales from the iPhone maker in its fiscal 2019. JustContinue reading “Apple and Broadcom to pay CalTech $1.1 billion for patent infringement on CalTech’s Wi-Fi patents. Apple calls itself “merely an indirect downstream party””
Author Archives: CGeorge
Disclaimer of Information & Content:
The content of HelioNotes ‘s website and App is for information only, not advice or guarantee of outcome. Information is gathered and shared from reputable sources; however, HelioNotes is not responsible for errors or omissions in reporting or explanation. HelioNotes gives no assurance or warranty regarding the accuracy, timeliness or applicability or the content. HelioNotesContinue reading “Disclaimer of Information & Content:”
Setting Crontab on Amazon EC2 Cloud (Linux server) is not as tough as Thanos
Crontab or cron table is the list of tasks scheduled to run at regular time intervals on the system. Cron is a system daemon used to execute desired tasks (in the background) at designated times. You can use this to schedule activities, either as one-time events or as recurring tasks. This is helpful to scheduleContinue reading “Setting Crontab on Amazon EC2 Cloud (Linux server) is not as tough as Thanos”
Python in a Flask – Easiest way to deploy your app on a server – Part 1
Python is one of the most popular choices of back-end programming. It is relatively new but has enormous library support due to its wide following. Flask is a lightweight WSGI web application framework. Flask provides you with tools, libraries and technologies that allow you to rapidly build a web application. How to install Flask: Go to commandContinue reading “Python in a Flask – Easiest way to deploy your app on a server – Part 1”
List of Windows Command Prompt commands
This is a quick reference guide to help all the noobs out there to navigate through the Windows commands. A ADDUSERS Add or list users to/from a CSV file ADmodcmd Active Directory Bulk Modify ARP Address Resolution Protocol ASSOC Change file extension associations• ATTRIB Change file attributes B Continue reading “List of Windows Command Prompt commands”
Dictionary of Linux CLI commands
This is a quick reference guide to help all the noobs out there to navigate through the Linux forest. Linux Commands – A Command Description accept Accept or Reject jobs to a destination, such as a printer. access Check a user’s RWX permission for a file. aclocal GNU autoconf too aconnect ALSA sequencer connection manager.Continue reading “Dictionary of Linux CLI commands”
Joy of web scrapping using Jupyter Notebook – Part 1
This is what the original website says Jupyter notebook is “The Jupyter Notebook is an open-source web application that allows you to create and share documents that contain live code, equations, visualizations and narrative text. Uses include: data cleaning and transformation, numerical simulation, statistical modeling, data visualization, machine learning, and much more. “. So ” dataContinue reading “Joy of web scrapping using Jupyter Notebook – Part 1”
Running the same code on server and desktop – Exception/Error handling
Recently, I was bogged with a problem where I had a code running on the server which moves files after execution of the entire process from one folder into another. This created a dilemma for me if I should create the same folder paths on my desktop to keep the code running or to bearContinue reading “Running the same code on server and desktop – Exception/Error handling”
Basic file operations in Python – Move and Delete files
In this article we will show very simple examples of how to move, and delete files in Python using the built-in functions such as shutil.move(), and os.remove(). Shutil module in Python provides many functions of high-level operations on files and collections of files. It comes under Python’s standard utility modules. This module helps in automating the process ofContinue reading “Basic file operations in Python – Move and Delete files”
How to index your website on Google search engine
Gone are the days when you could easily submit your site to google via public forms. Back in 2018, Google deprecated this method of updating its search index and paved way to search console. Go to Google Search Console: https://search.google.com/search-console/welcome Enter your site name like I have entered mine in the Domain section of theContinue reading “How to index your website on Google search engine”