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
@Playgirlkaybraz11
Playgirlkaybraz11 / FilesSnapshot.xml
Created July 26, 2024 23:24 — forked from choco-bot/FilesSnapshot.xml
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
@Playgirlkaybraz11
Playgirlkaybraz11 / FilesSnapshot.xml
Created July 26, 2024 23:24 — forked from choco-bot/FilesSnapshot.xml
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
--{ ./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
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/
@Playgirlkaybraz11
Playgirlkaybraz11 / playground.rs
Last active July 10, 2024 17:44 — forked from ccmmff11447722/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