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 | |
| branch=$(git rev-parse --abbrev-ref HEAD) | |
| # echo "Enter the first commit hash:" | |
| # read commit1 | |
| # echo "Enter the second commit hash:" | |
| # read commit2 |
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
| @Composable | |
| private fun CuSwitch( | |
| modifier: Modifier = Modifier, | |
| checked: MutableState<Boolean> = remember { mutableStateOf(false) }, | |
| onCheckedChange: (Boolean) -> Unit = {} | |
| ) { | |
| val width = 34.dp | |
| val height = 19.dp | |
| val gapBetweenThumbAndTrackEdge = 2.dp |
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
| mysql9 mysql_native_password fix | |
| code /usr/local/etc/my.cnf | |
| ```ini | |
| [mysqld] | |
| skip-grant-tables | |
| ``` |
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
| <template> | |
| <div class="code-editor" :style="{ width, height }"> | |
| <div class="line-numbers" ref="lineNumbersRef"> | |
| <span v-for="line in lineCount" :key="line">{{ line }}</span> | |
| </div> | |
| <pre | |
| ref="editableCodeRef" | |
| contenteditable="true" | |
| @input="handleInput" | |
| @scroll="syncScroll" |
OlderNewer