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 Vinted RSS | |
// @namespace https://gist.github.com/parisni/4735282c86822b54a9c7a29980dfadd1 | |
// @author parisni | |
// @description A kind of RSS for Vinted with your personnal search | |
// @include https://www.vinted.fr/* | |
// @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js | |
// @require https://raw.githubusercontent.com/eligrey/FileSaver.js/master/dist/FileSaver.min.js | |
// @version 1.1 | |
// @grant GM_addStyle |
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 Leboncoin RSS | |
// @namespace https://gist.github.com/parisni/ece9addf65c9fb19daff6193f52c5b36 | |
// @author parisni | |
// @description A kind of RSS for LeBonCoin with your personnal search | |
// @include https://www.leboncoin.fr/recherche* | |
// @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js | |
// @require https://raw.githubusercontent.com/eligrey/FileSaver.js/master/dist/FileSaver.min.js | |
// @version 1.2 | |
// @grant GM_addStyle |
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
public class CustomHoodieSparkRecordMergert implements HoodieRecordMerger { | |
@Override | |
public Option<Pair<HoodieRecord, Schema>> merge( | |
HoodieRecord older, | |
Schema oldSchema, | |
HoodieRecord newer, | |
Schema newSchema, | |
TypedProperties props) | |
throws IOException { |
