Skip to content

Instantly share code, notes, and snippets.

View raxityo's full-sized avatar
👋

Raxit Majithiya raxityo

👋
View GitHub Profile
function prettyCookie() {
const cc = document.cookie.split(';').map(c => {
const [k, ...v] = c.split('=')
let vv = decodeURIComponent(v.join('='))
try {
vv = JSON.parse(vv)
} catch {}
return { [`${decodeURIComponent(k.trim())}`]: vv }
})
return Object.assign({}, ...cc)
@raxityo
raxityo / BJs_clipAllOffers.js
Last active March 1, 2025 15:26
Clip all available BJ's coupons
// ==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==
@raxityo
raxityo / redis-session-store.ts
Created July 6, 2022 16:20
An example implementation of session-less redis store that can be used with `passport-oauth1` and any strategies that depend on oauth1, such as passport-twitter
/**
* ©️ 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
/**
* 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()
@raxityo
raxityo / youtube_format_code_itag_list.md
Created July 17, 2021 22:20 — forked from sidneys/youtube_format_code_itag_list.md
YouTube video stream format codes itags

YouTube video stream format codes

Comprehensive list of YouTube format code itags

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 - - -
@raxityo
raxityo / DecodeOrNil.swift
Last active August 7, 2020 03:05
Decode the `Codable` value or set it to `nil
/// 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 {
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.
import RxCocoa
import RxRelay
import RxSwift
struct Node {}
struct Item {}
protocol ReduxState {
associatedtype Action: ReduxAction
func new(action: Action) -> Self
@raxityo
raxityo / NavigateUp.kt
Created April 30, 2020 23:51
Navigate up to the parent activity if it's declared in the manifest and start the new task if needed.
import android.app.Activity
import androidx.core.app.NavUtils
import androidx.core.app.TaskStackBuilder
/**
* Navigate up to the parent activity if it's declared in the manifest and start the new task if
* needed.
*
* @see [NavUtils.shouldUpRecreateTask]
* @receiver Activity
@raxityo
raxityo / DataBindingFragment.kt
Last active May 1, 2020 22:05
A helper superclass that accepts a layout with data binding enabled.
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.