Metadata in PDF files can be stored in at least two places:
- the Info Dictionary, a limited set of key/value pairs
- XMP packets, which contain RDF statements expressed as XML
| // ==UserScript== | |
| // @name Remove Facebook Feeds | |
| // @version 2024-03-02 | |
| // @author Jin-Cheng Guu | |
| // @match https://www.facebook.com/* | |
| // @description Remove feeds from the Facebook main page. | |
| // ==/UserScript== | |
| (function() { |
| // ==UserScript== | |
| // @name Remove Facebook Unfollowed Content | |
| // @version 2024-03-02 | |
| // @author Jin-Cheng Guu | |
| // @match https://www.facebook.com/* | |
| // @description Remove unfollowed content from the Facebook main page. | |
| // ==/UserScript== | |
| (function() { |
| // ==UserScript== | |
| // @name Remove Instagram Unfollowed Content | |
| // @version 2024-03-02 | |
| // @author Jin-Cheng Guu | |
| // @match https://www.instagram.com/* | |
| // @description Remove unfollowed content from the instagram main page. | |
| // ==/UserScript== | |
| (function() { |
| import numpy as np | |
| # Confined to square matrices | |
| n = 5 | |
| width = n | |
| height = n | |
| dim = n*n - 1 | |
| # Lie Bracket | |
| def Lie_Bracket(A,B): |