-> Installing AppLovinSDK (6.2.0)
> Http download
$ /usr/bin/curl -f -L -o /var/folders/wl/xhcccn7d6070dp98421p71nc0000gn/T/d20220929-25871-y4zqv1/file.zip https://bintray.com/applovin/iOS/download_file?file_path=applovin-ios-sdk-6.2.0.zip --create-dirs --netrc-optional --retry 2 -A 'CocoaPods/1.11.3 cocoapods-downloader/1.5.1'
[!] Error installing AppLovinSDK
[!] /usr/bin/curl -f -L -o /var/folders/wl/xhcccn7d6070dp98421p71nc0000gn/T/d20220929-25871-y4zqv1/file.zip https://bintray.com/applovin/iOS/download_file?file_path=applovin-ios-sdk-6.2.0.zip --create-dirs --netrc-optional --retry 2 -A 'CocoaPods/1.11.3 cocoapods-downloader/1.5.1'
Error output from CocoaPods:
↳
View FakeNoteDetection.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View humidity-test.c
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
#include <SparkFun_HIH4030.h> // Include header files for I2C connectivity support | |
#include <Wire.h> | |
int tempAddress = 0x48; // I2C: TMP102 Slave Address with ADD0 grounded | |
float temp = 0; // Temperature value either Static or Sensor Reading | |
int tempSensor = 0; // If you are using Temperature Sensor (0 = No / 1 = YES) |
View ErrorLog.md
View config-decoder.js
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
"use strict"; | |
function deobf() { | |
try { | |
var e = document.getElementById("in").value; | |
if ("" === e) throw "Empty"; | |
document.getElementById("out").value = ""; | |
var f = e.match(/\+CVars=([\S]+)/g); | |
if (null === f) throw "No matching parameters were found"; | |
f = f.map(function(a) { |
View CircularProgressView.swift
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 SwiftUI | |
struct CircularProgressView: View { | |
var progress = 10.0 | |
var body: some View { | |
ZStack { |
View circular-progress.kt
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
@Composable | |
fun CircularProgressBar( | |
percentage: Float, | |
radius: Dp = 80.dp, | |
animationDuration: Int = 1000, | |
) { | |
var animFinished by remember { | |
mutableStateOf(false) | |
} |
View gist:a8f2f2a7975eb76445a22b00a5367572
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 'package:flutter/material.dart'; | |
import 'package:flutter_blocks_site/pages/side_bar.dart'; | |
class HomePage extends StatefulWidget { | |
static GlobalKey<ScaffoldState> scaffoldKey = GlobalKey(); | |
const HomePage({Key? key}) : super(key: key); | |
@override | |
_HomePageState createState() => _HomePageState(); | |
} |
View sample-response.json
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
{ | |
"status": 200, | |
"message": "success", | |
"formats": [ | |
{ | |
"url":"", | |
"title" : "", | |
"resolution":"", | |
"thumbnail":"", | |
"duration":"" |
View validity-rules.js
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
function isValidNewPost() { | |
let post = request.resource.data; | |
let isOwner = post.uid request.auth.uid; | |
let isNotFromPastOrFuture = request.time == request.resource.data.timestamp; | |
let hasMandatoryFields = post.keys().hasAll(['caption', 'uid', 'timestamp', 'published']); | |
return isOwner && hasMandatoryFields && isNotFromPastorFuture; | |
} | |
View firestore-rules-role-check.js
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
function hasAnyRole(roles) { | |
return isLoggedIn() && get(/databases/$(database)/documents/users/$(request.auth.uid)).data.roles.hasAny(roles) | |
} |
NewerOlder