Skip to content

Instantly share code, notes, and snippets.

View Playgirlkaybraz11's full-sized avatar

Kaybrazy Thomas Playgirlkaybraz11

View GitHub Profile
@Playgirlkaybraz11
Playgirlkaybraz11 / Google Play Services v12.0.1
Created July 28, 2024 15:54 — forked from nighthawk24/Google Play Services v12.0.1
Google Play Services Permissions List
Google Play services
Google LLC
This app has access to:
Device & app history
retrieve running apps
read sensitive log data
Identity
@choco-bot
choco-bot / FilesSnapshot.xml
Created July 26, 2024 23:22
bfg-repo-cleaner v1.13.0.20200108 - Passed - Package Tests Results
<?xml version="1.0" encoding="utf-8"?>
<fileSnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<files>
<file path="C:\ProgramData\chocolatey\lib\bfg-repo-cleaner\bfg-repo-cleaner.nupkg" checksum="0515DA6A537B47757DCABECC6A3BA268" />
<file path="C:\ProgramData\chocolatey\lib\bfg-repo-cleaner\bfg-repo-cleaner.nuspec" checksum="F4C97675C37E8CDC7A4AFE4806BD660D" />
<file path="C:\ProgramData\chocolatey\lib\bfg-repo-cleaner\legal\LICENSE-GPLv3.txt" checksum="3C34AFDC3ADF82D2448F12715A255122" />
<file path="C:\ProgramData\chocolatey\lib\bfg-repo-cleaner\legal\LICENSE-MIT.txt" checksum="10058F9F3BBBFA9A90FA067498FA4E36" />
<file path="C:\ProgramData\chocolatey\lib\bfg-repo-cleaner\legal\LICENSE.md" checksum="62959CCBD5CD61224BD59F54D1BC9B6C" />
<file path="C:\ProgramData\chocolatey\lib\bfg-repo-cleaner\legal\VERIFICATION.txt" checksum="02E6EC0897F0DC43345D78DC6D34A79E" />
<file path="C:\ProgramData\chocolatey\lib\bfg-rep
@SakiTakamachi
SakiTakamachi / php-8.4.0alpha1.manifest
Created July 2, 2024 13:59
php-8.4.0alpha1.manifest
php-8.4.0alpha1.tar.bz2
SHA256 hash: 7b927be47651007407cb99cb3cd8316a1ffebe029ea0ebdc386e1e5caad64082
PGP signature:
-----BEGIN PGP SIGNATURE-----
iQIzBAABCAAdFiEEBhbpPZWvRxJD4mdhdwQm4X67s90FAmaEB6IACgkQdwQm4X67
s91VBQ/+IA5/NEjn+qtlGCQbT2s1vFD4UeGkvHj57TXJorqq0DsjP/bdW57ZaW4L
h9bcgCu61ZfGk8bpc9rnOBYvIDcXAIak9YlCJxZVWgoIXq9DcTwiR/3WFy7a+FVF
SKBt1TQcWLJ7GE6/D2I8GnA/JyOYQbWH46aFjALgCze1v+EXNORzhx7vGgiy0G3R
S6bobegaY/zIl/1pY3CCrdptADtGsaq9rIzm/jR1c4Wsyptad4554KDOTZ8vm6c/
-----BEGIN PGP PUBLIC KEY BLOCK-----
mQINBFw8N4EBEADDv38WWb4+IDku5NxpDGyhX9Of0/KfSCATdNVnjsa8yriNBB5B
V3U3Nu+zZQF/Yd54h2GfO+JgeMP2XIqJ26+OaWvhVCpJ6oZbHPCl1FutebSFOc+x
I2d3Ki1BYoiLtWCkdfyKQUH3+7JTV2uCQZQZ+of6l35i71sj5T59HolpmUp8ZYx/
ztNQOxJH02GEvyoK8yUDu0gPGECJ/UtCdysy+V36h/Np5XNIKdd62hh/YAeopvCg
Mf+0dr6Es72sBXWMTzyOLE/L8KJUaIjupq4TkD1sbtLHW+7ocuJ+JUZ/12ouNrNf
lVuEA8z9udkm5p0GMv+Gu24YBLCNESjIHPd2uRrNnAz5qUG8lWK1rXDqFOMimhKS
rtdoPEmIxZxLj2TN64cFCk2e7HNJRjFOTxoDgPyrdW/CRBiCWcTQ8e92ukrLVep0
6m+/U2p+HIDwZyy63t6U2m01GoF97qEaRpXOM6vUSlund3i5M6DdAAyd/AaiP3Nt
@rust-play
rust-play / playground.rs
Created January 24, 2020 16:26
Code shared from the Rust Playground
fn mock<T: Into<String>, I: IntoIterator<Item = T>>(_: I) {}
struct Merchant<'a> {
name: &'a str,
billing_portal: &'a str,
billing_period: &'a str,
stripe_id: Option<&'a str>,
}
fn merchant() -> Merchant { unimplemented!(); }
@ge0rg
ge0rg / MAM-Sub.md
Created September 19, 2019 16:43
XMPP MAM Subcsription, no need for Bind 2.0

MAM Subscription

A client wants to connect, synchronize and have a chat history without holes starting from a client-defined event.

This is the anticipated flow:

  1. connect, authenticate, bind
  2. client: fetch everything(*) from MAM
    • this can be based on a start date (e.g. last 2 days) or the last known archive ID.
  • (*) After completing this, the client will know the latest MAM-ID from that fetch (last_id), but maybe some messages arrived in between
@ccmmff11447722
ccmmff11447722 / playground.rs
Created August 7, 2019 09:01 — forked from rust-play/playground.rs
Code shared from the Rust Playground
struct Foo<T, C> where C: Fn() -> T {
make_t: C,
value: Option<T>,
}
impl<T, C> Foo<T, C> where C: Fn() -> T {
fn new(make_t: C) -> Foo<T, C> {
Foo {
make_t,
value: None
@Humbedooh
Humbedooh / asf-oauth-example.py
Created July 19, 2019 07:03
ASF Oauth Examples
#!/usr/bin/env python3
""" ASF OAuth example in Python 3"""
import cgi
import os
import requests
import urllib
import uuid
def init_oauth():
--{ ./system/system/app/BasicDreams/BasicDreams.apk
Signer #1 certificate DN: CN=Android, OU=Android, O=Google Inc., L=Mountain View, ST=California, C=US
Signer #1 certificate SHA-256 digest: c566bebb895d29ebac0667d01dbe2bae5a4aa48947a8a1de8cdf208071a78387
Signer #1 certificate SHA-1 digest: 0d5987e059aa81028dcfa77c66030b669d8ed341
Signer #1 certificate MD5 digest: 2fbc68366c72b5d09065d44a1b44f40b
--{ ./system/system/app/Bluetooth/Bluetooth.apk
Signer #1 certificate DN: CN=Android, OU=Android, O=Google Inc., L=Mountain View, ST=California, C=US
Signer #1 certificate SHA-256 digest: 3ec1c473761c98da4933abd33d6d79f9cd88a954e300a389c93503cc47b4f75e
Signer #1 certificate SHA-1 digest: b841566dc2b469f31114bb271714b5dca644fd80