Skip to content

Instantly share code, notes, and snippets.

@bumblemeow
bumblemeow / UnsafePointer Converter.swift
Created March 1, 2024 05:31 — forked from codelynx/UnsafePointer Converter.swift
[swift] Unsafe Pointer conversion
//
// Swift UnsafePointer converter
// Kaz Yoshikawa
//
// These code demonstrates how to convert swift pointers to the other forms of pointers.
//
// Source:
// Swift の Array やら ArraySlice やらポインタの変換まとめ
// https://qiita.com/Satachito/items/4c39c9b06304e4d86660
//
@bumblemeow
bumblemeow / AdbCommands
Created May 25, 2023 12:00 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader