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
Create a character for a fantasy roleplaying adventure, with background story, physical attributes, mental attributes and appearance. Return them in JSON like this: | |
{ | |
"name": …, | |
"background" …, | |
"physical_attributes": …, | |
"mental_attributes": …, | |
"appearance": … | |
} | |
All character values should be Strings. |
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
e4a730401 (tag: 6.0.4, origin/release/6.0.4, release/6.0.4) Fix tracking of paymentflow_launched | |
c4b1b33d9 (tag: 6.0.3, origin/release/6.0.3, release/6.0.3) CD-1048 Track new events paymentflow_launched and onboarding_complete | |
5035d8c6b Bump version for release 6.0.3 | |
fc391fb81 (tag: 6.0.2) Bump version for 6.0.2 release | |
bb378fcd5 Merge pull request #1707 from ubuntudroid/dependabot/gradle/com.appsamurai.storyly-storyly-1.27.3 | |
166d44b15 Bump storyly from 1.27.1 to 1.27.3 | |
a53d87f15 (tag: 6.0.1) Bump version for 6.0.1 release | |
85a705075 Fix lock handling in Storyly label fetching | |
... |
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
__pthread_kill 0x00000001ba63a9e8 | |
pthread_kill 0x00000001dab8d824 | |
abort 0x000000018b0cb0b4 | |
konan::abort() 0x00000001012ce774 | |
kotlin::internal::RuntimeAssertFailedPanic(bool, char const*, char const*, …) 0x00000001012ce458 | |
__Kotlin_ObjCExport_initialize_block_invoke 0x00000001012d2cb8 | |
_dispatch_client_callout 0x000000018091e198 | |
_dispatch_once_callout 0x00000001808ee7b8 | |
Kotlin_ObjCExport_initialize 0x00000001012d08b8 | |
+[KotlinBase initialize] 0x00000001010fe2fc |
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
name: Label auto-merge PRs | |
on: | |
pull_request_target: | |
types: [ auto_merge_enabled, auto_merge_disabled ] | |
jobs: | |
add_remove_labels: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: ubuntudroid/automerge-labeler@v1 |
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
// changing the color name | |
colorDao.upsert(oldColorDefinition.copy(name="better color name")) | |
// changing the color code | |
colorDao.upsert(oldColorDefinition.copy(hex="#ca9555")) | |
// changing color code and name | |
colorDao.upsert(oldColorDefinition.copy(name="better color name", hex="#ca9555")) |
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
@Insert(onConflict = OnConflictStrategy.REPLACE) | |
fun upsert(color: Color): Completable // or whatever return type you need |
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
@Entity( | |
foreignKeys = [ | |
ForeignKey( | |
entity = Color::class, | |
parentColumns = ["id"], | |
childColumns = ["color_id"], | |
onDelete = ForeignKey.CASCADE, // or any other strategy | |
onUpdate = ForeignKey.CASCADE, // or any other strategy | |
// deferred = true | |
) |
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
{ | |
"configversion": "1.7", | |
"subconfigs": { | |
"app.bitrise.io": { | |
"noiframe": "false" | |
}, | |
"www.google.com": { | |
"followpagepatterns": { | |
"next": "Next", | |
"prev": "Previous" |
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
echo "Welcome, commander!" | |
curl -s -m 1 -w '\n' https://api.github.com/zen |
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
<TextView | |
... | |
android:text="@{@string/some_string(user.name)}"/> |
NewerOlder