This file contains 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
import java.lang.module.ModuleFinder; | |
import java.lang.module.ModuleReference; | |
import java.lang.reflect.Method; | |
import java.util.Optional; | |
public class LoadModule { | |
public static void main(String[] args) throws Exception { | |
load("java.activation"); | |
} |
This file contains 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
var removeTheConvo = function() | |
{ | |
try{ | |
$(".msg-thread__topcard-btn--icon").click(); | |
setTimeout(function(){ | |
$(".msg-topcard__full-width-action-button.delete").click(); | |
setTimeout(function(){ |
This file contains 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
git branch -l --merged | grep -v '>' | grep -v master | xargs -L1 | xargs git branch -D |