Author: Luca Zanini

  • Project Euler – Problem 7

    From the Project Euler Problem 7:By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13.What is the 10001st prime number? checked used the code for problem 3.

  • Project Euler – Problem 6

    From the Project Euler Problem 6: The sum of the squares of the first ten natural numbers is, 1^2 + 2^2 + … + 10^2 = 385 The square of the sum of the first ten natural numbers is, (1 + 2 + … + 10)^2 = 55^2 = 3025 Hence the difference between the…

  • Creating a singleton in java

    In this post I explain how to create only one object of a java class, then a single instance is available in the application. An object of this type is called singleton and a starting class can be the following:

  • Project Euler – Problem 5

    From the Project Euler Problem 5: 2520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder. What is the smallest positive number that is evenly divisible by all of the numbers from 1 to 20? checked It ‘s the least common multiple of the…

  • Buttons for a form in a Custom Control

    There are standard buttons that are often added to a form that perform the basic functions (edit, save, close) that usually you put in a form. The code in this post is a Custom Control that you can add to a XPage connected to a lotus form to place the buttons Edit, Save and Close.…

  • MessageSource in Spring 3

    The MessageSource interface supports the parameterization and internationalization of messages and provides 2 implementations: ResourceBundleMessageSource, built on top of the standard ResourceBundle ReloadableResourceBundleMessageSource, being able to reload message definitions without restarting the VM The following is an example of ResourceBundleMessageSource to get messages in the specified language in Spring 3.

  • Project Euler – Problem 4

    From the Project Euler Problem 4: A palindromic number reads the same both ways. The largest palindrome made from the product of two 2-digit numbers is 9009 = 91 * 99. Find the largest palindrome made from the product of two 3-digit numbers checked

  • Device Definitions in Android SDK Tools Rev.21

    In the last release of Android SDK Tools Rev.21 I found a nice surprise: now there are some device and configurations for the emulator.

  • Saving the position of a ScrollView inside a Fragment

    I thought of writing a post about how to save the position of a ScrollView when I read the Bhavin’s comment in the post Tab Layout in Android with ActionBar and Fragment. Bhavin asked how one could restore the position of a scrollview switching between a tab and the other.

  • Exporting a lotus view to excel

    In this post I explain how to export all the documents in a view of a lotus database to an excel spreadsheet using the library Apache POI. It is a very simple example that exports the string for each column in the view for every document, but you can add other features such as the…