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
java.lang.VerifyError: Bad type on operand stack | |
Exception Details: | |
Location: | |
com/twitter/tweetview/core/QuoteView.onMeasure_Original(II)V @1883: invokevirtual | |
Reason: | |
Type 'java/lang/Object' (current frame, stack[2]) is not assignable to 'android/view/View' | |
Current Frame: | |
bci: @1883 | |
flags: { } | |
locals: { 'com/twitter/tweetview/core/QuoteView', integer, integer, 'android/text/TextPaint', integer, integer, integer, integer, integer, integer, integer, integer, 'java/lang/CharSequence', integer, integer, integer, integer, 'android/view/View', integer, top, 'android/view/View', 'java/lang/Object', integer, top, integer } |
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
# Run this script to download all of the files that were uploaded to public channels in your Team. | |
# Usage: cd my-files-dir && python download-files-from-export.py -f /Users/myusername/Downloads/export-filename.zip | |
import zipfile | |
import getopt | |
import sys | |
import re | |
import json | |
import os.path | |
import os |
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
> Task :shareddata:linkReleaseFrameworkIos FAILED | |
e: Compilation failed: null | |
* Source files: | |
* Compiler version info: Konan: 1.4.30-M1 / Kotlin: 1.4.30 | |
* Output kind: FRAMEWORK | |
e: java.lang.NullPointerException | |
at org.jetbrains.kotlin.backend.konan.optimizations.ModuleDFGBuilder$FunctionDFGBuilder.getNode(DFGBuilder.kt:614) | |
at org.jetbrains.kotlin.backend.konan.optimizations.ModuleDFGBuilder$FunctionDFGBuilder.expressionToScopedEdge(DFGBuilder.kt:591) |
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
private fun Notification.toBuilder(): NotificationCompat.Builder { | |
val builder = NotificationCompat.Builder(app, CHANNEL_ID) | |
.setSmallIcon(smallIcon.resId) | |
.setAutoCancel(flags and Notification.FLAG_AUTO_CANCEL == Notification.FLAG_AUTO_CANCEL) | |
.setCategory(category) | |
.setStyle(messagingStyle()) | |
.setContentIntent(contentIntent) | |
actions.forEach { action -> | |
val actionBuilder = NotificationCompat.Action.Builder( | |
action.icon, |
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
(00:10:54) ERROR: /root/recharge/src/server/store/BUILD:109:1: GoLink src/server/store/linux_amd64_stripped/go_default_test failed (Exit 1) | |
panic: found import cycle while visiting server/store | |
goroutine 1 [running]: | |
cmd/link/internal/ld.dfs(0xc420596780, 0xc420492dd0, 0xc420492db8) | |
/usr/local/go/src/cmd/link/internal/ld/lib.go:2280 +0x286 | |
cmd/link/internal/ld.dfs(0xc427186240, 0xc420492dd0, 0xc420492db8) | |
/usr/local/go/src/cmd/link/internal/ld/lib.go:2284 +0x10e | |
cmd/link/internal/ld.dfs(0xc422a3f680, 0xc420492dd0, 0xc420492db8) | |
/usr/local/go/src/cmd/link/internal/ld/lib.go:2284 +0x10e |
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
class LinkedHashMapAdapterFactory : Factory { | |
override fun create(type: Type, annotations: MutableSet<out Annotation>, | |
moshi: Moshi): JsonAdapter<*>? { | |
if (Types.getRawType(type) != LinkedHashMap::class.java) { | |
return null | |
} | |
if (type !is ParameterizedType) { | |
throw IllegalStateException("Non-parameterized LinkedHashMap is not supported") | |
} | |
val keyType = type.actualTypeArguments[0] |
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
class RelayPair<A, B> { | |
private val relayA = BehaviorRelay.create(null as A?) | |
private val relayB = BehaviorRelay.create(null as B?) | |
private val relayBoth = BehaviorRelay.create(Both<A, B>(null, null)) | |
data class Both<out A, out B>(val a: A?, val b: B?) | |
fun publishA(value: A?) { | |
relayA.call(value) | |
relayBoth.call(relayBoth.value.copy(a = value)) |
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
fun View.observeVisibility(): Observable<Int> = | |
Observable.create(ViewVisibilityChangeOnSubscribe(this), BackpressureMode.LATEST) | |
private class ViewVisibilityChangeOnSubscribe(private val view: View) : Action1<Emitter<Int>> { | |
override fun call(emitter: Emitter<Int>) { | |
val listener = OnGlobalLayoutListener { | |
if (view.viewTreeObserver.isAlive) { | |
emitter.onNext(view.visibility) | |
} | |
} |
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
package my.package.foo | |
/** | |
* This method is just a modification of the kotlin stdlib lazy initializer, which by default uses a | |
* synchronized block to ensure no double-running of the initializer. Synchronized blocks are not | |
* particularly fast on Android so we try to avoid them when possible: in all of our cases, the | |
* lazy property is being accessed on the main thread, so it's easier to just check that we're on | |
* the main thread as a way to ensure no double-running of the initializer. | |
*/ | |
fun <T> lazyMainThread(initializer: () -> T): Lazy<T> = LazyMainThreadImpl(initializer) |
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
extension CALayer { | |
func roundCorners(corners: UIRectCorner, radius: CGFloat) { | |
let maskPath = UIBezierPath(roundedRect: bounds, | |
byRoundingCorners: corners, | |
cornerRadii: CGSize(width: radius, height: radius)) | |
let shape = CAShapeLayer() | |
shape.path = maskPath.CGPath | |
mask = shape | |
} |
NewerOlder