Skip to content

Instantly share code, notes, and snippets.

View Vladlis's full-sized avatar

Vladislav Lisetskii Vladlis

  • EPAM Systems
  • Moscow, Russian Federation
View GitHub Profile
@Vladlis
Vladlis / wiki
Last active December 18, 2017 21:33
### Hello EPAMer!
This page will help you to start contributing to Checkstyle.
1. Make sure you have shared your github account with one of admins to get write access to EPAM's fork of Checkstyle (https://github.com/epam/checkstyle).
2. Please start with reading common guidelines:
- http://checkstyle.sourceforge.net/contributing.html
- don't miss http://checkstyle.sourceforge.net/beginning_development.html
- this page helps to understand the core functionality http://checkstyle.sourceforge.net/writingchecks.html
- other pages can also be useful, but are optional at the beginning
3. Get yourself an issue to work on:
@Vladlis
Vladlis / hosts
Created November 15, 2016 12:58 — forked from eyecatchup/hosts
Disable Skype ads: 1.) Add hosts to your hosts file 2.) Flush DNS resolver cache (ipconfig /flushdns)
# Block Skype ads
127.0.0.1 *.msads.net
127.0.0.1 *.msecn.net
127.0.0.1 *.rad.msn.com
127.0.0.1 a.ads2.msads.net
127.0.0.1 ac3.msn.com
127.0.0.1 ad.doubleclick.net
127.0.0.1 adnexus.net
127.0.0.1 adnxs.com
127.0.0.1 ads1.msn.com
public class A {
public static void main(String ... args) throws Exception {
String s = null;
try {
System.out.println("Block try");
throw new Exception("");
}
finally {
if (s != null) {
System.out.println("Block finally");