nxt's place

Search


Calendar

« September 2010
MonTueWedThuFriSatSun
  
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
   
       
Today


Tag Cloud

3com acer ajax apr awt buitenkunst c++ car charva cross debug design domain drop dwr ejb fold fuse glass google gui injection ipv6 jboss jna jni linux looking microsoft native newsgroup nntp openid raxco remoting resource router rss scm software ssl subversion sun superversion svn swing travel ui web zangwerkplaats


Delicious bookmarks

Companies and OpenID

April 15, 2009 by nxt

What is wrong with OpenID, 

Well nothing actually, you can have multiple identities, sign in on several websites using that identity.  And if you don't trust a third party with your login credentials it is also very easy to setup your very own OpenID server.

Than what went wrong. well, lately several companies started to claim to support OpenID. For instance, your gmail, yahoo, hyves accounts (and soon windows live) are now OpenID identities. They all provide you with an identity but none of them allows you to another identity to sign on their sites. This completely defeats the purpose. If I wanted an identity, there are already tons of sites that will provide me one. It would be far more usefull if they would actually allow me to log in using an openid.

 

IPv6

September 15, 2008 by nxt

I decided it was time to start experimenting with IPv6.
I started with go6.net, so I created an account and installed the software for the tunnel on my linux machine.
apt-get install tspc
add the account info to the config file and you're ready to go. It worked instantly. However it was a little slow (200kB/s and ping times up to 300ms) but that is probably related to the distance between our locations.

So next I tried Hurricaine Electric which have an endpoint at the AMS-IX so that should give me better speed, or at least better ping times. They offer no custom software but instead use protocol 41. Unfortunately it seems that my linksys BEFW11S4 router doesn't let that traffic through (not even when I place my machine in the DMZ) so I looked on.

I finally ended at SixXS which also has several tunnel endpoints in the Netherlands and offer an UDP based protocol that is capable to pass through NAT.  Their software works I get very good speeds and ping times here. The only downside I could find is that you'll have to wait for a week before you can request a /48 subnet, but this should'nt be a big problem, just be patient and besides it gives you the time to figure out how you want to configure your network.
Their service works very good and I'm glad I signed up there. 

Now all I need to do is find a router that is capable of passing protocol 41 and convert my ayiya based tunnel to one that provides less overhead.

 

IE8: opt-out mime sniffing

July 22, 2008 by nxt

According to a recent blog entry on msdn  Microsoft has finally decided to fix a very annoying 'feature' of internet explorer. Mime-sniffing.

 It always irritated me that when I specified a content-type for a web page, Internet Explorer would just look at the content and say: "your wrong" and renders the page the way it thinks you intended.
If I give a html page text/plain as content-type I intend to let it show the source, not render it as html because if I wanted that I would have given it text/html as content-type.

At least in IE8 they allow us to disable the mime sniffing by appending ";authoritative=true" to the content-type header. This way it won't hurt other browsers and we are still able to provide the mime type ourselves.

 

JNA: Java Native Access

December 09, 2007 by nxt

If you use JNI to access native code you'll quickly find yourself writing some glue in c/c++ to access the native library. With JNA you can write nice clean code in Java without the need to glue your java code to the native library. This is all done by JNA.

All you need to do is define an interface that  (extends the Library interface and) exposes the methods in the library that you want to access:
import com.sun.jna.*;
// kernel32.dll uses the __stdcall calling convention
// Most C libraries will just extend com.sun.jna.Library
public interface Kernel32 extends StdCallLibrary {
// Method declarations, constant and structure definitions go here
}

Next you load the library using the following code:
Kernel32 kernel32Instance = (Kernel32)
    Native.loadLibrary("kernel32", Kernel32.class);


That's all there is to it, you can now access all methods you defined in the interface.
 Checkout the project page

 

cross domain AJAX

November 25, 2006 by nxt

Using AJAX (which implies the use of the XMLHttpRequest) has one big limitation, you can only make requests to the server from where the page was downloaded.
As an alternative you can use javascript to dynamically include other javascript files which should be generated serverside.

An example on how to call the server:

function callServer() {
 var head = document.getElementsByTagName("head").item(0);
 var myTag = document.createElement("script");
 myTag.setAttribute("type", "text/javascript");
 myTag.setAttribute("src",
  "http://example.com/application/getjs/?var1=value1");
 head.appendChild(myTag);
}

The idea is that you generate the javascript that you need by dynamically add another script tag on the page.
for an excellent example of this approach you can read this javaworld article

 

Fuse 0.1

February 11, 2006 by nxt

Fuse 0.1 has been released

A brief overview of the features in this release:
* Multiple ResourceInjector instance support
* TypeLoader property support
* Global resource syntax
* SWT support
* Fully modular architecture (/Core, /Swing, and /SWT)
* Documentation (both javadoc and TypeLoader specific)
* A brand new build system and instructions on how to use it