ocrmypdf usage flags / command options

Personally, for my english PDF files I run the command ocrmypdf –tesseract-timeout 600 –rotate-pages –deskew –pdf-renderer tesseract –output-type pdf -l eng –clean –skip-text input.pdf output.pdf This ensures we aren’t un-necessairly running OCR on text pages while OCR-ing any non-text pages and cleaning up the pdf file. confidence too low to rotate add the flag rotate-pages-threshold … Read more

Taiwan Wireless Licensing Documents Confirm Pixel 3 Wireless Charging

These certification documents from the National Communications Commission of Taiwan indicate the Google Pixel 3 and Pixel 3 XL will indeed have wireless charging: The documents also indicate some of the manufacturer details of the accessories: Charger (TC G1000-US) manufactured by Flexronics or Phihong Lithium Battery (G013A-B / G013C-B) manufactured by Desay or Sunwoda USB … Read more

Verification methods used: Unknown [Google Search Console]

If you purchased a domain via domains.google, you can add it to your Google Webmaster Tools / Search Console without performing any further verification (no Google Analytics / DNS / HTML file required). It makes adding domains and subdomains to WMT / GSC super easy, but it also comes with a confusing “Unknown” domain verification … Read more

PocketServer LOG PS-3-913

The PocketServer is a Rasberry-Pi Based server manufactured by Raspberry Pi Trading Ltd and marketed and sold by Seba Dynatronic Mess- und Ortungstechnik GmbH. It is electrically identical to the RasberryPi Model 3 B, however, it has different software geared towards making this device a “Server”.

Using pandas.DataFrame.to_sql to UPDATE/REPLACE data

It’s pretty simple. You’ll have to first create a temporary table that matches your destination table. Then, use the pandads dataframe to replace the data in the temporary table with your new data (if_exists=’replace’). dataframe.to_sql(‘mydatatable_temp’, conn, if_exists=’replace’, index=False) From there you will use this little bit of SQL to update your destination data table with … Read more

Drivers for SLAB_USBtoUART

The SLAB_USBtoUART is a USB to Serial device. SLAB is short for SILABS, the chip inside of this device. Drivers: Linux 2.6.x: linux_2-6-x_vcp_driver_source Linux 3.x.x: linux_3-x-x_vcp_driver_source Windows CE 6.0: vcp_wince60 Windows CE 5.0: vcp_wince50 Macintosh OSX (v4): mac_osx_vcp_driver (confirmed to work with macOS Sierra) Windows 2K Server Download VCP (4.79 MB): cp210x_vcp_win2k-exe Windows XP/Server 2003/Vista/7/8/8.1 Download VCP (3.66 MB): cp210x_vcp_windows Windows 7/8/8.1/10 Download VCP … Read more

Push your pages to Baidu by adding this code

Baidu has a little snippet of code that will send a request to their server with the current page url in order to promote new page indexing <script> (function(){ var bp = document.createElement(‘script’); bp.src = ‘//push.zhanzhang.baidu.com/push.js’; var s = document.getElementsByTagName(“script”)[0]; s.parentNode.insertBefore(bp, s); })(); </script> Adding the above code to your site will cause a request … Read more