itag Code | Container | Content | Resolution | Bitrate | Range | VR / 3D |
---|---|---|---|---|---|---|
5 | flv | audio/video | 240p | - | - | - |
6 | flv | audio/video | 270p | - | - | - |
17 | 3gp | audio/video | 144p | - | - | - |
18 | mp4 | audio/video | 360p | - | - | - |
22 | mp4 | audio/video | 720p | - | - | - |
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
// ==UserScript== | |
// @name BJ's Coupon Clipper | |
// @namespace Violentmonkey Scripts | |
// @match https://www.bjs.com/ | |
// @grant none | |
// @version 1.0 | |
// @author @raxityo | |
// @description 3/24/2024, 11:01:30 PM | |
// ==/UserScript== |
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
/** | |
* ©️ Copyright 2022 Raxit Majithiya https://github.com/raxityo | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | |
* | |
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | |
* | |
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT O |
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
/** | |
* Execute a callback on the main scope after given delay. | |
* | |
* @param timeMillis delay in milliseconds | |
* @param callback callback to execute after the delay | |
*/ | |
fun View.lifecycleAwarePostDelayed(timeMillis: Long, callback: () -> Unit) { | |
findViewTreeLifecycleOwner()?.lifecycle?.coroutineScope?.launch(Dispatchers.Main) { | |
delay(timeMillis) | |
callback() |
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
/// Attempt to decode value or return `nil` | |
/// | |
/// Example: | |
/// ``` | |
/// struct User { | |
/// @DecodeOrNil var avatarURL: URL? // Sets it to nil if server sends an invalid URL for avatarURL. | |
/// } | |
/// ``` | |
@propertyWrapper | |
public struct DecodeOrNil<T: Codable>: Codable { |
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
import Alamofire | |
import RxAlamofire | |
import RxSwift | |
import UIKit | |
/// Extension for Observable<DataRequest> | |
extension ObservableType where Element == DataRequest { | |
/// Fetch this request and decode the decodable as given type or inferred type. | |
/// | |
/// Either `type` or inferred type must be provided for this to work. |
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
import RxCocoa | |
import RxRelay | |
import RxSwift | |
struct Node {} | |
struct Item {} | |
protocol ReduxState { | |
associatedtype Action: ReduxAction | |
func new(action: Action) -> Self |
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
import android.os.Bundle | |
import android.view.LayoutInflater | |
import android.view.ViewGroup | |
import androidx.annotation.LayoutRes | |
import androidx.databinding.DataBindingUtil | |
import androidx.databinding.ViewDataBinding | |
import androidx.fragment.app.Fragment | |
/** | |
* A helper superclass that accepts a layout with data binding enabled. |