WTAI interface describes a format for the special links you can use on your mobile sites. E.g. a hyperlink that activates a call or adds a new entry to phone book. E.g.:
<a href="wtai://wp/mc;phone_number_is_here">Call now</a>
And here is a special taglib from Coldtags suite that simplifies the process.
Sunday, May 31, 2009
Saturday, May 30, 2009
Local twitter
A new version for Local twitter - geo interface for Twitter search. Lets you see local tweets right from the Google Map.
Friday, May 29, 2009
What is this Twitter about
A new version for Twitter info mashup. Lets you combine Google Social API and Twitter API. Just type a name for any twitter account (e.g. your follower or twitter you are following to) and get a list of URL’s associated with this account. You could be surprised sometimes.
Also you can use this mashup as a link:
http://tinfo.linkstore.ru?u=twitter_account_name
A new version lets you see also a tags cloud from the latest tweets. The usage is obvious - quickly check out what this author writes about before following him.
Also you can use this mashup as a link:
http://tinfo.linkstore.ru?u=twitter_account_name
A new version lets you see also a tags cloud from the latest tweets. The usage is obvious - quickly check out what this author writes about before following him.
Thursday, May 28, 2009
Twitter location
Twitter location mashup Twitloc has been updated. Lets you post geocoded data to Twitter right from Google Map.
Labels:
mashup
Wednesday, May 27, 2009
JSF died. Again?
As far I understand these charts JSF is still a dead wood. Interesting, how many confirmations do they (Sun or Oracle already?) need in order to admit that
Labels:
JSP
Google + Twitter
Google + Twitter search mashup has been updated. By the way, now you can preview Twitter images (twitpic, yfrog) right in the search results.
Tuesday, May 26, 2009
Moscow Twitter
It says all actually - Moscow in Twitter
Monday, May 25, 2009
Geo search
Geo search mashup has been updated. Lets you discover what Google knows about the selected location (reverse geocoding) as well as the local twitters (if any)
Sunday, May 24, 2009
Tomcat clustering
A practical guide for clustering in Tomcat
Labels:
links
Friday, May 22, 2009
Big map
Bigmap mashup has been updated. Let us try a new Google Maps Ad Unit. Looks like it works :-). The ad is really changing as soon as you change the map. The real geo-context ad.
Thursday, May 21, 2009
Social search
A new version for Twitter info mashup is ready. Lets you combine Google Social API and Twitter API. Just type a name for any twitter account (e.g. your follower or twitter you are following to) and get a list of URL’s associated with this account. You could be surprised sometimes.
Also you can use this mashup as a link:
http://tinfo.linkstore.ru?u=twitter_account_name
E.g. http://tinfo.linkstore.ru?u=t411
Additionally you can use a Social search bookmarklet. Get all the related URL's just in one click.
Also you can use this mashup as a link:
http://tinfo.linkstore.ru?u=twitter_account_name
E.g. http://tinfo.linkstore.ru?u=t411
Additionally you can use a Social search bookmarklet. Get all the related URL's just in one click.
Wednesday, May 20, 2009
Mobile sites
A new component in our JSOS - Mobile redirect filter. Lets you detect requests from mobile users and redirect (forward) them to the special site (special part of your site).
Right from JSP (and/or Coldfusion pages) you can use Mobile taglib
Right from JSP (and/or Coldfusion pages) you can use Mobile taglib
Labels:
JSOS
Tuesday, May 19, 2009
Who is your follower
More twitter mashups: Twitter info. Lets you combine Google Social API and Twitter API. Just type a name for any twitter account (e.g. your follower or twitter you are following to) and get a list of URL’s associated with this account. You could be surprised sometimes.
Also you can use this mashup as a link:
http://tinfo.linkstore.ru?u=twitter_account_name
Also you can use this mashup as a link:
http://tinfo.linkstore.ru?u=twitter_account_name
Monday, May 18, 2009
Carnival of the mobilist
The latest Carnival of the mobilist mentioned our innovative SMS with attachment application.
Labels:
mashup,
telecom 2.0
Saturday, May 16, 2009
End of sockets
An interesting article about network programming - how the concept of sockets becomes obsolete
Labels:
links
Thursday, May 14, 2009
Buy vs. Sell
Yet anoter Twitter mashup: Buy vs. Sell. In the generic form you can use Tweet vs. Tweet mashup
Labels:
mashup
Wednesday, May 13, 2009
SMS attachments
Our old idea – SMS with attachment. Share local media files from your phone by SMS. The main idea here is deploy the standard SMS client from your phone – so there is no need to open some accounts, connect to the some service, use premium numbers etc. for both parties. Sender will send an ordinary SMS right to the target phone. And recipient will get an ordinary SMS too. Just with the enclosed file.
All you need is just an internet connection on your phone (what is pretty standard nowadays). You can checkout mobile application SMS with attachments here:
http://sms.linkstore.ru
Or use QR code above for copying that link right to your phone.
Labels:
mashup
Eurovision twitter
Twitter mashup - Eurovision. Check out the latest Eurovision related tweets and pictures in the real time.
Labels:
mashup
Monday, May 11, 2009
Client side info
Obtain and proceed client side information in your server side code with this taglib. You can get the following parameters:
time - describes a local time
timeZone - describes a local timezone offset
java - describes an availability for Java
javaScript - describes an availability for JavaScript
browser - describes a name for client's browser
version - describes a version for client's browser
width - describes a width for client's screen
height - describes a height for client's screen
depth - describes a color (pixel) depth for client's screen
flash - flash enabled/disabled (1/0)
time - describes a local time
timeZone - describes a local timezone offset
java - describes an availability for Java
javaScript - describes an availability for JavaScript
browser - describes a name for client's browser
version - describes a version for client's browser
width - describes a width for client's screen
height - describes a height for client's screen
depth - describes a color (pixel) depth for client's screen
flash - flash enabled/disabled (1/0)
Saturday, May 09, 2009
Time Zone
The following component from Coldtags suite lets you obtain the user's time zone based on the geographic location - Time Zone taglib. The source date here are latitude and longitude.
And of course, you can combine this taglib with Google geocode (or Yahoo geocode) component. Both of them let you obtain geo location by the given address.
And of course, you can combine this taglib with Google geocode (or Yahoo geocode) component. Both of them let you obtain geo location by the given address.
Friday, May 08, 2009
Search trends
Search mashup Got (Google Blogs + Twitter search) lets you compare search trends too (via Google Trends gadget)
Labels:
mashup
Thursday, May 07, 2009
Number of processors
Small Java code - how to get number of processors:
int noOfProcessors = 0;
try
{
Runtime rt = Runtime.getRuntime();
Class rtClass = rt.getClass();
java.lang.reflect.Method availProcessorsMethod = rtClass.getMethod("availableProcessors", null);
noOfProcessors = ((Integer)availProcessorsMethod.invoke(rt, null)).intValue();
}
catch (Exception ex)
{
// probably old JDK
}
int noOfProcessors = 0;
try
{
Runtime rt = Runtime.getRuntime();
Class rtClass = rt.getClass();
java.lang.reflect.Method availProcessorsMethod = rtClass.getMethod("availableProcessors", null);
noOfProcessors = ((Integer)availProcessorsMethod.invoke(rt, null)).intValue();
}
catch (Exception ex)
{
// probably old JDK
}
Labels:
Coldtags
Wednesday, May 06, 2009
QR code on practice
The practical usage for QR code servlet (see here) - a small service lets you present QR code for any link. The usage is:
http://linkstore.ru/servlet/qr?your_site
for example:
http://linkstore.ru/servlet/qr?http://servletsuite.com
P.S. and here you can find QR code maker for the content (used the same set of components)
Saturday, May 02, 2009
Custom list box
Add images to your list box
Labels:
JSP
Subscribe to:
Posts (Atom)