Skip to content

Instantly share code, notes, and snippets.

View dsheikherev's full-sized avatar

Denis Sheikherev dsheikherev

View GitHub Profile
@dsheikherev
dsheikherev / gist:d373da7b263e1a33813237c4527acf71
Last active June 30, 2021 08:44
Terminal hotkeys (macOS)
Find menu: Esc, Shift + /
Select all files (excluding folders): Esc, Shift + *
Select all: Esc, Shift + '+'
Insert pwd in command line: Esc, a
Insert filename in command line: Esc, Return
Select and copy text in Midnight Commander: Cmd + R (turn on selection), use mouse to select text, Cmd + C, Cmd + R (turn off selection)
@dsheikherev
dsheikherev / gradlesigning.md
Created January 25, 2022 11:50 — forked from phit/gradlesigning.md
Gradle Signing for Dummies

Setup

Windows

Download the GnuPG binary release for windows current version from the official site and install it.

Linux

Grab the latest gpg from your package manager if it's not installed already anyway ;)

@Composable
fun BugseeOverlayView(w: Int, h: Int) {
AndroidView(
modifier = Modifier.fillMaxSize(),
factory = { ctx ->
View(ctx).apply {
layoutParams = LinearLayout.LayoutParams(w, h)
println("!!!!! layout w=" + w + " h=" + h)
alpha = 0.0F
}
@dsheikherev
dsheikherev / runtime.m
Created December 10, 2022 21:02 — forked from markd2/runtime.m
Objective-C runtime metadata dumper.
#import <Foundation/Foundation.h>
#import <objc/runtime.h>
#import "typestring.h"
// clang -g -fobjc-arc -Wall -framework Foundation -o runtime typestring.m runtime.m
// Runtime reference, at least until Apple breaks the link
// http://developer.apple.com/library/ios/#documentation/Cocoa/Reference/ObjCRuntimeRef/Reference/reference.html
@dsheikherev
dsheikherev / README.md
Created January 10, 2024 15:38 — forked from IsaacXen/README.md
(Almost) Every WWDC videos download links for aria2c.