aleksz-programming.blogspot.com aleksz-programming.blogspot.com

aleksz-programming.blogspot.com

General programming blog

Sunday, August 9, 2015. This is the story about consequences of eliminating checked exceptions in Groovy. All observations made on relatively big project, around 60 developers. Observation 1 - catch them all :). In some cases it was Exception, in some Throwable (like you can recover from OutOfMemory). As a result, non-recoverable exceptions are often treated as recoverable and otherwise. They are logged with same level and escape bug tracking system. Observation 2 - invent complex return types. Sometimes...

http://aleksz-programming.blogspot.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR ALEKSZ-PROGRAMMING.BLOGSPOT.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

December

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Friday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 4.0 out of 5 with 4 reviews
5 star
2
4 star
0
3 star
2
2 star
0
1 star
0

Hey there! Start your review of aleksz-programming.blogspot.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.3 seconds

FAVICON PREVIEW

  • aleksz-programming.blogspot.com

    16x16

  • aleksz-programming.blogspot.com

    32x32

  • aleksz-programming.blogspot.com

    64x64

  • aleksz-programming.blogspot.com

    128x128

CONTACTS AT ALEKSZ-PROGRAMMING.BLOGSPOT.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
General programming blog | aleksz-programming.blogspot.com Reviews
<META>
DESCRIPTION
Sunday, August 9, 2015. This is the story about consequences of eliminating checked exceptions in Groovy. All observations made on relatively big project, around 60 developers. Observation 1 - catch them all :). In some cases it was Exception, in some Throwable (like you can recover from OutOfMemory). As a result, non-recoverable exceptions are often treated as recoverable and otherwise. They are logged with same level and escape bug tracking system. Observation 2 - invent complex return types. Sometimes...
<META>
KEYWORDS
1 general programming blog
2 hidden exceptions
3 posted by
4 aleksandr zhuikov
5 no comments
6 email this
7 blogthis
8 share to twitter
9 share to facebook
10 share to pinterest
CONTENT
Page content here
KEYWORDS ON
PAGE
general programming blog,hidden exceptions,posted by,aleksandr zhuikov,no comments,email this,blogthis,share to twitter,share to facebook,share to pinterest,labels checked,exception,groovy,hidden,sucks,throw,transaction,debugging jenkins,1 comment,hack
SERVER
GSE
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

General programming blog | aleksz-programming.blogspot.com Reviews

https://aleksz-programming.blogspot.com

Sunday, August 9, 2015. This is the story about consequences of eliminating checked exceptions in Groovy. All observations made on relatively big project, around 60 developers. Observation 1 - catch them all :). In some cases it was Exception, in some Throwable (like you can recover from OutOfMemory). As a result, non-recoverable exceptions are often treated as recoverable and otherwise. They are logged with same level and escape bug tracking system. Observation 2 - invent complex return types. Sometimes...

INTERNAL PAGES

aleksz-programming.blogspot.com aleksz-programming.blogspot.com
1

General programming blog: August 2015

http://www.aleksz-programming.blogspot.com/2015_08_01_archive.html

Friday, August 28, 2015. Handling multi line files in Logstash. Logstash is a nice tool for processing your logs. Love it for its flexibility and variety of work flows, but this variety has downsides. Probably at some point those issues will be resolved, but until then, following setup can boost performance of your Logstash. Integration tests in SpringBoot without external dependencies. Target - test all layers of SpringBoot REST application in isolation from external components. A) Use spring-test suppo...

2

General programming blog: Restricting system resource access in JUnit tests - SecurityManager

http://www.aleksz-programming.blogspot.com/2014/02/restricting-system-resource-access-in.html

Thursday, February 13, 2014. Restricting system resource access in JUnit tests - SecurityManager. JUnit is not the best framework for integration tests, but it definitely is the most popular one. Today I'm going to describe one weird integration test, where you have to make sure that code under test does not write anything to file system o O. Which library can require such test? This solution uses JUnit rules for better portability across tests. General idea is that you configure SecurityManager befo...

3

General programming blog: Jackson @Unwrapped with type information

http://www.aleksz-programming.blogspot.com/2014/04/jackson-unwrapped-with-type-information.html

Wednesday, April 30, 2014. Jackson @Unwrapped with type information. If you are reading this, then it is highly possible that you know that currently Jackson @Unwrapped does not play nice with type information. Actually, in my case the issue was only with serialization. Jackson did recognize my type information, embedded as @type property while deserializing. On serialization it produced something like {:{"a":1} . But I wanted {"@type":"myType", "a":1}. July 15, 2014 at 8:57 PM. And the open issue:.

4

General programming blog: Some code just kills your day...

http://www.aleksz-programming.blogspot.com/2014/01/some-code-just-kills-your-day.html

Monday, January 27, 2014. Some code just kills your day. January 30, 2014 at 1:02 PM. Пишут такое выпускники, небось? January 30, 2014 at 8:53 PM. Конкретный автор неизвестен, но зато сама библиотека и фирма выпустившая это чудо в Эстонии очень известна. Имён называть не буду, но укажу на строчку 199. Subscribe to: Post Comments (Atom). Some code just kills your day. View my complete profile. Simple template. Powered by Blogger.

5

General programming blog: October 2014

http://www.aleksz-programming.blogspot.com/2014_10_01_archive.html

Wednesday, October 1, 2014. Sometimes Jenkins does go crazy. Luckily, there is a nice tool to understand what's happening - Script Console. It's available on https:/ ${jenkins}/script and allows you to execute Groovy scripts on running Jenkins. Here is an example of script that I used to debug issue with one plugin, just to give a sense of how far you can go:. Subscribe to: Posts (Atom). View my complete profile. Simple template. Powered by Blogger.

UPGRADE TO PREMIUM TO VIEW 14 MORE

TOTAL PAGES IN THIS WEBSITE

19

LINKS TO THIS WEBSITE

svenfila.wordpress.com svenfila.wordpress.com

Script output redirection controlled from within a script | Sven's Blog

https://svenfila.wordpress.com/2012/10/05/script-output-redirection-controlled-from-within-a-script

HAI, CAN HAS STDIO? October 5, 2012. Script output redirection controlled from within a script. It’s trivial to send an output of a script to a file in bash:. But what if you want to control this redirection from within the script? It can actually be done in a really simple way as well. Here is a sample script that sends it’s own output to a file:. Bin/bash outfile=log # Send stdout to a file exec 1 $outfile echo This line is printed to stdout. Now this script can be executed simply as:. A more exciting ...

svenfila.wordpress.com svenfila.wordpress.com

Spring MVC Test, and content negotiation and AJAX | Sven's Blog

https://svenfila.wordpress.com/2013/05/27/spring-mvc-test-and-content-negotiation-and-ajax

HAI, CAN HAS STDIO? May 27, 2013. Spring MVC Test, and content negotiation and AJAX. In recent projects we have used a combination of Spring MVC framework. And AJAX calls using jQuery. For automated testing of all them, we have used Spring MVC Test framework. The setup is quite typical. Here is the simplistic version of an MVC request mapping:. For requests that expect HTML response, and plain JSON for requests that expect JSON response. Header set to value. AjaxSetup({ dataType : 'json' });. We can test...

svenfila.wordpress.com svenfila.wordpress.com

Optimising Sql.firstRow() in Groovy | Sven's Blog

https://svenfila.wordpress.com/2013/12/22/optimising-sql-firstrow-in-groovy

HAI, CAN HAS STDIO? December 22, 2013. Optimising Sql.firstRow() in Groovy. Returns the first row in the result set received from the database. Internally it invokes. And takes the first element from the resulting list of rows. In production code that works just fine — the consumer should construct the SQL statements so that only minimum amount of rows is selected from the database. In test code things may not be so straightforward however. Def row = sql.firstRow('select * from my large table'). Class Sq...

svenfila.wordpress.com svenfila.wordpress.com

Spring MVC Test Support with an open HTTP session | Sven's Blog

https://svenfila.wordpress.com/2012/07/10/spring-mvc-test-support-with-an-open-http-session

HAI, CAN HAS STDIO? July 10, 2012. Spring MVC Test Support with an open HTTP session. Spring MVC Test Support. Is a neat way to test Spring MVC controllers. It is easy to use and has a fluent interface. It also runs fast, being comparable to plain old unit tests rather than integration tests based on, say, Selenium WebDriver. Recently there was the first milestone of. To the wild, with plans to integrate it to the main Spring Test Support in version 3.2. That is used by. The base class for tests creates ...

svenfila.wordpress.com svenfila.wordpress.com

Running Java applications in a VMware virtual machine | Sven's Blog

https://svenfila.wordpress.com/2013/03/15/running-java-applications-in-a-vmware-virtual-machine

HAI, CAN HAS STDIO? March 15, 2013. Running Java applications in a VMware virtual machine. When setting up a virtual server for running Java applications, such as a web app, it is essential to avoid some virtualisation specific pitfalls. However, JVM is very sensitive to memory overcommitment because JVM heap space is in active use constantly. Therefore VMware ballooning has to be avoided for virtual machines running JVM processes (see here. And memory limit (. That it is using a ridiculous amount memory...

svenfila.wordpress.com svenfila.wordpress.com

RestTemplate with custom HTTP headers | Sven's Blog

https://svenfila.wordpress.com/2012/01/05/resttemplate-with-custom-http-headers

HAI, CAN HAS STDIO? January 5, 2012. RestTemplate with custom HTTP headers. Provides simple ways to make requests to RESTful services. When you want to set additional HTTP headers to such requests, then a tiny bit of more work is needed. Starting from Spring Framework version 3.0.2 it is possible to utilise. Class An example of querying a PDF file from a server:. Private static final String APPLICATION PDF = application/pdf; RestTemplate restTemplate = new RestTemplate(); @Test public void acceptHeaderUs...

svenfila.wordpress.com svenfila.wordpress.com

Sven Filatov | Sven's Blog

https://svenfila.wordpress.com/author/svenfila

HAI, CAN HAS STDIO? December 22, 2013. Optimising Sql.firstRow() in Groovy. Returns the first row in the result set received from the database. Internally it invokes. And takes the first element from the resulting list of rows. In production code that works just fine — the consumer should construct the SQL statements so that only minimum amount of rows is selected from the database. In test code things may not be so straightforward however. Continue reading →. May 27, 2013. And AJAX calls using jQuery.

UPGRADE TO PREMIUM TO VIEW 1 MORE

TOTAL LINKS TO THIS WEBSITE

8

OTHER SITES

aleksyuk.com aleksyuk.com

Untitled

Thanks for looking for Uliana Alexyuk on the web. Please note the spelling on her name while we redirect you to her site, Alexyuk.com.

aleksyuk.livejournal.com aleksyuk.livejournal.com

Aleksey Aleksyuk

Upgrade to paid account! March 28th, 2011. Моя сестра захотела купить себе читалку, после походов по магазинам, изучения разных сайтов, она остановилась на NOOK by Barnes and Noble. Первые шаги к дебрикингу. После этого эксперименты были снова приостановлены чтобы собрать нормальный JTAG, потому как без RST сигнала я запарился бегать к Нуку (который чуть ли не висел на проводе, из-за ограничения длины) чтобы его перезагрузить, вынув батарею и кабель. По-началу я подумал что он зависает, но вот и второй с...

aleksyv.skyrock.com aleksyv.skyrock.com

aleksyv's blog - ==> welcome to... mon sky <== - Skyrock.com

Welcome to. mon sky =. Bijour tt le monde. voila mon sky (et moi qui avait horreur de ca). J'mapell alexis g 13ans j'abite ds un coin de l'ain a la limite de macon(bourgogne). j'espere que ca vs plaira. il ya ici tt ce que j'aime et voila. bonnne visite et laissez d com'! 07/05/2006 at 5:53 AM. 23/06/2006 at 6:21 AM. Championnat L1 Vainqueur en : 2002,. Histoire Olympique lyonnais L'Olympique. Subscribe to my blog! Ce club restera a jamais g ravé ds les annales! Posted on Friday, 23 June 2006 at 6:22 AM.

aleksywasiluk.info aleksywasiluk.info

Aleksy Wasiluk

Aleksy Wasiluk urodził się w 1944 roku w Kleszczelach. Obecnie mieszka w Bielsku Podlaskim. Tu przez wiele lat pracował w piekarni, gdzie zaczął wypiekać ciasto artystyczne na wystawy sklepowe w PSS. 2008 Białystok- Nagroda w XV Wojewódzkim Przeglądzie Amatorskiej Twórczości Plastycznej pt. "Spuścizna Ojców" - Organizator: Wojewódzki Ośrodek Animacji Kultury w Białymstoku.

aleksz-java.blogspot.com aleksz-java.blogspot.com

My Java blog

Saturday, March 31, 2012. Confluence 3.x and com.atlassian.confluence.content.render.xhtml. Comatlassian.confluence.content.render.xhtml is a package from Confluence 4, responsible for rendering new XHTML macro. If you compile your plugin for Confluence 4 and your plugin has xhtml-macro/ , then you will get an import of com.atlassian.confluence.content.render.xhtml in your MANIFEST.MF. Something like this:. Comatlassian.confluence.content.render.xhtml;version="0.0". Friday, March 30, 2012. The only examp...

aleksz-programming.blogspot.com aleksz-programming.blogspot.com

General programming blog

Sunday, August 9, 2015. This is the story about consequences of eliminating checked exceptions in Groovy. All observations made on relatively big project, around 60 developers. Observation 1 - catch them all :). In some cases it was Exception, in some Throwable (like you can recover from OutOfMemory). As a result, non-recoverable exceptions are often treated as recoverable and otherwise. They are logged with same level and escape bug tracking system. Observation 2 - invent complex return types. Sometimes...

aleksz.bandcamp.com aleksz.bandcamp.com

Music | Aleksz

Musician, singer, songwriter, bass player based in Switzerland. Id like to touch the hearts of my audience. Switch to mobile view.

aleksz.com aleksz.com

Aleksz | love * peace * music

Love * peace * music. Scorfish Music mit neuer Website. Mein Music Label Scorfish Music. Hat ab sofort eine neue Website. Ich benütze Bandcamp. Dafür und bin mit dem Dienst super zufrieden. Dieser Beitrag wurde unter News. Groove Stuff – Fiktive CD-Cover. Wie klingen Bilder für euch? Hört ihr den Song, wenn ihr das Cover sieht, den Namen der Interpreten und den Album-Titel liest? Hört ihr mit den Augen und wenn ja, was genau hört ihr? Alle Fotos: Aleksz. Präsi auf iPad mit Keystone erstellt. I'm musician...

aleksz22.deviantart.com aleksz22.deviantart.com

Aleksz22 (Ala) - DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) " class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ". Join DeviantArt for FREE. Forgot Password or Username? Deviant for 7 Years. This deviant's full pageview. Last Visit: 6 days ago. This is the place where you can personalize your profile! By moving, adding and personalizing widgets. We've split the page into zones!

alekszafamily.blogspot.com alekszafamily.blogspot.com

The Aleksza Family

This blog is about the Aleksza family: Stephen, Darlene and Katherine. Saturday, October 18, 2014. Disney Cruise Line - Disney Fantasy - Trip Report - Part 3 - Ports and Shore Excursions. This post is about our shore excursions. These were our ports-of-call. We have been to Cozumel several times. We selected a Disney Port Adventure to. Destination Website - Playa Mia. Disney Cruise Port Adventure - Cozumel Beach Break. We RECOMMEND this excursion. We had a great time. The facilities are very nice...There...

alekszan.ru alekszan.ru

Главная

Советы по поиску работы. Резюме портала "Работа в России". Портал Работа в России. Задачи и функции ЦЗН. Рынок труда района по состоянию на 1.03.2017 г. Уровень безраб. - 0,44. Кол-во вакансий - 165. Будущие мамы Новооскольского района узнали, на какую помощь могут рассчитывать от службы занятости населения Белгородской области. Акция Будь в курсе! Агропромышленный холдинг Мираторг пригласил на работу шебекинцев и граждан Украины, вынуждено покинувших территорию своей страны. В Шебекинском районе 2 октяб...