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
あなたはDroidKaigiの採択を行う担当です | |
以下のプロポーザルを読んで採択したくなるかどうか検討してください | |
より魅力的なプロポーザルにするためにできることを教えてください | |
辛口でフィードバックしてください | |
<proposal> | |
## title | |
... | |
## 受講対象者 |
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
data class CustomListItem( | |
override val group: Group = Group(""), | |
override val subGroup: SubGroup = SubGroup(""), | |
val title: String = "", | |
val description: String = "", | |
) : Item( | |
group, | |
subGroup | |
) |
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
#!/usr/bin/env bash | |
set -e | |
assignee="{{githubのユーザー名}}" | |
# @type {number: number, title: string}[] | |
issueJson=$(gh issue list --assignee "$assignee" --json title --json number) | |
issueList=$(echo "$issueJson" | dasel -r json -w - 'all().mapOf(issue,join( ,number,title)).all()') | |
# @type number | |
selectedIssueNumber=$(echo "$issueList" | gum choose | awk '{print $1}') |
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 | |
fun MyCenterAlignedTopAppBar( | |
title: @Composable () -> Unit, | |
modifier: Modifier = Modifier, | |
navigationIcon: @Composable () -> Unit = {}, | |
actions: @Composable () -> Unit = {} | |
) { | |
Layout( | |
modifier = modifier, | |
content = { |
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
#!/usr/bin/env bash | |
set -e | |
function fuzzy-stash() { | |
stash_files=$(git status -s | fzf -m | awk '{print $2}') | |
if [ -z "$stash_files" ] | |
then | |
command echo "ファイルが選択されていません" | |
return 1 |