Always remain updated about current software development trends

Articles having tag: BLOGS

String Searching Algorithms (Part III)

Boyer-Moore (BM) Overview According to Wikipedia, the Boyer-Moore algorithm "is an efficient string searching algorithm that is the standard benchmark for practical string search literature. It was developed by Robert S. Boyer and J Strother Moore...

A little details about the implementation of Fast Messenger in JavaScript

606 | 0Fast Messenger in JavaScript can forward messages for your objects and functions within the main UI thread, one or multiple web workers, or even between UI thread and web workers. This way your JavaScript programs are promoted to be multi-threaded in...

Fast Messenger Lite is available in JavaScript

| 0Fast Messenger Lite is available in JavaScript. This post lists links to three demos. The first demonstrates how to use active object in a regular html page. The second shows how active objects in UI and Web worker thread communicate. The third demo has...

Session stickiness with Apache,mod_proxy and Glassfish

4858 | 0Loadbalancers can set thier cookies indicating which backend server can serve a user's requests and direct future requests to the same server. I was experimenting with session stickiness using apache, mod_proxy and Glassfish and here is a short summary...

Fast Messenger Lite is released in Java and C#

| 0FM Lite is a specially tailored subset of FM that aims to complete with threads and multithreading. Lite is the code name for version 1.3.X where the current X is 74. The third fragment of the version number refers to the SVN revision number on which it...

Server Sent Events Sample with Glassfish

| 22Introduction Server-Sent Events (SSE) is a standard describing how servers can initiate data transmission towards clients once an initial client connection has been established. It is commonly used to send message updates or continuous data streams to...

String Searching Algorithms (Part I)

String searching algorithm (SSA) According to Wikipedia, string searching algorithms are "an important class of string algorithms that try to find a place where one or several strings (also called patterns) are found within a larger string or text". Some...

My new blog on java.net

| 0Hello there! I'm Alessandro Gentile and this is my brand new blog on java.net. I must say, I'm honored to be part of this community. Two months ago I joined the GlassFish project and I began to write tutorials. There are several reasons for my choice and...

Executing Groovy Programs in-memory

| 0Now that we've gone over someGroovybasics, it's time to switch back to writing in the Java language, and talk about how to run Groovy programs inside your Java programs. \xa0Like most general purpose programming languages, there's more than one way to do...

A quick introduction to the Groovy language (part 2)

| 0In myprevious post, I started with a simple Java program (which also worked in Groovy), and slowly stripped out the cruft until I was left with the following Groovy script: def sayHello(name) {    println("Hello $name!")}def name...