Skip to content
View petitJAM's full-sized avatar
🤖
beep boop Androids
🤖
beep boop Androids
Block or Report

Block or report petitJAM

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Avidity Avidity Public

    Desktop GUI for managing Android virtual devices (AViDity)

    Kotlin

  2. Bookmark JS for collapsing junk iOS ... Bookmark JS for collapsing junk iOS files on GitHub PRs
    1
    /* 
    2
     * Paste the following into a new bookmark, then click it on
    3
     * a GitHub PR to mark all the yucky Pod files as viewed.
    4
     */
    5
    javascript:Array.from(document.querySelectorAll('a[title*=".xcodeproj"],a[title$=".storyboard"],a[title$=".pbxproj"],a[title^="Pods/"],a[title="Podfile.lock"]')).map(el => el.closest('.file-header').querySelector('.js-reviewed-checkbox')).forEach(function(el, i) { if (!el.checked) { el.click() } })
  3. adventofcode2017 adventofcode2017 Public

    Kotlin

  4. retrofit2-unwrapping-converter retrofit2-unwrapping-converter Public

    Retrofit converter for unwrapping JSON objects with arbitrary keys

    Kotlin

  5. NestedWebViewScrollingSwipeRefreshLa... NestedWebViewScrollingSwipeRefreshLayoutFixer.kt
    1
    /**
    2
     * The [swipeRefreshLayout] will "steal" the swipe gesture from the [nestedWebView]
    3
     * when the user tries to scroll up on the web page. This class adds a
    4
     * [ViewTreeObserver.OnScrollChangedListener] to [swipeRefreshLayout] to disable
    5
     * refreshing while [nestedWebView] is not scrolled all the way to the top.
  6. SwipeRefreshAwareWebViewClient.kt SwipeRefreshAwareWebViewClient.kt
    1
    class SwipeRefreshAwareWebViewClient(private val swipeRefreshLayout: SwipeRefreshLayout)
    2
        : WebViewClient() {
    3
    
    
    4
        override fun onReceivedHttpError(view: WebView?, request: WebResourceRequest?, errorResponse: WebResourceResponse?) {
    5
            Timber.d("errorResponse: %s", errorResponse?.data)