Slashdot Mirror


User: nuin

nuin's activity in the archive.

Stories
0
Comments
7
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 7

  1. Re:Is it a parody? on New Caldera Promised · · Score: 3, Informative

    The IP Address (131.188.40.90) belongs to the network of the University of Erlangen, the address resolves into fsi-server.informatik.uni-erlangen.de, hence the FSI INF (Informatik is German for Computer Science). So guys, this is most likely a joke.

    Try the following commands:

    • host openlinux.org
    • host 131.188.40.90
    • whois 131.188.40.90
  2. If you update the design on Slashdot CSS Redesign Contest Update · · Score: 1

    be sure to keep the old one as an option for conservative users :).

  3. Re:Isn't snort open source? on U.S. Investigating Sale of Snort as Security Risk · · Score: 2, Insightful

    I think the US government is concerned that the new non-American owner could silently change the source code and hide backdoors in it. Of course, America is as paranoid as usal.

  4. What if the information actually came from Google on Google Searches Used in Murder Trial? · · Score: 1

    In this case the search queries were gathered from the client's browser history which has nothing to do with Google itself and is perfectly fine imo.

    But what if the accused had a Google Personal account and the police convinced Google to hand over the search history? Would there be no privacy at all, since even deleting your browser's cache/history wouldn't delete the one on the Google servers.

  5. Re:How do you do a character literal? on Vim 6.4 Released · · Score: 1
    Or enter a macro which includes inserts I need to esc from?

    You mean qaisome txet here<ESC>bbcwtext<ESC>q? You can exec this macro via @a.

  6. Re:been seeing this a while on The Return Of The Pop-Up Ad · · Score: 1

    Of course, this is JavaScript, but please read my comment completely, because there's a too at the end.

    What I wanted to say ist that the link indeed uses JavaScript, but also will work if the browser doesn't support JS.

  7. Re:been seeing this a while on The Return Of The Pop-Up Ad · · Score: 1
    there's no answer except javascript for firing off a new window.

    That's the reason why XHTML is modularized. You can easily load the target module that adds the possibility to use the target attribute for links.

    Here is an example of a customized Doctype: http://www.juicystudio.com/tutorial/xhtml/module.a sp#target

    However, I don't recommend using the target attribute, since it breaks the browser's back button. If you really want to use popups, then design it to work without JavaScript too:

    <a href="foo.html" onclick="window.open(this.href, 'newwindow'); return false;">

    Such a link also allows you to open the link in a new window/tab manually without problems.