This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * This class takes an Excel spreadsheet and converts it into a Guava Table format. | |
| * When other formats of the file are to be supported (like CSV, TSV etc.,) implement the apply method with that format. | |
| */ | |
| @Component | |
| public class ExcelToTableLoader implements TableGenerator<File> { | |
| private static final Logger logger = org.slf4j.LoggerFactory.getLogger(ExcelToTableLoader.class); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name SfccDocAdRemover | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author You | |
| // @include https://sfcclearning.com/* | |
| // @grant GM_addStyle | |
| // @run-at document-idle | |
| // ==/UserScript== |
OlderNewer