Skip to content

Instantly share code, notes, and snippets.

View johnGachihi's full-sized avatar
💪
This is my kung fu, and it is strong.

John Gachihi johnGachihi

💪
This is my kung fu, and it is strong.
View GitHub Profile
@johnGachihi
johnGachihi / gist:e5a7b11596b1b5ea04c9b55e6840770e
Last active October 21, 2023 09:57
Forward stepwise using BIC
def bic_selection(candidates: set,
selected: set = None,
prev_ic: int = np.inf,
prev_ics: list = None,
ic_change_threshold: int = 0):
if prev_ics is None:
prev_ics = []
if selected is None:
selected = set()
package com.android254.droidconke19.models
import com.google.firebase.remoteconfig.FirebaseRemoteConfig
data class WifiDetailsModel(
var wifiSsid: String,
var wifiPassword: String
)