VOOZH about

URL: https://www.javacodegeeks.com/author/tomasz-nurkiewicz/page/4

⇱ Tomasz Nurkiewicz, Author at Java Code Geeks - Page 4 of 16


  • Java👁 Image
    Tomasz NurkiewiczJuly 4th, 2015
    0 163

    Writing a download server. Part IV: Implement HEAD operation (efficiently)

    HEAD is an often forgotten HTTP method (verb) that behaves just like GET, but does not return body. You use…

    Read More »
  • Core Java👁 Image
    Tomasz NurkiewiczJuly 1st, 2015
    0 177

    Writing a download server. Part III: headers: Content-length and Range

    We will explore more HTTP request and response headers this time to improve download server implementation: Content-length and Range. The…

    Read More »
  • Enterprise Java👁 java-interview-questions-answers
    Tomasz NurkiewiczJune 26th, 2015
    0 158

    Writing a download server. Part II: headers: Last-Modified, ETag and If-None-Match

    Caching on the client side is one of the foundations of World Wide Web. Server should inform client about validity…

    Read More »
  • Enterprise Java👁 java-interview-questions-answers
    Tomasz NurkiewiczJune 25th, 2015
    2 340

    Writing a download server. Part I: Always stream, never keep fully in memory

    Downloading various files (either text or binary) is a bread and butter of every enterprise application. PDF documents, attachments, media,…

    Read More »
  • Core Java👁 Image
    Tomasz NurkiewiczJune 8th, 2015
    0 164

    How LongAccumulator and DoubleAccumulator classes work?

    Two classes new in Java 8 deserve some attention: LongAccumulator and DoubleAccumulator. They are designed to accumulate (more on what…

    Read More »
  • Enterprise Java👁 spring-interview-questions-answers
    Tomasz NurkiewiczApril 24th, 2015
    0 129

    Spring: injecting lists, maps, optionals and getBeansOfType() pitfalls

    If you use Spring framework for more than a week you are probably aware of this feature. Suppose you have…

    Read More »
  • Software Development👁 Image
    Tomasz NurkiewiczApril 6th, 2015
    2 181

    Biological computer simulation of selfish genes

    TL;DR: I did a computer simulation of behavior evolution of monkeys, continue reading to see how problem was stated originally…

    Read More »
  • Core Java👁 Image
    Tomasz NurkiewiczMarch 25th, 2015
    0 1,432

    CompletableFuture can’t be interrupted

    I wrote a lot about InterruptedException and interrupting threads already. In short if you call Future.cancel() not inly given Future…

    Read More »
  • Enterprise Java👁 java-interview-questions-answers
    Tomasz NurkiewiczFebruary 28th, 2015
    0 160

    Journey to idempotency and temporal decoupling

    Idempotency in HTTP means that the same request can be performed multiple times with the same effect as if it…

    Read More »
  • First
  • ...
  • «
  • 2
  • 3
  • 4
  • 5
  • 6
  • »
  • 10
  • ...
  • Last
Back to top button
Close