Skip to content

Instantly share code, notes, and snippets.

View GuyKh's full-sized avatar
🤘
Rock on

Guy Khmelnitsky GuyKh

🤘
Rock on
View GitHub Profile
@GuyKh
GuyKh / renovate.json
Created September 24, 2024 08:04
renovate.json for Home Assistant Custom Components Repositories
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"packageRules": [
{
"matchDatasources": ["pypi"],
"matchPackageNames": ["homeassistant"],
"enabled": false
@GuyKh
GuyKh / decompile_apk.txt
Last active November 28, 2023 13:32 — forked from ichux/steps.txt
Decompiling .apk files
# install decompiler
brew install dex2jar; brew install jadx; brew install apktool; brew cask install jd-gui
Forum:= https://groups.google.com/forum/#!forum/android-platform
Config:= java -Xmx512m
Download from:= https://bitbucket.org/mstrobel/procyon/downloads/
USING apktool
1. apktool d sample_app.apk -o apktool_sample_app
@GuyKh
GuyKh / MyHeritage Names Research to Profile link.user.js
Last active February 1, 2024 08:11
MyHeritage Names Research to Profile link
@GuyKh
GuyKh / hebrewDate.py
Last active December 20, 2021 13:44
HebrewDate to GregorianDate
#!/usr/bin/env python3
import sys
from hebrew_numbers import gematria_to_int
from pyluach import dates
def main(args):
print (args)
if len(args) != 3: