Skip to content

Instantly share code, notes, and snippets.

Privacy Policy

Daddy Developer built the Krabus app as a Free app. This SERVICE is provided by Daddy Developer at no cost and is intended for use as is.

This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.

If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which are accessible at Krabus unless otherwise defined in this Privacy Policy.

@kirmartuk
kirmartuk / top10.png
Last active November 7, 2023 12:49
top10
âPNG

IHDR?°•ß<bKGDˇˇˇ†ΩßìÀIDATHâÕñoh’U«?ÁfiªÊÓEÁtÓN(MsÕ]ùñEV‰4䬿7AD1¢ ¢""ÚÖÅÇÎÖ’õg1¨åA- B JÑ»∆Rî6‘∞lÆ≠ª{~ª˚s˜Ì≈Ωªø?ª€Ó¶+8pûÛ˝ûÁœyûfl˘∏NE)™Â°DtFÆà…≤Wñ”b’å¸4∑ r‰⁄D:"áÕ≤Hñsd]Aéà»≤Sñ?r\…rECl-»†BM≤ ÀÚ„¸fp"á«Û 9$ÂÑOÒ†,û§Ω#≠çyÆ{Hylç¸ÁY+„¨ƒ‰Êb!â,
> ∂M≥ªCãj'q8‘˘¢€fi˚ˇã,ÔœœüÁ\y%©‰ eaíî—k È<.B@±á+c¨›<◊ÿäí]LÒÕ-J±AGeÈ-Äè rF/Êæ±∂Yÿötñ≥A^À!®|™_ó];q =ˆ(Zq*)…‚%%(^ÖyΩˇÓ/‡3E|6…ó%]$˜Ñ,_^UÚ… ¸ãO—3ç(…&hı*Ù˙.Wün‹}ºÏÛ7(aåö\è4˜xbh∆–¿8OaXÓ·∂¢
ëD$0º
ƒ={œw‰Ê#àÁ|Ÿ^nœii£,o:I%az'Ùçõ°„¨ˇpVÆÄfl~)´óï¡Œß!±ÆÙ¡G†˚Wóø˚5ÿø'Ø∂õXfiwŒ©eøØ"ij‘À¬@•~ ≤Ïp∫<sßø-X˘\∑úì√EØ≠∑flDª^A’q∑öÀ´˝’m⁄ÁÔ¶ûN
π¯÷->¸3Ä‚.º·¿ ÿ$é\os˘ì¨Íæ? {dæ˚^~!;?˛-¸yπ∞Òä≈~}ÈàD`d$´[Î㨠äLfiT0 KpcnÈ>•xá≠d¯á0Îo¯6≨”≥ÉQ¥}≈[øtÚPŒd‹y4Ë›◊UÀ‡ŒMŸ∂o:Ë&PÔ}#äãì|O’ˆ9ÏŸ¢/0áÛ≤õm€OHgÕ⁄—Övø›ƒZ∑ç7›ñΩÕô·≤ç¢üÚÿ‰~ÄP¡
„0‚I†{⁄(Üè…–d¶·M+kn!^[µ5˛uoÂ√a¯ºˆÓÜx’1x`ú˙÷'<@$[y_cjà-d∏◊ı∆aSŒfl>é0§®#L±C„ÙóÊ¥YJ@ñÌ¿Í‹∂Q£Ÿg«èèôá<X;∞1òLr–=ı1XVÈbù]–s ˙˙†¥ ¡ÜzX\>ÈLÜâ5ÜÒÎÚy+À09Ïk#ÁMå¿
@Composable
fun MaterialButtonToggleGroup(
modifier: Modifier,
items: List<String>,
selectedItemIndex: Int,
cornerRadius: Dp = 8.dp,
borderWidth: Dp = 1.dp,
setSelectedIndex: (Int) -> Unit
) {
val selectedIndex = remember { mutableStateOf(selectedItemIndex) }
@kirmartuk
kirmartuk / SingleChoiceDialog.kt
Last active January 8, 2022 08:23
[Jetpack Compose] Android dialog for choosing one option of list. Use material3(You) https://m3.material.io/
@Composable
fun SingleChoiceDialog(
title: String,
radioOptions: List<String>,
indexOfDefault: Int,
isDialogVisible: (Boolean) -> Unit,
setSelectedItem: (String) -> Unit
) {
val (selectedItemIndex, setSelectedItemIndex) = remember {
mutableStateOf(indexOfDefault)
@kirmartuk
kirmartuk / adb_wifi_script.cmd
Last active April 27, 2021 12:31
Simple cmd script for conencting adb via wifi (Windows)
set port=%1
:: Change ip address, which you can see on your android phone in adb settings. Now using a simple ip
C:\Users\<UserName>\AppData\Local\Android\Sdk\platform-tools\adb.exe connect 192.168.0.3:%port%
@kirmartuk
kirmartuk / BluetoothRepositiry.kt
Created December 27, 2020 11:21
Bluetooth Repository for Android (Kotlin)
/**
* Simple Bluetooth repository for android on kotlin
*
* @author Kirill Martyuk
* @version 1.0
*/
class BluetoothRepository(private val context: Context) {
/**
* Get current connected bluetooth devices
@kirmartuk
kirmartuk / DownloadResult
Last active October 15, 2020 10:57
Android(Kotlin) VideoRepository
//Sealed class for showing result in progressBar, mainThread
sealed class DownloadResult {
object Success : DownloadResult()
data class Error(val message: String) : DownloadResult()
data class Progress(val progress: Int) : DownloadResult()
}
from googletrans import Translator
from pathlib import Path
original_code = open(".../res/values/strings.xml", "r")
# locals ex. 'en', 'ru', 'es'
locals = open(".../locals.txt", "r")
translator = Translator()
code = ''
for line in original_code.readlines():
/**
* Utils which helps work with ip
* generate own ip
* convert ip to tiny url
* convert tiny url to ip
* change ip form
*/
public class Utils {
// Key for encrypt && decrypt decimal ip to tiny url
static String key = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
import java.io.BufferedReader;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.IOException;
import java.net.URL;
import java.nio.channels.Channels;
import java.nio.channels.ReadableByteChannel;
public class sample {