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
version: "2" | |
services: | |
nginx: | |
image: nginx:latest | |
restart: always | |
ports: | |
- "80:80" | |
- "443:443" | |
- "8080:8080" | |
volumes: |
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
setInterval(function () { | |
document.getElementById('portal-editor-input').textContent = "Надеюсь успел нажать к закрытию чата"; | |
$(".btn-submit").trigger("click"); | |
}, 60000*3); |
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
81 EmptyRegionDiagnostic | |
85 NonStandardRegionDiagnostic | |
115 DuplicateRegionDiagnostic | |
211 CompilationDirectiveLostDiagnostic | |
349 SpaceAtStartCommentDiagnostic | |
515 CanonicalSpellingKeywordsDiagnostic | |
529 CompilationDirectiveNeedLessDiagnostic | |
625 NumberOfParamsDiagnostic | |
629 ThisObjectAssignDiagnostic | |
645 UnknownPreprocessorSymbolDiagnostic |
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 org.apache.kafka.clients.producer.KafkaProducer; | |
import org.apache.kafka.clients.producer.ProducerConfig; | |
import org.apache.kafka.clients.producer.ProducerRecord; | |
import org.apache.kafka.common.Metric; | |
import org.apache.kafka.common.MetricName; | |
import java.util.Map; | |
import java.util.Properties; | |
import java.util.WeakHashMap; | |
import java.util.concurrent.ConcurrentLinkedQueue; |
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
javascript: (function () { | |
var n = prompt("Name"); | |
n = n + ":"; | |
$("ul.messages li").each(function( index ) { | |
if( $( this ).find( "span:first" ).text() == n){ | |
$( this ).remove(); | |
} | |
});})(); |