Posts

Showing posts from December, 2022

How to Download a Read-only PDF shared on Google Drive

1. For Windows, click CTRL+SHIFT+J 2. Select Console and copy-paste the following code let jspdf = document.createElement( "script" );   jspdf.onload = function () {        let pdf = new jsPDF();      let elements = document.getElementsByTagName( "img" );      for ( let i in elements) {          let img = elements[i];          console.log( "add img " , img);          if (!/^blob:/.test(img.src)) {              console.log( "invalid src" );              continue ;          }          let can = document.createElement( 'canvas' );          let con = can.ge...

Using .isin() to select multiple rows in Pandas DataFrame

Image
ource:  https://stackoverflow.com/questions/12096252/use-a-list-of-values-to-select-rows-from-a-pandas-dataframe