I dont have car yet but if I have, probably I will take a license plate like this one. It dosent need to be Java, maybe Linux, Debain or Python…
MS has a new programming language called F#. I think they like the sharp (#). C#,J#,F#..XYZ# …
F# has similarities with other open source scripting language like Pyhon, OCaml but not Open Source
MS developers not used to use these types of programming languages.At least they need a visual editor to put everything for them…
You should find some information about lovely F#
General Information
Video Part 1
Video Part 2
If you have been facing cache problems in IE, page has already changed but cannot see changes ? You should simple turn-off caching by meta tags.
<meta equiv=”Pragma” content=”no-cache”>
<meta equiv=”Expires” content=”-1″>
Sometimes it couldnt be too enough to prevent caching so you need to set it dynamically in your pages, in Java:
response.setHeader(“Cache-Control”, “no-cache”);
and in php:
header(“Cache-Control”, “no-cache”);
The first Mandriva 2007 release candidate (codename Mona) is out. The final version is due soon. 2007′s new features include Gnome 2.16 with New ‘Ia Ora’ Mandriva Theme, parallel initscript (for faster boot), 3D desktop (with both AIGLX and Xgl to support more graphic cards). Installable Live-CDs including Gnome or KDE are available in different languages, and because it is a live-cd it is possible to try it without installing. Don’t forget to report bugs if you find them, in order to get a solid final release.
JBoss is the most famous open source application server, especially ideal for business which require strong networking infra-structure.I have been dealing EJB3 with JBoss 3 months and I liked it. I was developing web applications using with php, I think, so on I’ll use Java. In this post, I’ll show a simple demo with EJB3 and Ajax.
Let’s start first build EJB3 beans.This demo gets one string from user and concats it to a “Wellcome :” message and sends it back to user screen. We need a stateless bean that implements an interface.Interfaces are necessary in EJB3 to access from outside the class(e.g. web gui).
package my.test;import javax.ejb.Stateless;
@Stateless
public class EJB3AjaxBean implements IEJB3Ajax {public String sayHello(String s) {
return “Welcome : ” + s;
}}
And our interface:
package my.test;public interface IEJB3Ajax {
public String sayHello(String s);
}
Task is simple get string and concat it and return it. Now, we need a Jsp page to access our bean to use it.
<%
IEJB3Ajax ejbDemo = null;
try {
InitialContext ctx = new InitialContext();
ejbDemo = (IEJB3Ajax) ctx.lookup(“EJB3Ajax/EJB3AjaxBean/local”);
} catch (Exception e) {
e.printStackTrace();
}
%>
<%
String s = request.getParameter(“name”);
String ss = ejbDemo.sayHello(s);
%>
To initialize our bean accessor, we have used a context lookup, “EJB3Ajax/EJB3AjaxBean/local”.At this point we use same JVM on server and GUI so local implementation used. At this point we have completed our job with EJB3. Now let’s put some javascript to make it much more interesting called Ajax.
var xmlHttp = false;
if (!xmlHttp && typeof XMLHttpRequest != ‘undefined’) {
xmlHttp = new XMLHttpRequest();
}function callServer() {
var name = document.getElementById(“name”).value;
if ((name == null) || (name == “”)) return;
// URL to connect to
var url = “EJB3Ajax.jsp?name=” + escape(name) ;
// Connection to the server
xmlHttp.open(“GET”, url, true);
xmlHttp.onreadystatechange = updatePage;
// Send the request
xmlHttp.send(null);
}function updatePage() {
if (xmlHttp.readyState == 4) {
var response = xmlHttp.responseText;
document.getElementById(“msg”).value = response;
}
}Name:
<input type=”text” name=”name” id=”name” size=”25″ onChange=”callServer();” />
Msg:
<input type=”text” name=”name” id=”msg” size=”25″ disabled />
Package is avaliable EJB3Ajax.ear
XGL is a powerfull X Server powered with OpenGL, you should need X Server to run it. It has many features. You should see some fetatures here:
[youtube=http://www.youtube.com/watch?v=Yx9FgLr9oTk]
Features:
ility in licensing.
font face="Trebuchet MS"> Higher Demand Therefore More Jobs
Uzun süredir aynı arayüze sahip web sitemi sonunda joomlaya taşımayı başardım ve hemde yeni,güzel bir arayüz ile.Eksiklerini bitiremedim ama fenada sayılmaz. Eski domaini satıl aldığım yer fiyatta değişiklik yapınca bende domaini farklı yerden almaya karar verdim ama domain transfer ücreti ile yeni bir domain alınacağı için vazgeçtim.Eski domaini tekrar başka bir yerden alabilmem için dns server havuzuna domainin bırakılması için gerekli işlemleri başlatmama rağmen hala eski domaini başka bir yerden alamıyorum.Durum bundan ibaret olunca yeni bir tane aldım; merturk.com Ziyaretlerinizi bekleriz
Ruhumu eritip de kalıpta dondurmuşlar;
Onu İstanbul diye toprağa kondurmuşlar.
İçimde tüten birşey; hava, renk, eda, iklim;
O benim, zaman, mekan aşıp geçmiş sevgilim.
Çiçeği altın yaldız, suyu telli pulludur;
Ay ve güneş ezelden iki İstanbulludur.
Denizle toprak, yalnız onda ermiş visale,
Ve kavuşmuş rüyalar, onda, onda misale.İstanbul benim canım;
Vatanım da vatanım…
İstanbul,
İstanbul……….
…….
Necip Fazıl Kısakürek
Yaklaşık 1 aydır memleketteyim, özledim İstanbul’u iyice. Bir aksilik çıkmazsa inş. 1 hafta sonra İstanbul’dayım.