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 | |
| acme.sh --issue -d domain.ru -d '*.domain.ru' --dns dns_cloudns --staging --debug 2 |
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
| <!-- pass scoped slots --> | |
| <!-- bind props as a Object for reactively binding props which contains getter and setter --> | |
| <template v-for="(_, name) in $scopedSlots" v-slot:[name]="slotData"> | |
| <slot :name="name" v-bind="{props: slotData}" /> | |
| </template> | |
| <!-- pass slots --> | |
| <template v-for="(_, name) in $slots" :slot="name"> | |
| <slot :name="name"/> | |
| </template> | |
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
| URL="https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash" | |
| PROFILE="$HOME/.profile" | |
| echo "Downloading git-completion..." | |
| if ! curl "$URL" -Ls -o "$HOME/.git-completion.bash"; then | |
| echo "ERROR: Couldn't download completion script. Make sure you have a working internet connection." && exit 1 | |
| fi |
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
| export const CssTextField = styled(TextField, { | |
| shouldForwardProp: (prop) => prop !== "resize", | |
| })<{ resize?: boolean }>(({ theme, resize }) => { | |
| console.log({ resize }); | |
| return { | |
| root: { | |
| "& label.Mui-focused": { | |
| color: theme.palette.primary.light, | |
| }, |
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
| adb root | |
| adb reverse tcp:8081 tcp:8081 | |
| adb shell setprop metro.host "localhost" |
OlderNewer