Notice: Trying to access array offset on value of type null in /var/www/colorilla/data/www/httpstatuscodes.info/users/boot.php on line 88
oated sunucusunun yanıtını ve yönlendirmelerini kontrol edin

Sunucu yanıtını kontrol edin

Sunucu yanıtı
NS kayıtları
Whois alanı
Yanıt başlıkları
İstek başlıkları
Ham HTML kodu
200 OK - oated.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Server: nginx
Date: Thu, 22 May 2025 01:21:10 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: keep-alive

HTTP Kodu 200 OK

200 durum kodu, standart bir başarılı HTTP sunucu yanıtıdır. Bu, istemcinin isteğinin (örneğin, bir tarayıcıdan) başarıyla işlendiği ve sunucunun istenen verileri ilettiği anlamına gelir.

Kod 200 ne zaman kullanılır?

  • Bir web sayfası yüklenirken
  • Bir API yanıtı başarıyla alındığında
  • Bir form veya başka bir HTTP isteği işlenirken

Kod 200 kullanıcı için ne anlama gelir?

Kullanıcı içeriği hatasız alır ve sayfa veya uygulama düzgün çalışır. Kod 200'e veri eşlik ediyorsa, tarayıcı veya program bunu işler ve kullanıcıya görüntüler.

GET / HTTP/1.1
Host: oated.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>
    <title>BackwardCompatible.net</title>
    <meta http-equiv="content-type" content="text/html;charset=utf-8" />
    <meta name="viewport" content="width=550px">
    <meta name="description" content="Rants and tips about software">
    <meta name="author" content="Milan Babuskov">
    <style>
    pre { background-color: #f2c90f; padding: 10px; width: 95%; overflow: auto;
        color: #222 }
    body { background-color: #595959; color: #f2570f; margin: 0px; padding: 0px }
    .post { background-color: white; color: black; margin: 2em 0; padding: 1em;
        border-top: 20px solid #a73b0a;
        -moz-box-shadow: 3px 3px 3px #300; }
    p { font-family: Sans-serif; font-size: 10pt;}
    li { font-family: Sans-serif; font-size: 9pt; color: #200 }
    .beli { font-family: Sans-serif; font-size: 9pt; color: white }
    .ayellow { font-family: Sans-serif; font-size: 9pt; color: yellow; text-decoration: underline }
    .abeli { font-family: Sans-serif; font-size: 9pt; color: white; text-decoration: underline }
    .abeli:hover { color: red; text-decoration: none }
    h1 { font-size: 18pt; font-weight: normal; text-shadow: 1px 1px silver;
        margin-top: 0px; font-family: Serif;}
    h2 { font-size: 12pt; font-weight: bold; }
    .ah { text-decoration: none; color: black }
    .ah:hover { text-decoration: underline }
    blockquote { border-left: 1px solid #a73b0a; padding-left: 0.5em;
        margin-left: 1em; font-size: 10pt }
    </style>
</head>

<body><center><div style="background-color: silver; margin: 0px; padding: 20px; border-bottom: 2px solid black">
        <a title="Home" href="/"><img border="0"
            src="images/bclogo.png" alt="drawkcaB | Backward Compatible logo"><br></a>
        <p style="color: #610000; margin-top: 1px; margin-bottom: 0px"><i>rants and tips about software</i></p>
</div>

        <div style="width:35em;
            text-align: left; padding: 0.5em 0">

        <div class="post">
            <a class="ah" title="static link" href="183-geany-document-tab-size-font"><h1>Document tab size in Geany</a></h1>
            <p>I have been using Geany for years to edit code. Mostly for
        JavaScript and PHP and lately for Lua. It gives great productivity
        as you can search code with a shortcut. It searches for function
        definitions, but you can also search for any text. And you can
        click results to quickly navigate there.</p>

        <p>The only problem is that all files need to be opened to get
        included in the search. So I use the Project feature to organize
        open files and simply open all my Lua files. For the game I'm
        currently making, that's around 20 files. It works fine on Mac,
        but on Linux the default GTK theme makes the file tabs very
        big and 20 cannot fit on the screen. So I have to navigate
        between Files/Documents and Symbols tab all the time instead
        of having it all on one screen.</p>

        <p>I have googled a lot to find the way to reduce the size of
        tabs because Geany itself doesn't have an option. Even if you
        reduce the font size, there's just too much padding with blank
        space.</p>

        <p>Today I discovered GTK Inspector. A tool that allows you to
        run any GTK application and inspect it's elements. Just run
        Geany like this:</p>

        <pre>GTK_DEBUG=interactive geany</pre>

        <p>Then press Ctrl+Shift+D and Alt+tab into inspector.</p>

        <p>After some fiddling, I managed to find the notebook tab
        elements that control the font and spacing. I was still a mystery
        how to write proper CSS as the one shown in Gtk Inspector seemed
        strange and had a lot of text that you cannot copy/paste. Then
        I noticed it shows the .css file from the theme. In my case, it
        was gtk-contained-dark.css. And in that file I finally found
        the CSS responsible for layout. I typed the following custom CSS
        into Gtk Inspector:</p>

        <pre>notebook &gt; header tab { min-height: 5px; padding: 0px 12px; }</pre>

        <p>And suddenly I can see 30+ files.</p>

        <p>The next step was to make this permanent. At first I added the same
        CSS line into ~/.config/gtk-3.0/gtk.css file in my home directory.</p>

        <p>Later I discovered that Geany has its own CSS file for custom
        settings. From the main menu, go to Tools, Configuration Files, geany.css
        and add it there. This way the change only affects Geany.</p>

        <p>Finally I can get full productivity with Geany.</p>
                    <span style="float: right">                <a class="ah" style="border: 1px solid black; padding: 4px; margin: 0px;
                    font-size: 8pt; font-family: Sans-serif; color: black; background-color: #eee"
                    title="Open this topic separately, so that you can share/comment on Twitter" href="183-geany-document-tab-size-font">Feedback &amp; Share</a>            </span>
                        <span style="color: silver; font-size: 9pt">Milan Babuškov, 2024-09-03</span>        </div>        <div class="post">
            <a class="ah" title="static link" href="182-macos-netstat"><h1>Services listening to network requests on macOS</a></h1>
            <p>I decided to toy around with Apache on macOS High Sierra and
        wanted to make sure it only listens to localhost connections.
        To check open ports, you can use netstat like this:</p>

        <pre># netstat -anvp tcp | awk 'NR<3 || /LISTEN/'
Active Internet connections (including servers)
Proto Recv-Q Send-Q  Local Address          Foreign Address        (state)     rhiwat shiwat    pid   epid
tcp6       0      0  *.49782                *.*                    LISTEN      131072 131072    323      0
tcp4       0      0  *.49782                *.*                    LISTEN      131072 131072    323      0
tcp4       0      0  127.0.0.1.80           *.*                    LISTEN      131072 131072   4952      0
tcp6       0      0  *.49153                *.*                    LISTEN      131072 131072     60      0
tcp4       0      0  *.49153                *.*                    LISTEN      131072 131072     60      0
tcp4       0      0  *.3050                 *.*                    LISTEN      131072 131072    161      0</pre>

        <p>Ok, Apache is fine, but this got me curious. PID 60 is
        XBox360 controller driver and PID 323 is rapportd. Why either
        of those needs to listen for network connections is beyond me.</p>

        <p>PID 161 is FirebirdSQL DBMS, so I disabled it as I don't
            really need it currently, by editing the file:</p>

        <pre>/Library/LaunchDaemons/org.firebird.gds.plist</pre>

        <p>and setting the keyname <b>Disabled</b> to <b>true</b>.</p>

        <p>I'm still looking for a way to disable rapportd and XBox360 daemon.</p>
                    <span style="float: right">                <a class="ah" style="border: 1px solid black; padding: 4px; margin: 0px;
                    font-size: 8pt; font-family: Sans-serif; color: black; background-color: #eee"
                    title="Open this topic separately, so that you can share/comment on Twitter" href="182-macos-netstat">Feedback &amp; Share</a>            </span>
                        <span style="color: silver; font-size: 9pt">Milan Babuškov, 2021-11-14</span>        </div>        <div class="post">
            <a class="ah" title="static link" href="181-hide-users-macos-login"><h1>Hiding some users from macOS login screen</a></h1>
            <p>Installing software like Firebird DBMS adds users to your
        macOS system. In this particular case it added the user <b>firebird</b>, but
        I also wanted to toy around with the Firebird embedded variant, which
        has some magic for SYSDBA user. So I also added user named SYSDBA manually.</p>

        <p>The problem is that my login screen now shows a bunch of accounts
        that cannot really be used. It's incredible that macOS has no GUI
        to simply exclude some accounts from the login screen. I guess it can
        pose a support problem down the line when people forget they hid
        some account and have no idea how to get it back... oh well.</p>

        <p>Anyway, there's a way to at least bundle all of those accounts you
        don't need into a <i>Other</i> category. It's done with a command like this one:</p>

        <pre>sudo defaults write /Library/Preferences/com.apple.loginwindow HiddenUsersList -array-add username</pre>

        <p>The only problem is that this setting gets ignored after restart
        if you use full-disk encryption. Apparently the setting is stored in
        the encrypted part of the disk, and Mac shows the login screen before
        you decrypt it. Not really sure where it reads the list of users
        from in that case?</p>
                    <span style="float: right">                <a class="ah" style="border: 1px solid black; padding: 4px; margin: 0px;
                    font-size: 8pt; font-family: Sans-serif; color: black; background-color: #eee"
                    title="Open this topic separately, so that you can share/comment on Twitter" href="181-hide-users-macos-login">Feedback &amp; Share</a>            </span>
                        <span style="color: silver; font-size: 9pt">Milan Babuškov, 2021-10-29</span>        </div>        <div class="post">
            <a class="ah" title="static link" href="180-cheapssl-positivessl-comodo-stunnel"><h1>Using CheapSSLs certificates with stunnel</a></h1>
            <p>CheapSSLs website sells cheapest mainstream SSL certificates currently.
        Apparently they are part of NameCheap group and also run ssls.com website.
        Prices are really low, and running SSL is not really that expensive anymore.</p>

        <p>In my setup, I'm mostly using stunnel in front of HAProxy, which then
        does load-balancing to a bunch of nginx, Apache and node.js servers.
        Configuring each of those for SSL would be PITA, so I'm simply using
        stunnel. The only drawback was getting IP addresses of connected web clients.
        This can be solved with proxy protocol using HAProxy 1.5, but I also use
        websockets and json-polling and xhr-polling
        with node.js and socket.io I cannot use the proxy protocol. So I patched
        stunnel 5.0 with 4.x patch you can find on the net, to give me
        additional HTTP headers.
        </p>

        <p>When you apply for SSL cert at cheapssls, they ask for the type of
        web server and even though there are 20+ options, stunnel is not one
        of them. So I picked &quot;other&quot;. I got three files:</p>

        <ul>
            <li>mydomain.csr</li>
            <li>AddTrustExternalCARoot.crt</li>
            <li>PositiveSSLCA2.crt</li>
        </ul>

        <p>BTW, to create the certificate request, I used the <a href="/155-Setting-up-real-SSL-Nodejs-Express">same
        procedure</a> as with GoDaddy.</p>

        <p>I tried to set it up using intuition and previous experience with
        GoDaddy, but it just would not work. I would get this error:</p>

        <pre>[!] SSL_CTX_use_PrivateKey_file: B080074: error:0B080074:x509 certificate routines:X509_check_private_key:key values mismatch
[!] Service [domain]: Failed to initialize SSL context
        </pre>

        <p>So I tried to use the CAfile setting, copy/paste certificates again,
        and stunnel just would not start. If I removed intermediate certificates
        it would work, but then it would not support all the browsers out there.</p>

        <p>Finally, after a lot of trial and error and trying out various howtos
        on the net, I got it working. Here's how to do it. First, create a file
        containing your certificate, intermediate certificate and root certificate,
        in that <b>exact order</b>. This is important, because it would not work
        otherwise:
        </p>

        <pre>cat yourdomain.crt PositiveSSLCA2.crt AddTrustExternalCARoot.crt > all.pem
        </pre>

        Next, set up a stunnel.conf file like this:

        <pre>cert=/full/path/to/all.pem
key=/full/path/to/yourdomain.key
        </pre>

        <p>Do not use the CAFile setting at all. And that's it. It's really simple
        once you get it working.</p>
                    <span style="float: right">                <a class="ah" style="border: 1px solid black; padding: 4px; margin: 0px;
                    font-size: 8pt; font-family: Sans-serif; color: black; background-color: #eee"
                    title="Open this topic separately, so that you can share/comment on Twitter" href="180-cheapssl-positivessl-comodo-stunnel">Feedback &amp; Share</a>            </span>
                        <span style="color: silver; font-size: 9pt">Milan Babuškov, 2014-03-26</span>        </div>        <div class="post">
            <a class="ah" title="static link" href="179-traffic-hacker-news-effect"><h1>How much traffic can you expect from Hacker News front page</a></h1>
            <p>In mid of July I posted a link to my blog post about Yahoo! Mail
        (see previous post) to <a
        href="news.ycombinator.com">Hacker News</a>. The post was quickly
        picked up, and reached the front page:</p>

        <img style="border: 1px solid gray" src="images/HNfrontpage.png">

        <p>HN effect lasted for two days. As soon as the story left the front page,
        traffic dropped. My blog gets 30-40 visits per day usually.
        In those two days, it got about 14000:</p>

        <img style="border: 1px solid gray" src="images/HNeffect.png">

        <p>The only feedback and social sharing mechanism I use on this blog is
        Twitter. As a side effect, I also got about 10 new Twitter followers
        in those few days.</p>

        <p>Conclusion: HN posting could be useful to get some attention, but
        keep in mind that it would only last for a day or two. As you may
        notice, I don't have any ads on my blog, the real purpose of my blog
        posts is just sharing my thoughts with the community.</p>
                    <span style="float: right">                <a class="ah" style="border: 1px solid black; padding: 4px; margin: 0px;
                    font-size: 8pt; font-family: Sans-serif; color: black; background-color: #eee"
                    title="Open this topic separately, so that you can share/comment on Twitter" href="179-traffic-hacker-news-effect">Feedback &amp; Share</a>            </span>
                        <span style="color: silver; font-size: 9pt">Milan Babuškov, 2013-09-02</span>        </div>        <div class="post">
            <a class="ah" title="static link" href="178-yahoo-mail-catching-up"><h1>Yahoo! Mail is not catching up anymore. Your move GMail</a></h1>
            <p>Using GMail with intermittent connection on my Android device has
        always been slow, but I simply thought that's the way things should be.
        Some two months ago, I needed to read my, over a decade old @yahoo.com
        mail, and I installed Yahoo! Mail app on my Android. What a pleasant
        surprise that was. It is FAST. Much faster than Gmail. I wrote YMail off
        on the desktop, but on mobile it was clearly better and I enjoy reading
        and sending mail on it.</p>

        <p>Today, I logged into Yahoo! Mail on my desktop machine, and I was
        in for another surprise. They fixed the "paging" issue, and made it
        run even faster than before. Replies are much easier than using GMail's,
        recently introduced narrow space. Not to mention that PageUp and PageDown
        keys work properly:</p>

        <p>GMail has caused so much pain to me lately. A couple
        of e-mails sent accidentally because I pressed PageDown and hit space.
        Instead of moving the cursor to bottom and adding space, GMail moved the
        focus from text box to the Send button and pressing Space key on it
        made it send the message. Also, it's impossible to select text with Shift+PageDown
        in GMail. Unless you have 30" monitor which is presumably why all the
        Google engineers are completely unaware of the issue. GMail reply is
        UX nightmare on laptop with standard resolution like 1280x800 or 1366x768.</p>

        <p>Another issue I had with Yahoo mail in the past is also gone. Earlier
        when you had a lot of messages to select (say, like 100+) you would
        either have to scroll page-by-page in old, classic view or you could
        switch to modern one which would load everything. With 1000+ messages
        in my, 14-year old, inbox this posed a problem. Now they fixed that. I
        loads initial set of messages and keeps loading more as you scroll down.
        When I reach those 100-something messages I need to select, I can easily
        select them all in one go. Not that I think about it, GMail does not
        have this feature, so that's one more reason to use YMail.</p>

        <p>Let's face it, with free GMail for domains removed from market, and
        latest improvements in Yahoo Mail, Yahoo seems to be a clear leader now.
        It's faster, has more features, and it's much easier to reply to messages.
        I hope GMail team wakes up soon.</p>            <span style="float: right">                <a class="ah" style="border: 1px solid black; padding: 4px; margin: 0px;
                    font-size: 8pt; font-family: Sans-serif; color: black; background-color: #eee"
                    title="Open this topic separately, so that you can share/comment on Twitter" href="178-yahoo-mail-catching-up">Feedback &amp; Share</a>            </span>
                        <span style="color: silver; font-size: 9pt">Milan Babuškov, 2013-07-18</span>        </div>        <div class="post">
            <a class="ah" title="static link" href="177-gods-of-sparta"><h1>Gods of Sparta: Indie strategy game</a></h1>
            <p><a href="http://gos.bigosaur.com">Gods of Sparta</a> is a card
        strategy game I've been working on in the past 3 months. It's a
        card combat game, but without all the trading, collecting, booster
        pack nonsense that makes you waste money on cards that you'll never
        use. The game is oriented on strategy, both players have equal chance
        to win, and it's played in real-time (although it's turn based, players
        have about 30 seconds to play their move). It's really easy to learn,
        but hard to master.</p>

        <iframe width="420" height="315" src="//www.youtube.com/embed/nN_fXJke00U?rel=0" frameborder="0" allowfullscreen></iframe>

        <p>5 designers were hired to create graphics
        for the units, while I did programming and all the rest. Visit the <a
        href="http://gos.bigosaur.com">Gods of Sparta website</a>
        to try it out</p>            <span style="float: right">                <a class="ah" style="border: 1px solid black; padding: 4px; margin: 0px;
                    font-size: 8pt; font-family: Sans-serif; color: black; background-color: #eee"
                    title="Open this topic separately, so that you can share/comment on Twitter" href="177-gods-of-sparta">Feedback &amp; Share</a>            </span>
                        <span style="color: silver; font-size: 9pt">Milan Babuškov, 2013-07-16</span>        </div>        <div class="post">
            <a class="ah" title="static link" href="176-checkbox-easelj-howto"><h1>Creating Checkbox or Toggle button with EaselJS (CreateJS)</a></h1>
            <p>Creating a checkbox is rather simple, but here's some code that
        you can use in your project without having to invent it yourself.</p>

        <p>For checkbox or toggle button we need two images representing the
        states: checked/unchecked, on/off, yes/no, etc. You need to prepare
        those two images and load them into a createjs.Bitmap. In the game I'm
        creating, I used these two images:</p>

        <img src="images/checkboxen.jpg">

        <p>Of course, you can place both images in a single file and then
        use sourceRect property to create two bitmaps. The code would go like
        this:</p>

<pre>
var imageUnchecked = new createjs.Bitmap('checkboxen.jpg');
imageUnchecked.sourceRect = new createjs.Rectangle(0, 0, 34, 29);

var imageChecked = new createjs.Bitmap('checkboxen.jpg');
imageChecked.sourceRect = new createjs.Rectangle(34, 0, 34, 29);
</pre>
    <p>Now that we have both images, lets create a checkbox. All you need
    is a simple function call:</p>

<pre>
var xPos = 100;
var yPos = 100;
var initialState = true;    // checked initially
var btn = new toggleButton(xPos, yPos, imageChecked, imageUnchecked,
    initialState, function(isChecked) {

    if (isChecked)
        // do something
    else
        // do something else

});
</pre>

    <p>To read the state later, outside of click handler, use the following code:</p>

<pre>
if (btn.checked)
{
    // ...
}
</pre>

    <p>Of course, for this to work, you need <b>toggleButton</b> function. Here it is:</p>

<pre>
function toggleButton(x, y, checkedImg, uncheckedImg, initialState, onClick)
{
    var self = this;
    self.checked = initialState;

    checkedImg.x = x;
    checkedImg.y = y;
    checkedImg.visible = initialState;
    checkedImg.cursor = 'pointer';

    uncheckedImg.x = x;
    uncheckedImg.y = y;
    uncheckedImg.visible = !initialState;
    uncheckedImg.cursor = 'pointer';

    var checkClick = function(newState) {
        self.checked = newState;
        uncheckedImg.visible = !newState;
        checkedImg.visible = newState;
        onClick(newState);
    };

    checkedImg  .addEventListener('click', function() { checkClick(false); });
    uncheckedImg.addEventListener('click', function() { checkClick(true); });
}
</pre>
    <p>The code above is public domain. Feel free to use and modify it.</p>            <span style="float: right">                <a class="ah" style="border: 1px solid black; padding: 4px; margin: 0px;
                    font-size: 8pt; font-family: Sans-serif; color: black; background-color: #eee"
                    title="Open this topic separately, so that you can share/comment on Twitter" href="176-checkbox-easelj-howto">Feedback &amp; Share</a>            </span>
                        <span style="color: silver; font-size: 9pt">Milan Babuškov, 2013-07-11</span>        </div>        <div class="post">
            <a class="ah" title="static link" href="175-apply-grayscale-filter-easeljs-createjs"><h1>How to apply grayscale filter to image using EaselJS (CreateJS)</a></h1>
            <p>Searching the Google for <i>grayscale easeljs</i> leads to some
        obscure StackOverflow Q&amp;A from 2011. which has a working example.
        However, it uses a generic filter matrix so you would need to know how
        grayscale effect actually works on pixel level to understand what it
        does.</p>

        <p>It's much easier to use Easel's built-in functions. However, those
        are not easy to discover using a search engine. You have to dig into
        docs. Here's an easy way to do it, adapted from Easel docs.
        Assuming you have a Bitmap, Container, Shape in variable myDisplayObject:</p>

        <pre>var matrix = new createjs.ColorMatrix().adjustSaturation(-100);
myDisplayObject.filters = [new createjs.ColorMatrixFilter(matrix)];
myDisplayObject.cache();
        </pre>

        <p>Make sure you call cache() at the end, because filters are only applied
        during caching. If you wish to use different filters for different objects
        in a container, you need to cache() each one separately before adding
        to container.</p>

        <p>Now, you might run this example, and get the error message <b>createjs.ColorMatrix() is not a constructor</b>
        because createjs.ColorMatrix is undefined. The reason for this is that
        current version of minified files does not include filters, so you
        need to include <b>ColorMatrixFilter.js</b> script in your page
        separately. <a href="http://community.createjs.com/discussions/createjs/538-colormatrix-undefined">Lanny says</a>
        it will be included in one of future versions. I'm not sure that's a good
        idea though. I doubt many users use filters. I almost built the entire
        game without it, and only want to include it for Medusa's petrifying
        effects.</p>            <span style="float: right">                <a class="ah" style="border: 1px solid black; padding: 4px; margin: 0px;
                    font-size: 8pt; font-family: Sans-serif; color: black; background-color: #eee"
                    title="Open this topic separately, so that you can share/comment on Twitter" href="175-apply-grayscale-filter-easeljs-createjs">Feedback &amp; Share</a>            </span>
                        <span style="color: silver; font-size: 9pt">Milan Babuškov, 2013-06-18</span>        </div><h2 style="color: white">Past posts</h2><ul><li class="beli"><a class="ayellow"
            href="/all">Everything on a single page</a> <span style="color: #eee">(about 4MB total size)</span></li><li class="beli"><a class="abeli" title="static link"
            href="174-javascript-callback-all-images-loaded-with-timeout">Callback when all images in HTML page are loaded, with custom timeout</a></li><li class="beli"><a class="abeli" title="static link"
            href="173-multiple-sprites-same-image">Creating multiple sprites from the same image using EaselJS</a></li><li class="beli"><a class="abeli" title="static link"
            href="172-qhi-dat">How to load data from QHI.DAT file</a></li><li class="beli"><a class="abeli" title="static link"
            href="171-easeljs-docs-improvement">Easel.js docs need improvement</a></li><li class="beli"><a class="abeli" title="static link"
            href="170-flip-picture-html5-canvas-easeljs">How to flip an image horizontaly or vertically using easel.js</a></li><li class="beli"><a class="abeli" title="static link"
            href="169-hover-effect-mouse-button-image-html5-canvas-easeljs">Creating a mouse hover effect for button/image with HTML5 Canvas and easel.js</a></li><li class="beli"><a class="abeli" title="static link"
            href="168-select-html5-canvas-lib-turn-based-strategy">Selecting a HTML5 Canvas library for a turn-based strategy game</a></li><li class="beli"><a class="abeli" title="static link"
            href="167-capture-mouse-replace-cursor-cocos2d-html5">Capturing mouse movement with Cocos2d-html5 and replacing default cursor</a></li><li class="beli"><a class="abeli" title="static link"
            href="166-optimize-mysqldump">Optimizing MySQL backups</a></li><li class="beli"><a class="abeli" title="static link"
            href="165-facebook-google-analytics">Facebook uses Google Analytics for developers' site</a></li><li class="beli"><a class="abeli" title="static link"
            href="164-twitter-bootstrap-3-bugs">Twitter Bootstrap 3.0 is coming</a></li><li class="beli"><a class="abeli" title="static link"
            href="163-lisp-vs-javascript-functional-programming">LISP vs JavaScript</a></li><li class="beli"><a class="abeli" title="static link"
            href="162-advancing-the-human-race">We're still far away from being a decent cosmic civilization</a></li><li class="beli"><a class="abeli" title="static link"
            href="161-blank-screen-boot-hp-pavilion-g7-slackware">Blank screen on boot HP Pavilion G7 w/ Slackware [SOLVED]</a></li><li class="beli"><a class="abeli" title="static link"
            href="160-google-still-cannot-figure-out-multi-domain-logins">Google still cannot figure out multi-domain logins</a></li><li class="beli"><a class="abeli" title="static link"
            href="159-mysql-pushing-bugs-under-carpet">MySQL pushing bugs under the carpet</a></li><li class="beli"><a class="abeli" title="static link"
            href="158-Tumblr-is-broken">Tumblr is broken</a></li><li class="beli"><a class="abeli" title="static link"
            href="157-md5-in-nodejs">md5 in node.js</a></li><li class="beli"><a class="abeli" title="static link"
            href="156-Why-PHP-better-than-JavaScript">Why PHP is better than JavaScript</a></li><li class="beli"><a class="abeli" title="static link"
            href="155-Setting-up-real-SSL-Nodejs-Express">Setting up real SSL with Node.js and Express</a></li><li class="beli"><a class="abeli" title="static link"
            href="154-Nodejs-and-Express-serving-same-content-HTTP-HTTPS-SSL">Node.js and Express serving the same content for HTTP and HTTPS via SSL</a></li><li class="beli"><a class="abeli" title="static link"
            href="153-Google-multi-account-get-screwd-up-again">Google multi-account get screwd up again</a></li><li class="beli"><a class="abeli" title="static link"
            href="152-GMail-ignores-Reply-to-header-SOLVED">GMail ignores Reply-to header [SOLVED]</a></li><li class="beli"><a class="abeli" title="static link"
            href="151-How-to-extract-mp3-from-YouTube-video-using-Linux">How to extract mp3 from YouTube video using Linux?</a></li><li class="beli"><a class="abeli" title="static link"
            href="150-Lean-Startup-vs-Rework">Lean Startup vs Rework</a></li><li class="beli"><a class="abeli" title="static link"
            href="149-Twitter-Timestamp-out-of-bounds-solved">Twitter Timestamp out of bounds [solved]</a></li><li class="beli"><a class="abeli" title="static link"
            href="148-Whats-the-conversion-on-email-newsletter-with-a-call-to-action">What's the conversion on e-mail newsletter with a call-to-action?</a></li><li class="beli"><a class="abeli" title="static link"
            href="147-Using-JavaScript-to-split-text-string-into-word-tokens-taking-account-of-punctuation-and-whitespace-and-UTF-8-charset">Using JavaScript to split text string into word tokens, taking
        account of punctuation and whitespace and UTF-8 charset</a></li><li class="beli"><a class="abeli" title="static link"
            href="146-How-to-use-IDB-files-of-Quicken-Home-Inventory-on-64-bit-Windows">How to use IDB files of Quicken Home Inventory on 64 bit Windows?</a></li><li class="beli"><a class="abeli" title="static link"
            href="145-Why-is-MySQL-still-a-toy-database">Why is MySQL still a toy database</a></li><li class="beli"><a class="abeli" title="static link"
            href="144-Scrolling-back-in-screen">Scrolling back in screen</a></li><li class="beli"><a class="abeli" title="static link"
            href="143-Why-is-Firebird-better-DBMS-than-Oracle">Why is Firebird better DBMS than Oracle?</a></li><li class="beli"><a class="abeli" title="static link"
            href="142-Using-Quicken-Home-Inventory-Manager-on-64bit-systems-FINALLY">Using Quicken Home Inventory Manager on 64bit systems [FINALLY]</a></li><li class="beli"><a class="abeli" title="static link"
            href="141-YouTube-bug-report-bug-LOL">YouTube bug report bug LOL</a></li><li class="beli"><a class="abeli" title="static link"
            href="140-Stuck-SSH-session">Stuck SSH session</a></li><li class="beli"><a class="abeli" title="static link"
            href="139-Reducing-dentry-slab-usage-on-machines-with-a-lot-of-RAM">Reducing dentry (slab) usage on machines with a lot of RAM</a></li><li class="beli"><a class="abeli" title="static link"
            href="138-Disabling-alerts-stops-JavaScript-execution-in-Firefox">Disabling alerts stops JavaScript execution in Firefox</a></li><li class="beli"><a class="abeli" title="static link"
            href="137-How-to-export-data-from-QHI">How to export data from QHI?</a></li><li class="beli"><a class="abeli" title="static link"
            href="136-How-to-use-Quicken-Home-Inventory-Windows-7-SOLVED">How to use Quicken Home Inventory on Windows 7 [SOLVED]</a></li><li class="beli"><a class="abeli" title="static link"
            href="135-Building-wxWidgets-old-MinGW">Building wxWidgets 2.8.12 on old MinGW with GCC 3.2</a></li><li class="beli"><a class="abeli" title="static link"
            href="134-nginx-hogs-cpu-when-proxying-large-files">nginx hogs cpu when proxying large files</a></li><li class="beli"><a class="abeli" title="static link"
            href="133-Merging-a-huge-git-conflict">Merging a huge git conflict</a></li><li class="beli"><a class="abeli" title="static link"
            href="132-Google-Apps-problems">Google Apps problems</a></li><li class="beli"><a class="abeli" title="static link"
            href="131-Stackoverflow-scaling-problem">Stackoverflow.com scaling problem</a></li><li class="beli"><a class="abeli" title="static link"
            href="130-Performance-of-PHP-if-switch-arrays-using-B-tree-solution">Performance of PHP if, switch, arrays... using "B-tree-if" as solution</a></li><li class="beli"><a class="abeli" title="static link"
            href="129-Safe-way-to-dual-boot-Linux-and-Windows-7">Safe way to dual-boot Linux and Windows 7</a></li><li class="beli"><a class="abeli" title="static link"
            href="128-How-to-explain-recursion-to-a-kid">How to explain recursion to a kid</a></li><li class="beli"><a class="abeli" title="static link"
            href="127-Benchmarking-PHP-vs-C-for-pure-loops-and-array-access">Benchmarking PHP vs C for pure loops and array access</a></li><li class="beli"><a class="abeli" title="static link"
            href="126-sign-up-the-moment-you-visit-the-website-3-times-in-a">Sign-up the moment you visit the website 3 times in a row</a></li><li class="beli"><a class="abeli" title="static link"
            href="125-getting-strange-spaces-in-complex-html-table">Getting strange spaces in complex HTML table layout for image parts?</a></li><li class="beli"><a class="abeli" title="static link"
            href="124-access-computers-behing-firewall-with-ssh">Access computers behing firewall with SSH</a></li><li class="beli"><a class="abeli" title="static link"
            href="123-7-reasons-why-yii-framework-is-better-than-codeigniter">7 reasons why Yii framework is better than CodeIgniter</a></li><li class="beli"><a class="abeli" title="static link"
            href="122-script-to-scp-changes-from-git-repository-to-web-server">Script to SCP changes from git repository to web server</a></li><li class="beli"><a class="abeli" title="static link"
            href="121-moving-ahead">Moving ahead...</a></li><li class="beli"><a class="abeli" title="static link"
            href="120-weird-gmail-login-path">Weird GMail login path...</a></li><li class="beli"><a class="abeli" title="static link"
            href="119-things-that-hamper-my-productivity">Things that hamper my productivity</a></li><li class="beli"><a class="abeli" title="static link"
            href="118-facebook-captcha-fail">Facebook CAPTCHA fail</a></li><li class="beli"><a class="abeli" title="static link"
            href="117-final-nail-in-googleapps-coffin">Final nail in GoogleApps coffin</a></li><li class="beli"><a class="abeli" title="static link"
            href="116-a-message-to-gmail-team">A message to GMail team</a></li><li class="beli"><a class="abeli" title="static link"
            href="115-converting-mysql-database-to-firebird">Converting MySQL database to Firebird</a></li><li class="beli"><a class="abeli" title="static link"
            href="114-googles-new-apps-problem">Google's new Apps problem</a></li><li class="beli"><a class="abeli" title="static link"
            href="113-problem-with-wxwebconnect-and-printing">Problem with wxWebConnect and printing</a></li><li class="beli"><a class="abeli" title="static link"
            href="112-mysql-fixed-vs-dynamic-table-i-have-a-mysql-table">MySQL fixed vs dynamic table</a></li><li class="beli"><a class="abeli" title="static link"
            href="111-how-to-install-perl-module">How to install Perl module</a></li><li class="beli"><a class="abeli" title="static link"
            href="110-converting-mysql-database-to-firebird-part1">Converting MySQL database to Firebird - part1</a></li><li class="beli"><a class="abeli" title="static link"
            href="109-changing-timezone-on-centos-5-5">Changing timezone on CentOS 5.5</a></li><li class="beli"><a class="abeli" title="static link"
            href="108-creating-screencast-with-audio-on-linux">Creating screencast with audio on Linux</a></li><li class="beli"><a class="abeli" title="static link"
            href="107-tweetmeme-fail">TweetMeme fail</a></li><li class="beli"><a class="abeli" title="static link"
            href="106-ckeditor-with-dark-background">CKEditor with dark background</a></li><li class="beli"><a class="abeli" title="static link"
            href="105-php-unserialize-bug-and-codeigniter">PHP unserialize bug and CodeIgniter</a></li><li class="beli"><a class="abeli" title="static link"
            href="104-printing-from-windows-machine-to-cups-printer-via-samba">Printing from Windows machine to CUPS printer via Samba</a></li><li class="beli"><a class="abeli" title="static link"
            href="103-somethings-wrong-with-routing-at-liquidweb">Something's wrong with routing at #liquidweb</a></li><li class="beli"><a class="abeli" title="static link"
            href="102-a-few-useful-linux-commands">A few useful Linux commands</a></li><li class="beli"><a class="abeli" title="static link"
            href="101-64bit-php-5-2-and-firebird-blobs">64bit PHP 5.2 and Firebird blobs</a></li><li class="beli"><a class="abeli" title="static link"
            href="100-close-the-tracker-item-and-go-home">Close the tracker item and go home</a></li><li class="beli"><a class="abeli" title="static link"
            href="99-10-years-of-firebird-dbms-i-have-been-using-it">10 Years of Firebird DBMS</a></li><li class="beli"><a class="abeli" title="static link"
            href="98-reading-between-the-lines">Reading between the lines</a></li><li class="beli"><a class="abeli" title="static link"
            href="97-google-has-trouble-counting-to-5-anyone-using">Google has trouble counting&#8230; to 5.</a></li><li class="beli"><a class="abeli" title="static link"
            href="96-facebook-e-mail-problem-facebook-is-introducing">Facebook e-mail problem</a></li><li class="beli"><a class="abeli" title="static link"
            href="95-always-expect-the-unexpected-i-got-this-photo">Always expect the unexpected</a></li><li class="beli"><a class="abeli" title="static link"
            href="94-linux-is-easy-or-hard">Linux is easy or hard...</a></li><li class="beli"><a class="abeli" title="static link"
            href="93-jaybird-i-took-this-photo-during-my-vacation-on">Jaybird</a></li><li class="beli"><a class="abeli" title="static link"
            href="92-how-to-waste-money-on-facebook-ads">How to waste money on Facebook ads</a></li><li class="beli"><a class="abeli" title="static link"
            href="91-weird-characters-in-restored-mysql-database">Weird characters in restored MySQL database</a></li><li class="beli"><a class="abeli" title="static link"
            href="90-facebook-amateurs">Facebook amateurs</a></li><li class="beli"><a class="abeli" title="static link"
            href="89-firefox-3-5-faster">Firefox 3.5 faster?</a></li><li class="beli"><a class="abeli" title="static link"
            href="88-yii-php-framework">Yii PHP framework</a></li><li class="beli"><a class="abeli" title="static link"
            href="87-online-whiteboard">Online whiteboard</a></li><li class="beli"><a class="abeli" title="static link"
            href="86-lenovo-s10-ideapad">Lenovo S10 IdeaPad</a></li><li class="beli"><a class="abeli" title="static link"
            href="85-comparison-of-php-wiki-software">Comparison of PHP wiki software</a></li><li class="beli"><a class="abeli" title="static link"
            href="84-yahoo-mail-and-chat-ive-been-using-yahoo-web">Yahoo! Mail and chat</a></li><li class="beli"><a class="abeli" title="static link"
            href="83-css-is-awesome-after-spending-endless-hours">CSS is Awesome?</a></li><li class="beli"><a class="abeli" title="static link"
            href="82-taking-over-expiring-domains-part-2">Taking over expiring domains - part 2</a></li><li class="beli"><a class="abeli" title="static link"
            href="81-subversion-and-sourceforge-net">Subversion and SourceForge.net</a></li><li class="beli"><a class="abeli" title="static link"
            href="80-yahoo-messenger">Yahoo Messenger</a></li><li class="beli"><a class="abeli" title="static link"
            href="79-32bit-compatibility-layer-for-64bit-slackware">32bit compatibility layer for 64bit Slackware</a></li><li class="beli"><a class="abeli" title="static link"
            href="78-taking-over-expiring-domains">Taking over expiring domains</a></li><li class="beli"><a class="abeli" title="static link"
            href="77-alt-tab-to-desktop">Alt+Tab to desktop</a></li><li class="beli"><a class="abeli" title="static link"
            href="76-why-blogger-engine-sucks">why Blogger engine sucks?</a></li><li class="beli"><a class="abeli" title="static link"
            href="75-slamd64-and-firebird">Slamd64 and Firebird</a></li><li class="beli"><a class="abeli" title="static link"
            href="74-codeigniter-pagination">CodeIgniter pagination</a></li><li class="beli"><a class="abeli" title="static link"
            href="73-codeigniter-woes">CodeIgniter woes</a></li><li class="beli"><a class="abeli" title="static link"
            href="72-staying-up-to-date-with-slackware-current">Staying up to date with slackware-current</a></li><li class="beli"><a class="abeli" title="static link"
            href="71-setting-up-wireless-on-slackware">Setting up wireless on Slackware</a></li><li class="beli"><a class="abeli" title="static link"
            href="70-x11-forwarding-on-slackware">X11 forwarding on Slackware</a></li><li class="beli"><a class="abeli" title="static link"
            href="69-firefox-3-printing-on-linux">Firefox 3 printing on Linux</a></li><li class="beli"><a class="abeli" title="static link"
            href="68-local-search-engines-to-try">Local search engines to try</a></li><li class="beli"><a class="abeli" title="static link"
            href="67-setting-up-git-offline-work-via-usb-memory-stick">Setting up Git offline work via USB memory stick</a></li><li class="beli"><a class="abeli" title="static link"
            href="66-git-statistics">Git statistics</a></li><li class="beli"><a class="abeli" title="static link"
            href="65-lookup-tables-in-ms-excel-and-openoffice">Lookup tables in MS Excel and OpenOffice</a></li><li class="beli"><a class="abeli" title="static link"
            href="64-php-destructor-vs-shutdown-function">PHP destructor vs shutdown function</a></li><li class="beli"><a class="abeli" title="static link"
            href="63-how-to-lock-kde-session-when-power-button-is-pressed">How to lock KDE session when power button is pressed?</a></li><li class="beli"><a class="abeli" title="static link"
            href="62-regexxer-on-slackware-12-1">Regexxer on Slackware 12.1</a></li><li class="beli"><a class="abeli" title="static link"
            href="61-fbcon08-sparky-auction">FBCon08 Sparky Auction</a></li><li class="beli"><a class="abeli" title="static link"
            href="60-firebird-conference-2008">Firebird Conference 2008</a></li><li class="beli"><a class="abeli" title="static link"
            href="59-memory-usage-of-kernel-modules">Memory usage of kernel modules</a></li><li class="beli"><a class="abeli" title="static link"
            href="58-wingit-broken-when-merging">WinGit broken when merging</a></li><li class="beli"><a class="abeli" title="static link"
            href="57-stack-overflow">Stack Overflow</a></li><li class="beli"><a class="abeli" title="static link"
            href="56-git-broken-in-slackware-12-1">Git broken in Slackware 12.1</a></li><li class="beli"><a class="abeli" title="static link"
            href="55-virtualbox-review">VirtualBox review</a></li><li class="beli"><a class="abeli" title="static link"
            href="54-wxgrid-with-virtual-storage-and-multirow-or-multicolumn">wxGrid with virtual storage and multirow or multicolumn cells</a></li><li class="beli"><a class="abeli" title="static link"
            href="53-workrave-on-slackware-12-1">Workrave on Slackware 12.1</a></li><li class="beli"><a class="abeli" title="static link"
            href="52-vlc-on-slackware-12-1">VLC on Slackware 12.1</a></li><li class="beli"><a class="abeli" title="static link"
            href="51-audacity-and-mp3-support">Audacity and MP3 support</a></li><li class="beli"><a class="abeli" title="static link"
            href="50-more-on-filesystems">More on filesystems</a></li><li class="beli"><a class="abeli" title="static link"
            href="49-gcc-isnt-that-slow-after-all">GCC isn't that slow after all</a></li><li class="beli"><a class="abeli" title="static link"
            href="48-drag-and-drop-gtk-bugs">Drag and drop Gtk bugs</a></li><li class="beli"><a class="abeli" title="static link"
            href="47-mister-x">Mister X</a></li><li class="beli"><a class="abeli" title="static link"
            href="46-makefile-tips">Makefile tips</a></li><li class="beli"><a class="abeli" title="static link"
            href="45-another-great-article-by-joel">Another great article by Joel</a></li><li class="beli"><a class="abeli" title="static link"
            href="44-workrave-on-slackware-12-0">Workrave on Slackware 12.0</a></li><li class="beli"><a class="abeli" title="static link"
            href="43-glibmm-is-anyone-home">GlibMM - is anyone home?</a></li><li class="beli"><a class="abeli" title="static link"
            href="42-ill-do-it-better-the-second-time">I'll do it better the second time...</a></li><li class="beli"><a class="abeli" title="static link"
            href="41-slackware-12-has-arrived">Slackware 12 has arrived</a></li><li class="beli"><a class="abeli" title="static link"
            href="40-vmware-goes-open-source">VMWare goes open source</a></li><li class="beli"><a class="abeli" title="static link"
            href="39-qemu-vs-vmware-benchmark">QEmu vs VMWare benchmark</a></li><li class="beli"><a class="abeli" title="static link"
            href="38-time-for-slackware-12-0">Time for Slackware 12.0</a></li><li class="beli"><a class="abeli" title="static link"
            href="37-flash-graphics-and-links">Flash graphics and links</a></li><li class="beli"><a class="abeli" title="static link"
            href="36-slow-compiling-check-your-memory">Slow compiling? Check your memory</a></li><li class="beli"><a class="abeli" title="static link"
            href="35-security">Security</a></li><li class="beli"><a class="abeli" title="static link"
            href="34-gimp-animation-plugin">Gimp animation plugin</a></li><li class="beli"><a class="abeli" title="static link"
            href="33-home-inventory-software">Home inventory software</a></li><li class="beli"><a class="abeli" title="static link"
            href="32-notebook-design">Notebook design</a></li><li class="beli"><a class="abeli" title="static link"
            href="31-udev-woes-part-1">UDEV woes - part 1</a></li><li class="beli"><a class="abeli" title="static link"
            href="30-benefit-of-distributed-version-control">Benefit of distributed version control</a></li><li class="beli"><a class="abeli" title="static link"
            href="29-kompare-your-sources">Kompare your sources</a></li><li class="beli"><a class="abeli" title="static link"
            href="28-java-coming-back-to-windows">Java coming back to Windows?</a></li><li class="beli"><a class="abeli" title="static link"
            href="27-take-a-break">Take a break</a></li><li class="beli"><a class="abeli" title="static link"
            href="26-scum-of-the-universe">Scum of the Universe</a></li><li class="beli"><a class="abeli" title="static link"
            href="25-apologies">Apologies</a></li><li class="beli"><a class="abeli" title="static link"
            href="24-microsoft-and-novell-partnership">Microsoft and Novell partnership</a></li><li class="beli"><a class="abeli" title="static link"
            href="23-k3b-100">k3b 100%</a></li><li class="beli"><a class="abeli" title="static link"
            href="22-dune-and-iron-maiden">Dune and Iron Maiden</a></li><li class="beli"><a class="abeli" title="static link"
            href="21-joining-ajax-and-web-services">Joining AJAX and web services</a></li><li class="beli"><a class="abeli" title="static link"
            href="20-google-vs-yahoo-vs">Google vs Yahoo! vs ...</a></li><li class="beli"><a class="abeli" title="static link"
            href="19-the-battle-for-wesnoth">The Battle for Wesnoth</a></li><li class="beli"><a class="abeli" title="static link"
            href="18-kde-vs-gnome">KDE vs Gnome</a></li><li class="beli"><a class="abeli" title="static link"
            href="17-watch-your-root-partition">Watch your root partition</a></li><li class="beli"><a class="abeli" title="static link"
            href="16-firefox-download-manager">Firefox download manager</a></li><li class="beli"><a class="abeli" title="static link"
            href="15-symbian-never-again">Symbian - never again</a></li><li class="beli"><a class="abeli" title="static link"
            href="14-reiserfs-bugs">ReiserFS bugs</a></li><li class="beli"><a class="abeli" title="static link"
            href="13-which-apps-are-you-running">Which apps. are you running?</a></li><li class="beli"><a class="abeli" title="static link"
            href="12-bscommander-yet-another-ofm">BSCommander - yet another OFM</a></li><li class="beli"><a class="abeli" title="static link"
            href="11-my-first-mqfa-on-linux">My first MQFA on Linux</a></li><li class="beli"><a class="abeli" title="static link"
            href="10-ajax-based-chess-game-sucks">AJAX based chess game... sucks</a></li><li class="beli"><a class="abeli" title="static link"
            href="9-subversion-gui-for-linux">Subversion GUI for Linux</a></li><li class="beli"><a class="abeli" title="static link"
            href="8-opera-browser-is-slow">Opera browser is SLOW</a></li><li class="beli"><a class="abeli" title="static link"
            href="7-xchm-chm-viewer-for-linux">xCHM - .chm viewer for Linux</a></li><li class="beli"><a class="abeli" title="static link"
            href="6-freeciv-2-1">FreeCiv 2.1</a></li><li class="beli"><a class="abeli" title="static link"
            href="5-klaptop-logs-off-no-matter-what">KLaptop logs off no matter what</a></li><li class="beli"><a class="abeli" title="static link"
            href="4-run-commands-on-multiple-servers">Run commands on multiple servers</a></li><li class="beli"><a class="abeli" title="static link"
            href="3-terminals-and-full-screen">Terminals and full screen</a></li><li class="beli"><a class="abeli" title="static link"
            href="2-ssh-troubles">SSH troubles</a></li><li class="beli"><a class="abeli" title="static link"
            href="1-copy-paste-in-kde">Copy/Paste in KDE</a></li><li class="beli"><a class="abeli" title="static link"
            href="0-hello-world">Hello World</a></li></ul>    </div>
<div style="margin: 0px; padding: 10px; color: maroon; background-color: silver;
    border-top: 1px solid black; font-family: Sans-serif">Copyright &copy; Milan Babuškov 2006-2025</div>
</center>
</body>
</html>
                               

Alan adının whois bilgisi

Domain Name: OATED.COM
Registry Domain ID: 1653350807_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: http://www.godaddy.com
Updated Date: 2025-03-02T14:06:31Z
Creation Date: 2011-04-28T15:50:50Z
Registry Expiry Date: 2027-04-28T15:50:50Z
Registrar: GoDaddy.com, LLC
Registrar IANA ID: 146
Registrar Abuse Contact Email: abuse@godaddy.com
Registrar Abuse Contact Phone: 480-624-2505
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Name Server: NS71.DOMAINCONTROL.COM
Name Server: NS72.DOMAINCONTROL.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-22T01:20:56Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
TERMS OF USE: You are not authorized to access or query our Whois
by the following terms of use: You agree that you may use this Data only
to: (1) allow, enable, or otherwise support the transmission of mass