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
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.19/css/intlTelInput.css" /> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.19/js/intlTelInput.min.js"></script> | |
<script> | |
const phoneInputField = document.querySelector("#phone"); | |
const form = document.querySelector("#form"); | |
const errorMessage = document.querySelector("#client-phone-validation"); |
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
<scheme name="One Dark" version="142" parent_scheme="Darcula"> | |
<metaInfo> | |
<property name="created">2023-02-20T20:31:01</property> | |
<property name="ide">idea</property> | |
<property name="ideVersion">2022.3.2.0.0</property> | |
<property name="modified">2023-02-20T20:31:07</property> | |
<property name="originalScheme">One Dark</property> | |
</metaInfo> | |
<colors> | |
<option name="ADDED_LINES_COLOR" value="98c379" /> |
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
let FindString = "Event search string"; | |
let Events = ContainerLog | |
| where LogEntry has FindString | |
| extend json=parse_json(LogEntry) | |
| extend events=json.context.events | |
| project TimeGenerated, events, toint(totalElapsedTime=json.context.total_elapsed_time_in_milliseconds); | |
Events | |
| mv-apply event=events on ( | |
extend p=pack(tostring(event.event_name), event.elapsed_time_in_milliseconds) | |
| summarize bag=make_bag(p) |
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
.monaco-list-row { | |
font-family: "IBM Plex Mono"; | |
} |
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
# Update one commit date, so it gets processed as new | |
git commit --amend --date="now" | |
git push origin {branch} --force | |
# Check diverged commits between local and remote branch | |
git log HEAD..origin/staging |