Skip to content

Instantly share code, notes, and snippets.

/**
* Created by ermolnik on 29.04.2018 15:38:12
*/
public class Main {
//matrix size
private static int size = 5;
//matrix initialization
private static int[][] n = new int[size][size];

Privacy Policy

ermolnik built the Симулятор разработчика - от школьника до Team-lead app as an Ad Supported app. This SERVICE is provided by ermolnik 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 is accessible at Симулятор разработчика - от школьника до Team-lead unless otherwise defined in this Privacy Policy.

Privacy Policy

ermolnik built the Симулятор жизни - от бомжа до миллионера app as an Ad Supported app. This SERVICE is provided by ermolnik 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 is accessible at Симулятор жизни - от бомжа до миллионера unless otherwise defined in this Privacy Policy.

Privacy Policy

ermolnik built the Симулятор жизни президента app as an Ad Supported app. This SERVICE is provided by ermolnik 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 is accessible at Симулятор жизни президента unless otherwise defined in this Privacy Policy.

Privacy Policy

ermolnik built the Кликер - симулятор жизни видеоблогера app as an Ad Supported app. This SERVICE is provided by ermolnik 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 is accessible at Кликер - симулятор жизни видеоблогера unless otherwise defined in this Privacy Policy.

/**
* Created by ermolnik on 21.11.16.
*/
public class Wall {
public static Thread wallDeketeThread;
static ArrayList<Integer> postList;
public static void PostsDelete(){
AntiSpamVK.isStop = false;
@ermolnik
ermolnik / colors.xml
Last active April 15, 2019 11:45
android colors list
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="brightRed">#E30613</color>
<color name="darkGrey">#333333</color>
<color name="pureWhite">#FFFFFF</color>
<color name="link">#138184</color>
<color name="deepBlue">#001424</color>
<color name="midnightBlue">#202D3D</color>
<color name="greyRaven">#6E7782</color>
<color name="greyChateau">#9198AO</color>
extension Constants {
enum Colors {
static let brightRed = #colorLiteral(red: 0.8901960784, green: 0.02352941176, blue: 0.07450980392, alpha: 1)
static let darkGray = #colorLiteral(red: 0.2, green: 0.2, blue: 0.2, alpha: 1)
static let pureWhite = #colorLiteral(red: 1, green: 1, blue: 1, alpha: 1)
static let link = #colorLiteral(red: 0.07450980392, green: 0.5058823529, blue: 0.5176470588, alpha: 1)
static let deepBlue = #colorLiteral(red: 0, green: 0.07843137255, blue: 0.1411764706, alpha: 1)
static let midnightBlue = #colorLiteral(red: 0.1254901961, green: 0.1764705882, blue: 0.2392156863, alpha: 1)
static let grayRaven = #colorLiteral(red: 0.431372549, green: 0.4666666667, blue: 0.5098039216, alpha: 1)
static let grayChateau = #colorLiteral(red: 0.568627451, green: 0.5960784314, blue: 0.6274509804, alpha: 1)
## Privacy Policy
ermolnik built the ДНК-Тест: Кто ты по национальности app as an Ad Supported app. This SERVICE is provided by ermolnik 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 is accessible at ДНК-Тест: Кто ты по национальности unless otherwise defined in this Privacy Policy.
class Printer {
fun printPages() {
for (i in 1..5) {
println("Printing page --- $i")
}
}
}
class SampleThread(private val threadName: String, var printer: Printer) : Thread() {
private var thread: Thread = Thread(this, threadName)