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 Goole Meet Transcript | |
// @namespace http://tampermonkey.net/ | |
// @version 2025-05-26 | |
// @description try to take over the world! | |
// @author You | |
// @match https://drive.google.com/* | |
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== | |
// @grant none | |
// ==/UserScript== |
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
#!/bin/bash | |
DEFAULT_PASSWORD="secret" | |
DEFAULT_CA_DN="CN=CA,OU=Infinispan,O=JBoss,L=Red Hat" | |
DEFAULT_SERVER_DN="CN=Server,OU=Infinispan,O=JBoss,L=Red Hat" | |
DEFAULT_NODE_DN="CN=Node,OU=Infinispan,O=JBoss,L=Red Hat" | |
DEFAULT_NODE_ID=node | |
DEFAULT_CLIENT_DN="CN=Client,OU=Infinispan,O=JBoss,L=Red Hat" | |
DEFAULT_CLIENT_ID=client | |
VALIDITY_DAYS=365 | |
KEY_SIZE=2048 |
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
<infinispan | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="urn:infinispan:config:15.0 https://infinispan.org/schemas/infinispan-config-15.0.xsd | |
urn:infinispan:server:15.0 https://infinispan.org/schemas/infinispan-server-15.0.xsd" | |
xmlns="urn:infinispan:config:15.0" | |
xmlns:server="urn:infinispan:server:15.0"> | |
<cache-container name="default" statistics="true"> | |
<transport cluster="${infinispan.cluster.name:cluster}" stack="${infinispan.cluster.stack:tcp}" node-name="${infinispan.node.name:}" server:security-realm="cluster"/> | |
<security> |
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
#!/bin/bash | |
DEFAULT_PASSWORD="secret" | |
DEFAULT_CA_DN="CN=CA,OU=Infinispan,O=JBoss,L=Red Hat" | |
DEFAULT_SERVER_DN="CN=Server,OU=Infinispan,O=JBoss,L=Red Hat" | |
DEFAULT_NODE_DN="CN=Node,OU=Infinispan,O=JBoss,L=Red Hat" | |
DEFAULT_NODE_ID=node | |
DEFAULT_CLIENT_DN="CN=Client,OU=Infinispan,O=JBoss,L=Red Hat" | |
DEFAULT_CLIENT_ID=client | |
VALIDITY_DAYS=365 | |
KEY_SIZE=2048 |
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
<infinispan> | |
<jgroups> | |
<stack name="xsite" extends="udp"> | |
<relay.RELAY2 site="LON" xmlns="urn:org:jgroups"/> | |
<remote-sites default-stack="tcp"> | |
<remote-site name="NYC"/> | |
</remote-sites> | |
</stack> | |
</jgroups> |
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
<infinispan> | |
<cache-container name="clustered"> | |
<!-- Use the default udp stack --> | |
<transport cluster="cluster" stack="udp"/> | |
... | |
</cache-container> | |
</infinispan> |
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
<infinispan | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="urn:infinispan:config:10.0 http://www.infinispan.org/schemas/infinispan-config-10.0.xsd | |
urn:org:jgroups http://www.jgroups.org/schema/jgroups-4.0.xsd" | |
xmlns="urn:infinispan:config:10.0" | |
xmlns:ispn="urn:infinispan:config:10.0"> | |
<jgroups> | |
<!-- Inline our own JGroups stack --> | |
<stack name="mping"> | |
<TCP bind_port="7800" port_range="30" recv_buf_size="20000000" send_buf_size="640000" |
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
<infinispan> | |
<jgroups> | |
<!-- Use the "tcp" stack but replace the discovery --> | |
<stack name="tcpgossip" extends="tcp"> | |
<MPING ispn:stack.combine="REMOVE" xmlns="urn:org:jgroups"/> | |
<TCPGOSSIP initial_hosts="${jgroups.tunnel.gossip_router_hosts:localhost[12001]}" ispn:stack.combine="INSERT_AFTER" ispn:stack.position="TCP" xmlns="urn:org:jgroups"/> | |
</stack> | |
</jgroups> | |
<cache-container name="clustered"> |
NewerOlder