Levicki's Tech Spot https://levicki.net/ Igor's IT views, usefull tips, software, and some nice photos. en-us (c) 2003-2024 by Igor Levicki. All Rights Reserved. Tue, 16 Jul 2024 00:00:00 +0000 Levicki's RSS Feeder 1.0 http://www.rssboard.org/rss-specification/ webmaster@levicki.net (Site WebMaster) webmaster@levicki.net (Site WebMaster) HOWTO: Play FreeCell and Minesweeper from Windows 7 on Windows 10 and Windows 11 https://levicki.net/articles/2024/07/16/HOWTO_Play_FreeCell_and_Minesweeper_from_Windows_7_on_Windows_10_and_Windows_11.php Starting with Windows 8 Microsoft has, in their infinite wisdom, decided to remove preinstalled (inbox) games such as FreeCell and Minesweeper various versions of which were included in Windows since 1995 and 1992 respectively.

Games were made available in Microsoft Store and even included as pre-provisioned in Windows 10 and 11, but wouldn't you rather play the old version say from Windows 7 instead of installing some "app" from the store which despite being free has in-app purchases, possibly ads, and most definitely usage tracking?

If you would like to play those old games I am sure you could find them available for download on some seedy websites but how about me showing you how to get them yourself straight from the source?

Still reading? Let's roll up our sleeves, crack our fingers and get to work.

Prerequisites:

  1. Windows 7 SP1 x64 ISO image (get it legally from here, as long as you have a valid product key)

Once you have the ISO image, first step is to open it and get a file called install.wim. In Windows 10 and 11 you can just mount the ISO image by double-clicking the ISO file, otherwise you can use 7-Zip to extract the ISO contents to a folder of your choice.

Next you need to mount the install.wim contents to a folder using the following command:

DISM.EXE /Mount-Image /ImageFile:install.wim /Index:3 /MountDir:C:\MNT

In the above command, Index parameter specifies which image to mount from install.wim file. Since install.wim you are working on contains four images (Home Basic, Home Premium, Professional, and Ultimate) you have to specify 3 to select Professional image. MountDir parameter naturally specifies the folder where contents of the image will be mounted and it goes without saying that it should exist before executing the command.

Once the mounting process completes successfully (which takes some time during which you can grab a cup of espresso) you can navigate to that folder to copy the game executables from it.

For FreeCell you need the following files:

  • FreeCell.exe.mui
  • CardGames.dll
  • FreeCell.exe
  • FreeCellMCE.png

For Minesweeper, you need the following files:

  • Minesweeper.exe.mui
  • MineSweeper.dll
  • MineSweeper.exe

All of them will be found strewn around in various sub-folders of C:\MNT\Windows\WinSXS folder so the easiest way is to search by name from there.

In Windows 7, those two games are installed in C:\Program Files\Microsoft Games\FreeCell and C:\Program Files\Microsoft Games\Minesweeper. You can make those folders in your Windows 10 or 11 installation or simply put the games anywhere you like, even both in the same folder if you want. The only thing you need to do is to put files with .mui extension in a sub-folder called en-US in your game folder.

Once that is done, don't forget to dismount the install.wim using the following command:

DISM.EXE /Unmount-Image /MountDir:C:\MNT /Discard

Then you can try running the games and... nothing happens.

I can already hear your frustrated groans, all this trouble for nothing, right? Well no, we are just missing one tiny little bit to get them working. Can you guess what? Yep, a license. That's right, Microsoft coded in a check at startup to prevent those games from being run on Windows systems older than Vista (they could have probably run just fine even on Windows XP).

There are two ways to bypass this check, one of them is to patch the executables directly (a single byte change in each), but that one is of dubious legality and there is a more elegant solution anyway.

Since both games rely on SLC.DLL API function SLGetWindowsInformationDWORD to check for enablement, and since they don't have a manifest that forces loading of SLC.DLL from C:\Windows\System32 folder, we can simply drop a replacement SLC.DLL which will always pass this enablement check into the game folder.

That's it, now you can finally play those old games which you enjoyed so much without having to install Windows 7 on some old PC or spin up a virtual machine just for that.

]]>
Tue, 16 Jul 2024 00:00:00 +0000
Is Linux finally ready for desktop use? Not really https://levicki.net/articles/2024/02/12/Is_Linux_finally_ready_for_desktop_use_Not_really.php Over the years I have been using Linux distros (Slackware, RedHat, LFS, Gentoo, CentOS, Debian, Arch). Most of my use was for servers, some of it were my attempts to use it for day to day desktop use.

Every time I used them for servers it was set it and (mostly) forget it since nowadays even Linux has automatic updates.

Every time I tried them for desktop use the experience was outright broken from the installer onwards. For example, Debian couldn't bother to include working Intel e1000 driver in their net install ISO several years ago. None of the systems came with ClearType font rendering out of the box and the only one you could set up to render fonts to look sharp as tack like in Windows instead of a blurry mess was Arch Linux but you needed arcane magic to configure it.

Just today I tried installing Debian 12.5 in a VirtualBox VM. That outright failed repeating a message about not being able to compile a keymap in a loop. Turns out that back in May 2023 it has been reported during 12.0 release candidate testing, but it is still not fixed in 12.5 release eight months later.

Yesterday, I installed the same Debian 12.5 with KDE Plasma on a HP ProBook 440 G9 laptop. That went fine until I got to the desktop. Then I decided I want to remote into it from the comfort of my desktop PC instead of using the tiny laptop screen and started searching for a built-in way to do so.

You can probably guess how that turned out -- in 2024 there's no remote desktop functionality out of the box which you can enable with a click of a checkbox in your desktop environment of choice. I tried installing TigerVNC server, TightVNC server, and finally Krfb (KDE specific VNC server) and I couldn't get any of them to work with the desktop environment I have chosen.

Today I sat down to try to figure it out in a VM and after finding a workaround for the installer bug, I managed to find a workaround for Krfb. It turns out that pipewire is missing in the default KDE Plasma install. This does not affect only Krfb, but also Zoom, OBS, and any other applications a regular user might need to use. To be able to add it, you need to use apt from the shell and be in the sudoers group.

I thought that shouldn't be hard, you just change your user type from Standard to Administrator in the Settings, click Apply, enter root password and you can sudo as much as you want from the Konsole... except it won't work not until you log out and log back in but until you reboot!

Apparently, KDE and Wayland in 2024 are incapable of checking user group membership and permissions when you log out and log back in again, let alone refresh them dynamically after you explicitly change them in Settings. So, a reboot later I had a working desktop sharing... until the desktop session locked itself and I wasn't able to unlock it remotely using UltraVNC. So much for that "unattended access" checkbox in Krfb.

If I add to that how poorly Linux CPU schedulers cope with modern CPUs and almost soft real-time nature of modern desktop use (streaming, gaming, remote access, DAW, etc), I can only conclude that Linux, with it's fractured distro and desktop environment landscape will never be ready for everyday desktop use. Poor man's internet browsing and office? Sure. Anything more advanced? Hell no. Now get off my lawn.

]]>
Mon, 12 Feb 2024 00:00:00 +0000
Daz Studio new New Scene dialog sucks https://levicki.net/articles/2024/01/20/Daz_Studio_new_New_Scene_dialog_sucks.php If you are using Daz Studio chances are that you have noticed that the latest couple of public beta versions have a modified New Scene dialog which now integrates notifications (read: promotions and ads), and 3D asset store directly into your new scene creation process.

So, what was so far a painless experience (press Ctrl+N or click File->New to get a blank new scene or your predefined new scene which you configured in Prefrences) has now turned into an excruciating torture of waiting for the "improved" New Scene dialog to check its cached notifications, check for updated notifications, download a bunch of media content, populate the window with thumbnail images and ads, just so you can click the Create button.

Daz Studio new New Scene dialog

It wouldn't be such a big deal if DAZ 3D developers have addressed numerous long standing bugs and issues in Daz Studio ranging from user interface glitches which have convoluted workarounds (animation timeline, need I say more?) to outright bugs that hang or crash the app and make you lose your work.

Instead, they have chosen (or more likely were forced) to focus on this "feature" who nobody (except perhaps Tafi shareholders looking to maximize profit before running DAZ 3D into the ground) have asked for. Daz Studio is right now a product which is in the second stage of enshitification (becoming actively hostile to the users in an attempt to extract more profit).

If you still have to use Daz Studio my advice is to start transitioning to some other tool and workflow, it was good while it lasted but it is clear that things can only get worse from here onwards. Until you do that, feel free to check my Downloads section and grab a script that will help you avoid exposure to their blatant upsell attempts every time you try to create a new scene.

]]>
Sat, 20 Jan 2024 00:00:00 +0000
Ghostlight support in Daz Studio 4.21.1.26 and above https://levicki.net/articles/2022/12/25/Ghostlight_support_in_Daz_Studio_421126_and_above.php Daz Studio 4.21.1.26 Public Beta has been released recently and it incorporates the Iray 2022.1.0 final version which adds official support for ghostlights.

For those not aware, ghostlight is a term used to refer to fully invisible light source in ray tracing -- one that is not visible to the camera and whose reflections are not visible on glossy surfaces of the objects in its vicinity. They are often used to create ambient lighting and attain a certain scene mood.

This addition is a game-changer for Iray because other ray tracing applications already had that feature for a while, and Iray users had to rely on the opacity trick which NVIDIA made unusable approximately one year ago by fixing a bug by adding a missing luminosity and opacity multiplication for emissive surfaces.

To read how ghostlights work in Iray, check the Iray official documentation. To read how to create ghostlights manually in Daz Studio, check the thread posted by their lead developer. But, since you are here, you might as well check the Downloads section for a script I wrote that will automatically prepare any object surface or built-in light emitter for use as a ghostlight.

 

 

]]>
Sun, 25 Dec 2022 00:00:00 +0000
Does Apple really curate their App Store? https://levicki.net/articles/2021/10/14/Does_Apple_really_curate_their_App_Store.php The Betteridge's law of headlines teaches us that the answer to any article title ending with a question mark is most likely "no". In this particular case the answer is not so black-and-white. Apple most certainly does curate their App Store to some extent, but the extent of this curation is governed by money, not by some higher moral prinicples as they like to claim in their ads.

An example of their corporate hypocrisy is nicely demonstrated in this screenshot I took in the iOS App Store.

Bitcoin ad in Apple App Store

We all know how much energy is wasted on Bitcoin mining and transactions, and how crypto currencies are mostly used for illegal activity. Bitcoin miners are buying old coal plants to power their business, so how can Apple claim with a straight face to be carbon neutral when they are not only taking money to advertise Bitcoin whose very nature is in direct opposition to their stated environmental goals, but also actively promoting it by placing the ad on the top of Suggested apps list in their, supposedly curated, App Store?

Aside from enormous energy waste and pollution, crypto currencies drive speculation in which gullible people are losing their savings, they drive prices of video cards causing shortages for gamers, developers, and graphics professionals alike, and they enable new forms of criminal behavior (ransomware, trade in illicit goods on dark web, untraceable transactions with Monero).

But the most important thing is that crypto currencies can never replace traditional currencies because they aren't scalable -- I don't know about you, but I would feel bad if I had to wait 10 minutes on average for my morning coffee payment to go through while consuming 1,795 KWh for a single transaction, and if I had to pay the transaction fee more expensive than the coffee itself.

It is about time that Apple puts their money where their mouth is, and ban all crypto apps from the App Store as crypto currencies have so far been a net negative both on the environment and on the society.

If they don't do so, they are proving that removing power chargers from their new products' packaging had nothing to do with environment and everything to do with money, just like those promoted crypto ads.

]]>
Thu, 14 Oct 2021 00:00:00 +0000
HOWTO: Fix IIS FTP server error 431 Failed to setup secure session https://levicki.net/articles/2021/06/10/HOWTO_Fix_IIS_FTP_server_error_431_Failed_to_setup_secure_session.php Today I was setting up an FTP server on a Windows Server using IIS, and I ran into a problem with establishing the TLS connection.

When trying to connect using FTP client I was getting the following error:

431 Failed to setup secure session.

After checking the IIS FTP logs I noticed a Win32 error code 2148074253 (0x8009030d) which translates into SEC_E_UNKNOWN_CREDENTIALS.

Given that I haven't even reached the point where I would be asked for user credentials, I suspected that this has something to do with the SSL certificate private key access and it turned out I was right.

The mistake I made is that I imported the SSL certificate using IIS Manager -- it turns out you have to import it using MMC Certificates snap-in (select Computer Account, Personal store), but you also have to mark the private key as exportable in order for TLS to work.

The reason is that the IIS is using SChannel for TLS and according to Microsoft Security Developer John Banes, SChannel has to be able to export the SSL certificate's private key:

On NT4 private keys used for server-side SSL must be marked exportable. The CSPs on NT4 don't support the operation necessary for SSL and so our SSL implementation (schannel) exports out the private key and uses it directly.

One would hope that 17 years later new CSPs would be available with a proper support for SSL/TLS which would eliminate the need for this requirement, but here we are.

TL;DR -- re-import your SSL certificate using MMC and mark the key as exportable and your IIS FTP server will work fine.

]]>
Thu, 10 Jun 2021 00:00:00 +0000
HOWTO: Run Active Directory DNS on a MikroTik router https://levicki.net/articles/2021/05/02/HOWTO_Run_Active_Directory_DNS_on_a_MikroTik_router.php This article assumes that you are already familiar with configuring DHCP, DNS, and static DNS entries on your MikroTik router. If you have not yet familiarized yourself with that subject, please read the fine manual, then come back here for the nitty-gritty.

DISCLAIMER:

Running Active Directory DNS on a router (or pretty much anywhere else except on a Windows DNS server) is not advised -- if you use DNSSEC, dynamic DNS record updates from DHCP, domain controller replication, or if you have more than one domain in your Active Directory forest please stop reading now, because as far as I know MikroTik cannot handle any of that.

If on the other hand you have a simple domain with one domain controller and you want your DNS to always be accessible for your home network devices even when your domain controller is down while installing Windows Updates without having to dedicate another Windows PC to run as a DNS server, then maybe this article can help you out. Commands to create DNS records shown below are based on Microsoft's TechNet article SRV Records Registered by Net Logon, and were completed by analyzing a live test domain.

So without further ado, here is the script:

/ip dns static add name=ns.example.com address=DNSIP
/ip dns static add name=dc.example.com address=DCIP
/ip dns static add name=example.com address=DCIP
/ip dns static add name=example.com ns=ns.example.com
/ip dns static add name=_gc._tcp.Default-First-Site-Name._sites.example.com srv-port=3268 srv-target=dc.example.com srv-weight=100
/ip dns static add name=_kerberos._tcp.Default-First-Site-Name._sites.example.com srv-port=88 srv-target=dc.example.com srv-weight=100
/ip dns static add name=_ldap._tcp.Default-First-Site-Name._sites.example.com srv-port=389 srv-target=dc.example.com srv-weight=100
/ip dns static add name=_gc._tcp.example.com srv-port=3268 srv-target=dc.example.com srv-weight=100
/ip dns static add name=_kerberos._tcp.example.com srv-port=88 srv-target=dc.example.com srv-weight=100
/ip dns static add name=_kpasswd._tcp.example.com srv-port=464 srv-target=dc.example.com srv-weight=100
/ip dns static add name=_ldap._tcp.example.com srv-port=389 srv-target=dc.example.com srv-weight=100
/ip dns static add name=_kerberos._udp.example.com srv-port=88 srv-target=dc.example.com srv-weight=100
/ip dns static add name=_kpasswd._udp.example.com srv-port=464 srv-target=dc.example.com srv-weight=100
/ip dns static add name=DomainDnsZones.example.com address=DCIP
/ip dns static add name=_ldap._tcp.DomainDnsZones.example.com srv-port=389 srv-target=dc.example.com srv-weight=100
/ip dns static add name=_ldap._tcp.Default-First-Site-Name._sites.DomainDnsZones.example.com srv-port=389 srv-target=dc.example.com srv-weight=100
/ip dns static add name=ForestDnsZones.example.com address=DCIP
/ip dns static add name=_ldap._tcp.ForestDnsZones.example.com srv-port=389 srv-target=dc.example.com srv-weight=100
/ip dns static add name=_ldap._tcp.Default-First-Site-Name._sites.ForestDnsZones.example.com srv-port=389 srv-target=dc.example.com srv-weight=100
/ip dns static add name=_msdcs.example.com ns=ns.example.com
/ip dns static add name=DsaGUID._msdcs.example.com cname=dc.example.com
/ip dns static add name=_kerberos._tcp.Default-First-Site-Name._sites.dc._msdcs.example.com srv-port=88 srv-target=dc.example.com srv-weight=100
/ip dns static add name=_ldap._tcp.Default-First-Site-Name._sites.dc._msdcs.example.com srv-port=389 srv-target=dc.example.com srv-weight=100
/ip dns static add name=_kerberos._tcp.dc._msdcs.example.com srv-port=88 srv-target=dc.example.com srv-weight=100
/ip dns static add name=_ldap._tcp.dc._msdcs.example.com srv-port=389 srv-target=dc.example.com srv-weight=100
/ip dns static add name=_ldap._tcp.DomainGUID.domains._msdcs.example.com srv-port=389 srv-target=dc.example.com srv-weight=100
/ip dns static add name=_ldap._tcp.Default-First-Site-Name._sites.gc._msdcs.example.com srv-port=389 srv-target=dc.example.com srv-weight=100
/ip dns static add name=_ldap._tcp.gc._msdcs.example.com srv-port=389 srv-target=dc.example.com srv-weight=100
/ip dns static add name=_ldap._tcp.pdc._msdcs.example.com srv-port=389 srv-target=dc.example.com srv-weight=100

However, before you rush to upload and run the above script on your MikroTik router, please note that you need to substitute a few placeholder values first, namely:

DNSIP                   - IP address of your MikroTik router
DCIP - IP address of your Domain Controller
example.com - FQDN of your domain (this should never be the same as your internet domain)
dc.example.com - FQDN of your domain controller (replace "dc" with domain controller's actual computer name)
Default-First-Site-Name - Replace with your actual Active Directory Site name if you renamed it
DsaGUID, DomainGUID - Replace with actual values found in your domain controller DNS server configuration

After replacing those values you can upload the script to your MikroTik router and run it using the following command:

/import filename

Where filename is the name of the uploaded file.

After verifying that those records are in place using WinBox GUI (IP -> DNS -> Static), you can test if everything works by logging in to your domain controller, replacing DNS IP address in network adapter's properties with your router's IP address, and then executing the following commands in the command prompt:

ipconfig /flushdns
dcdiag /test:dns

First command ensures that any cached DNS entries are purged, and the second one runs actual tests which should obviously pass without any errors.

After making sure DNS configuration is ok, login to any domain-joined PC, change it's DNS server IP address temporarily, and run the following commands in the command prompt:

ipconfig /flushdns
gpupdate /force

As in the previous test we first purge the DNS cache to make sure we are actually testing new DNS server, and the second command serves to check whether your domain-joined PC can still fetch the group policy updates from your domain controller.

If both tests pass without errors then congratulations are in order -- you can now safely change your DHCP server's DNS IP address to point to your MikroTik router and remove the DNS role from your domain controller.

]]>
Sun, 02 May 2021 00:00:00 +0000
DAZ Studio 4.12 is broken and so is DAZ 3D support https://levicki.net/articles/2019/12/10/DAZ_Studio_412_is_broken_and_so_is_DAZ_3D_support.php I am writing this article with a heavy heart after exhausting all legitimate channels for complaints.

Let's start with the forum. Approximately every two days or less it logs me out. Other users have complained as well so I am not the only one with this issue. I submitted a ticket and after going through a lengthy troubleshooting back and forth involving testing with several different browsers, three different computers with different operating systems, accessing from different locations which have different IP addresses and different routers/firewalls the issue was closed without resolution with the Cloudflare DDoS protection given as a possible explanation without a way to investigate further and fix.

On to DAZ Studio. Even the final release versions have serious bugs. When I say serious I mean bugs ranging from not being able to render using Iray to those that cause you to lose work.

1. dForce cloth physics simulation engine often causes the simulated clothing item to "explode", and if you don't react fast enough and cancel it right away, the results may vary from simply stopping with an error message and being unable to simulate anything until you restart the application, to outright crashing and losing unsaved work.

2. Iray rendering is a mess, current release version (4.12.0.86) as well as public beta (4.12.1.40) have serious issues with R440 NVIDIA drivers. How serious? Well switching to Iray preview in release version with 44x.xx drivers when you first launch the application with an empty scene will cause immediate CPU fallback. Furthermore, once you get a working Iray preview it can also happen that you get an error message saying that the renderer is in use once you hit the Render button. In beta version CPU fallback for empty scene seems to have been worked around, but you may get a CPU fallback by switching figure materials (for example changing eye color or clothing textures or even just tweaking the geometry a bit). I have two tickets open for two weeks and still not a word about a fix.

3. Application seems to use considerably more video memory than previous release (4.11), and as a result you will often have CPU fallback because memory allocation has failed.

4. When loading morphs with duplicate formulas, DAZ Studio does so extremely slowly -- figure which otherwise loads in 30 seconds takes more than 4 minutes to load when there are duplicate formulas. Yes, the product in question should be fixed, but this is also a parser issue which could be handled better so I opened a ticket. However, since it was a third party product (i.e. not sold on daz3d.com) they didn't even want to try to reproduce it, let alone consider making a performance improvement.

5. Once you face a problem and quit the application, which is something you will be doing very often, its process will remain active for dozens of seconds, apparently freeing memory and thus preventing you from launching it again immediately to continue working.

So what is DAZ Studio exactly then? Is it a professional application? I'd say that even though its output can look professional provided that you use high-quality assets and you know 3D, the way it is being developed and tested is far from professional -- in its current state it is no more than a toy 3D application given out for free to entice people to spend on 3D assets in the DAZ Store.

The store itself has a huge amount of 3D assets -- some of them very well done, and many others with various flaws such as bad clothing fits (some of which you can't fix yourself), and misaligned skin textures to name just a few. The prices for most items are outrageous, even if they are lower quality. For example, a Pro character bundle can go as high as $135 -- you get a base character, and one or two variations, you get a few clothing items, maybe a matching hair and that's it while just the character itself can cost you $45.

On top of it, there are a lot of characters which are not 3D sculpted, but are instead done by tweaking bog standard base body and head morph dials which you must own as well, and which you could have tweaked yourself and saved some money.

Finally, there is a matter of interactive licensing for every product -- you must pay additional $10-$50 per item for the right to use it outside of DAZ Studio, say in your 3D game.

DAZ Studio was supposedly used in creation of some popular movies, although to what extent it is not clear. In its current state I wouldn't recommend it if you are doing anything more serious than hobby 3D rendering.

Of course, NVIDIA has it's own share of blame for this, but more about that in my next article. Stay tuned.

]]>
Tue, 10 Dec 2019 00:00:00 +0000
HOWTO: Run multiple instances of DAZ Studio 4.12 https://levicki.net/articles/2019/10/16/HOWTO_Run_multiple_instances_of_DAZ_Studio_412.php Starting with DAZ Studio Public Beta version 4.12.1.16, it is no longer possible to start multiple instances of the application. The official justification for this change is as follows:

Only a single instance of the application, per release channel, is now allowed to run at a time; attempts to load registered file types via double-click or "open with" commands will now forward to a running instance (if any) instead of allowing concurrent instances that compete for resources and cause conflicts.

Frankly, I have no idea whose bright idea that was, but judging by the user comments, not a single one of them seems to appreciate this change. Why? Because it is breaking their workflow, and because nobody ever asked for it.

Here is where my reverse-engineering skills come to the rescue -- by following the procedure below you too can re-enable old behavior and launch multiple instances of DAZ Studio.

Disclaimer:

The patching procedure applies only to DAZ Studio Public Beta 4.12.1.16 -- attempting to apply this patch to any other DAZ Studio version can lead to outcomes ranging from DAZ Studio simply crashing or not starting to seemingly working properly but silently corrupting your data.

Note:

This patch is only disabling detection of another running instance, but if you encounter any issue while using the program after applying the patch, please first restore the backed up file and re-test to see if you can still reproduce the issue. Only if the issue still persists with the original file you should proceed to submit a bug report to DAZ 3D developers.
  1. If your DAZ Studio is running, close it.
  2. Download Swiss File Knife. Swiss File Knife is a command-line tool you will use to modify DAZ Studio.
  3. Right-click on downloaded sfk.exe file, select Properties, check the Unblock box, then click Apply.
  4. Copy sfk.exe to your C:\Windows\System32 folder.
  5. Navigate to C:\Program Files\DAZ 3D\DAZStudio4 Public Build and make a backup copy of DzCore.dll.
  6. Launch Command Prompt as Administrator.
  7. In Command Prompt window type the following command:

    cd C:\Program Files\DAZ 3D\DAZStudio4 Public Build
    After you press Enter it should read:

    C:\Program Files\DAZ 3D\DAZStudio4 Public Build>
  8. In Command Prompt window type the following command:

    sfk setbytes DzCore.dll 0xB6C9FC 0x33 -yes
    After you press Enter it should read:

    1 bytes written.
    If you are typing instead of copying and pasting, note that the first character after 0x is B, not 8.

  9. Close Command Prompt window.
  10. Enjoy running multiple instances of DAZ Studio.

Optional:

Remove sfk.exe from your C:\Windows\System32 folder if you believe you will no longer need it. Or better yet, keep it, because it will allow you to do other awesome things -- for a full list of features and help with examples visit Swiss File Knife website.

That's it, happy ray-tracing!

]]>
Wed, 16 Oct 2019 00:00:00 +0000
What is wrong with Windows 10? https://levicki.net/articles/2018/12/02/What_is_wrong_with_Windows_10.php After being forced to start using Windows 10 at work (the company I work for is licensing everything from Microsoft and paying big money for software assurance), I had plenty of time to look for proper justifications for my previously seemingly irrational hate for this "new" OS. People who are criticizing Windows 10 like I do are usually labeled as "afraid of change", but let me assure you — I am happy to embrace the change when it is meaningful and positive. Whether this is the case with Windows 10 and WaaS model I leave you to decide after reading this article.

More...]]>
Sun, 02 Dec 2018 00:00:00 +0000
Why I do not use Viber? https://levicki.net/articles/2017/11/25/Why_I_do_not_use_Viber.php Did you know that Viber Receive Service Messages option is enabled by default, thus enabling businesses to send you unsolicited messages? Did you know it will by default collect analytics data? If you are not privacy conscious you might not care about this, but how about not respecting user settings? Here is a notification which I just received:

More...]]>
Sat, 25 Nov 2017 00:00:00 +0000
HOWTO: Find public IP and place it on the clipboard using CMD https://levicki.net/articles/2016/12/28/HOWTO_Find_public_IP_and_place_it_on_the_clipboard_using_CMD.php If your computer sits on a network behind NAT it is difficult to discover your public IP address programatically without querying some web service. The problem with web services is that they are slow and unreliable, they may go through proxy and thus be unable to provide the right information, or the access to them may be blocked by firewall.

More...]]>
Wed, 28 Dec 2016 00:00:00 +0000
HOWTO: Manually update Adobe Flash Player ActiveX in Windows 8.1 https://levicki.net/articles/2016/04/07/HOWTO_Manually_update_Adobe_Flash_Player_ActiveX_in_Windows_81.php Adobe Flash Player ActiveX in Windows 8.1 is being updated through Windows Update. Unfortunately, that means you may be forced to run the unsecure version for up to two weeks until Microsoft gets off its lazy ass and publishes the update they receive from Adobe.

More...]]>
Thu, 07 Apr 2016 00:00:00 +0000
RANT: Microsoft Visual Studio 2015 https://levicki.net/articles/2015/12/03/RANT_Microsoft_Visual_Studio_2015.php UPDATE (2017/01/07):

Unwanted telemetry added into all executables built using Visual Studio 2015 prior to Update 3 (which I was the first to notice and write about below) has been picked up by other developers four months later on Reddit, and MSVC Dev Manager Steve Carroll has issued an official statement which you are advised to read.

More...]]>
Thu, 03 Dec 2015 00:00:00 +0000
Is Windows 10 free upgrade really free? https://levicki.net/articles/2015/06/21/Is_Windows_10_free_upgrade_really_free.php UPDATE (2015/07/28):

What I have been saying all along is now official information in the Windows 10 FAQWindows 10 free upgrade will make your existing retail license non-transferable.

Windows 10 FAQ

ORIGINAL ARTICLE

Microsoft has announced that people with valid licenses (be it OEM or Retail) for Windows 7 and Windows 8.1 will be able to upgrade to Windows 10 free of charge. Since then, there has been a lot of speculation what exactly is the meaning of the word "free" in that context.

More...]]>
Sun, 21 Jun 2015 00:00:00 +0000
RANT: Why you should stop using software products from Mozilla and Adobe? https://levicki.net/articles/2015/06/20/RANT_Why_you_should_stop_using_software_products_from_Mozilla_and_Adobe.php Because there are no other two applications in existence which have more disrespect for your personal preferences.

I wrote earlier why Firefox developers and designers are clueless when it comes to UI and UX, and despite all security risks I was holding off from upgrading my Firefox 24.8.1 ESR until today when I finally realized I will have to "go with the flow" if I want to have functional web. If you have asked yourself what could possibly become broken by not updating your browser for a while let me give an example — despite version 24.8.1 not being too far from 31.7.0 feature-wise, for some weird reasons Javascript was hanging when you click the video window controls on YouTube, and HD video was not available for many clips regardless of whether I tried to use the latest Flash Player or HTML5.

More...]]>
Sat, 20 Jun 2015 00:00:00 +0000
RANT: How NOT to write logic expressions! https://levicki.net/articles/2015/05/09/RANT_How_NOT_to_write_logic_expressions.php Not a single day goes by that I don't cringe when I see how some people write logic expressions in the code.

Consider the following typical code snippet which can probably be found in almost any project from small utility to linux kernel driver:

int func1(int param)
{
    switch (param) {
    case 0:
        set(DEVICE, 0);
        break;
    case 1:
        set(DEVICE, 1);
        break;
    case 2:
        set(DEVICE, 2);
        break;
    case 3:
        set(DEVICE, 3);
        break;
More...]]> 
			Sat, 09 May 2015 00:00:00 +0000
		
		
			RANT: Why you should not buy GTA V?
			https://levicki.net/articles/2015/05/07/RANT_Why_you_should_not_buy_GTA_V.php
			If you don't live under a rock you have probably seen the outrage of PC players who have been banned for using any kind of mods, even innocent cosmetic mods such as those which change field of view.

More...]]>
Thu, 07 May 2015 00:00:00 +0000
PHP, random numbers, and RDRAND CPU instruction https://levicki.net/articles/2015/04/11/PHP_random_numbers_and_RDRAND_CPU_instruction.php Why would you need to use RDRAND CPU instruction to generate random numbers in PHP when you can just call rand() function and be done with it? Well, take a look at this picture:

More...]]>
Sat, 11 Apr 2015 00:00:00 +0000
HOWTO: Convert audio CDs to m4a using EAC, QAAC, and iTunes https://levicki.net/articles/2015/04/05/HOWTO_Convert_audio_CDs_to_m4a_using_EAC_QAAC_and_iTunes.php This article does not condone piracy — the instructions provided are meant solely for making your legally purchased audio CDs available in your iTunes music collection.

More...]]>
Sun, 05 Apr 2015 00:00:00 +0000
LinkedIn teaching people bad security practices https://levicki.net/articles/2014/10/18/LinkedIn_teaching_people_bad_security_practices.php I cringe every time I visit my LinkedIn profile and see the following messages:

Your contacts are safe with us! We'll import your address book to suggest connections and help you manage your contacts. We'll only hang on to your password for a moment to authenticate your account, and we'll never email anyone without your permission.More...]]>
Sat, 18 Oct 2014 00:00:00 +0000
Massive website overhaul https://levicki.net/articles/2014/10/05/Massive_website_overhaul.php Well, it was about time to make it look and feel more modern, right? :)

I have also moved the website to a new server, goodbye Loopia AB.

You served me well, but unfortunately you could not solve the email problems I had (read: spam). So far there is no new content (just the migration of the existing content took enough time as it is), but be on the lookout for new stuff. You never know, maybe I become less lazy when it comes to posting content to my own website.

Stay tuned!

]]>
Sun, 05 Oct 2014 00:00:00 +0000
HOWTO: Force iTunes for Windows installer to use English during setup https://levicki.net/articles/2014/06/15/HOWTO_Force_iTunes_for_Windows_installer_to_use_English_during_setup.php Today I wanted to reinstall iTunes for Windows and after downloading the iTunes64Setup.exe from Apple website I was horrified to see that the setup wizard started up in Croatian language.

More...]]>
Sun, 15 Jun 2014 00:00:00 +0000
HOWTO: Get back the old download manager UI in Firefox https://levicki.net/articles/2013/12/20/HOWTO_Get_back_the_old_download_manager_UI_in_Firefox.php Since the release of Firefox 26.0 the about:config options useToolkitUI and useJSTransfer no longer work because old download manager UI has been removed from the code. If you just want it back, then skip to the bottom of the page. If you also want to hear a good explanation why new download UI is crap, then just keep reading :)

More...]]>
Fri, 20 Dec 2013 00:00:00 +0000
Security questions https://levicki.net/articles/2013/09/21/Security_questions.php Ah those security questions...

Or should I rather say "security questions"? Or insecurity questions? That really depends on whose security we are talking about. Usually it is not yours.

How many times you had to fill in those so called "security questions" on various websites at registration time including your e-banking? They are usually used in case you forget your password and you need it reset so you can gain access.

Examples of such questions include but are not limited to gems such as:

More...]]>
Sat, 21 Sep 2013 00:00:00 +0000
Visual Studio 2012 and CMFCEditBrowseCtrl browse button https://levicki.net/articles/2013/08/03/Visual_Studio_2012_and_CMFCEditBrowseCtrl_browse_button.php If you wrote an MFC dialog-based application using CMFCEditBrowseCtrl which worked properly until you updated to Visual Studio 2012 and now one of the controls is missing its browse button here is a workaround. Just add the line shown in bold to your code:

More...]]>
Sat, 03 Aug 2013 00:00:00 +0000
HOWTO: Avoid paying for RAID recovery software https://levicki.net/articles/2013/03/17/HOWTO_Avoid_paying_for_RAID_recovery_software.php So, you have a NAS, be it Synology, QNAP, NetGear, or some other device running Linux? Your device got broken and you lost access to your RAID0, RAID1 or RAID5 volume? Or you removed drives and updated firmware only to realize that it no longer recognizes the array when you tried putting drives back like I did recently? Well, you are in a right place, keep reading and I will show you how to restore access to your RAID volume without paying a single cent.

More...]]>
Sun, 17 Mar 2013 00:00:00 +0000
Next generation game consoles - do we need them? https://levicki.net/articles/2013/02/24/Next_generation_game_consoles_-_do_we_need_them.php Sony has recently announced their plans for their next-generation PlayStation 4 game console. Rough hardware specification has been published, and if you weren't sleeping through the last few days you have most likely already heard that "next-generation" console will essentially be a PC.

More...]]>
Sun, 24 Feb 2013 00:00:00 +0000
QuickOffice Pro HD fraud https://levicki.net/articles/2012/10/21/QuickOffice_Pro_HD_fraud.php After purchasing QuickOffice Pro HD for iPad I feel like I have just thrown away 20 USD.

More...]]>
Sun, 21 Oct 2012 00:00:00 +0000
Adobe Flash Player 11.3 Installer - annoying piece of shit https://levicki.net/articles/2012/07/31/Adobe_Flash_Player_113_Installer_-_annoying_piece_of_shit.php Just like the Flash itself, I can't wait for it to end up on a broken technology graveyard, especially because Adobe has made it to be so annoying.

More...]]>
Tue, 31 Jul 2012 00:00:00 +0000
HOWTO: Download offline Adobe Flash Player installer https://levicki.net/articles/2012/06/04/HOWTO_Download_offline_Adobe_Flash_Player_installer.php Update:

It seems that I have given way too much credit to Adobe by assuming that they are competent enough to keep CURRENT version of their offline Flash installer in a folder named current on their download server. This seems not to be the case as the links I posted in the original article are still pointing to version 11.2 while the current version is 11.4. Latest offline Adobe Flash Player installers can be downloaded here:

Flash Player Plug-in (All other browsers)

More...]]>
Mon, 04 Jun 2012 00:00:00 +0000
HOWTO: Build static library without debug information https://levicki.net/articles/2012/05/29/HOWTO_Build_static_library_without_debug_information.php It has become increasingly hard to disable certain compiler options in recent versions of Visual Studio such as 2010. In case you haven't noticed in project properties under C/C++ General section option Debug Information Format you can only select between C7 Compatible (/Z7), Program Database (/Zi) and Program Database for Edit and Continue (/ZI) — there is no Disabled option in the drop list.

More...]]>
Tue, 29 May 2012 00:00:00 +0000
HOWTO: Fix MTP USB driver problem in Windows 7 https://levicki.net/articles/2012/03/23/HOWTO_Fix_MTP_USB_driver_problem_in_Windows_7.php Few days ago I was installing Motorola Milestone 2 mobile phone drivers and there was an MTP USB Device that kept refusing to install properly.

More...]]>
Fri, 23 Mar 2012 00:00:00 +0000
Mass Effect 3 or how Electronic Arts and now also Bioware are full of shit https://levicki.net/articles/2012/02/29/Mass_Effect_3_or_how_Electronic_Arts_and_now_also_Bioware_are_full_of_shit.php It is time they get called out on this. I tried contacting GameSpy and Ars Technica regarding the subject but they haven't even bothered to reply my email, much less write something about it.

More...]]>
Wed, 29 Feb 2012 00:00:00 +0000
SSD benchmarks and reviews https://levicki.net/articles/2012/01/16/SSD_benchmarks_and_reviews.php I have noticed that some SSD benchmark and review sites such as thessdreview.com insist on benchmarking SSD performance using compressible data, because that is how their manufacturers are benchmarking them, and that is how they can claim such high performance numbers in some cases.

More...]]>
Mon, 16 Jan 2012 00:00:00 +0000
WinAMP ASIO output plugin https://levicki.net/articles/2011/09/07/WinAMP_ASIO_output_plugin.php If you are a lucky (rich?) owner of one of the sound cards that are capable of ASIO output, or if you are using ASIO4All driver on top of some cheap onboard soundcard, and if you are playing music using WinAMP, then this output plugin is what you have been looking for.

More...]]>
Wed, 07 Sep 2011 00:00:00 +0000
HOWTO: Stop Make Facebook Your Homepage pop-up https://levicki.net/articles/2011/08/01/HOWTO_Stop_Make_Facebook_Your_Homepage_pop-up.php Do you hate that annoying "Make Facebook Your Homepage" pop-up?

Do you feel insulted that Mark Zuckerberg believes you couldn't have done it on your own if you really wanted to?

Do you feel enraged because the message keeps showing every time you visit Facebook, and there is no opt-out?

Do you use Firefox?

If you answered "yes" to those questions, you are on a right page! Just follow those simple instructions to get rid of that pop-up once and for all:

More...]]>
Mon, 01 Aug 2011 00:00:00 +0000
HOWTO: Restore Firefox 4 context menu option order https://levicki.net/articles/2011/07/13/HOWTO_Restore_Firefox_4_context_menu_option_order.php Someone "smart" at Mozilla Corporation decided that instead of rolling up the sleeves and fixing that 10 year old bug with application shortcut keys not working when there is a plugin on a web page they should fiddle with reversing the order of "Open Link in New Window" and "Open Link in New Tab" context menu entries. Obviously, they never heard one of the most basic UI design rules — do not move things around with each new software release.

More...]]>
Wed, 13 Jul 2011 00:00:00 +0000
Google's Android is spyware https://levicki.net/articles/2011/06/18/Googles_Android_is_spyware.php Recently I have installed the 2.4.24 update which is presumably the last available update to be released for Motorola Milestone 2. Since I root my phone to be able to patch things that annoy me I have checked the stuff inside the filesystem to see what's new under the hood.

More...]]>
Sat, 18 Jun 2011 00:00:00 +0000
How Valve has ruined Left 4 Dead games https://levicki.net/articles/2011/05/19/How_Valve_has_ruined_Left_4_Dead_games.php I am not so proud to admit that I have wasted a lot of hours playing Left 4 Dead 1 and 2, but I just can't help myself — I love FPS games.

More...]]>
Thu, 19 May 2011 00:00:00 +0000
Adobe Flash Player spiralling out of control https://levicki.net/articles/2010/08/15/Adobe_Flash_Player_spiralling_out_of_control.php For years I have been advocating against Adobe Flash Player. My arguments have been:

  • It makes websites and their content less accessible for both normal people and for those with disabilities — try bookmarking a specific page on a purely Flash based website, copying text, using text-to-speech technology, or using your specific stylesheet to set fonts, foreground and background color.
  • Because the Flash file can also contain images, fonts, and video, and because there is no way to control what will be downloaded, it requires considerably more bandwidth and is thus discriminating against people with no broadband access in rural areas all over the world. Moreover, the bandwidth costs considerably more when you are surfing the web via mobile device such as your cell phone.
  • More...]]> Sun, 15 Aug 2010 00:00:00 +0000 ATI cannot make working video drivers https://levicki.net/articles/2010/08/08/ATI_cannot_make_working_video_drivers.php ATI video card owners (me included), let's just face it — ATI's only video driver and CCC developer seems to be too busy upgrading his video card to fix the ongoing issues which people are reporting all over the Internet, and to keep them from creeping back in.

    More...]]>
    Sun, 08 Aug 2010 00:00:00 +0000
    HOWTO: Encode video https://levicki.net/articles/2010/07/18/HOWTO_Encode_video.php I am pissed off by people producing junk videos so I want to give some advice here:

    • Do not encode interlaced material without selecting proper encoder option — you will destroy the video quality and compression will suffer as well.
    • Do not use bob and weave deinterlace methods — they suck and you get horrible ghosting with fast moving subjects. If you don't want to deinterlace properly (by using TempGaussMC), then don't deinterlace at all, just tell the encoder to encode as interlaced.
    • More...]]> Sun, 18 Jul 2010 00:00:00 +0000 Intel releases another broken BIOS for DX58SO desktop board https://levicki.net/articles/2010/03/06/Intel_releases_another_broken_BIOS_for_DX58SO_desktop_board.php If you own Intel Desktop Board DX58SO like I do, you should steer clear from BIOS updates 4598, and 5020 because they are broken.

      More...]]>
      Sat, 06 Mar 2010 00:00:00 +0000
      Five reasons why PC gaming is dying https://levicki.net/articles/2010/02/15/Five_reasons_why_PC_gaming_is_dying.php I keep hearing about PC gaming dying, and the main cause being cited is always piracy (yeah, as if piracy doesn't exist on other platforms).

      More...]]>
      Mon, 15 Feb 2010 00:00:00 +0000
      NVIDIA and Jen-Hsun Huang are full of it! https://levicki.net/articles/2009/11/07/NVIDIA_and_Jen-Hsun_Huang_are_full_of_it.php When a company CEO starts spinning PR bullshit you can immediately tell how bad things are going for that particular company.

      More...]]>
      Sat, 07 Nov 2009 00:00:00 +0000
      Star Wars: The Force Unleashed for PC https://levicki.net/articles/2009/11/03/Star_Wars_The_Force_Unleashed_for_PC.php Could have been a great game if it was PC only to begin with.

      I had a chance to play a bit, and I don't like it. I mean, graphics is great, physics nice as well, but the commands suck and the game has bugs.

      Occasional graphics corruption (Alt-Tab and back fixes it) can perhaps be attributed to an ATI driver problem with new HD 58xx series of cards, but game showing wrong keyboard shortcuts once you redefine them is unforgivable — you need to remember the original keys if you want to pass through the action sequences where you have to press certain keys in order.

      More...]]>
      Tue, 03 Nov 2009 00:00:00 +0000
      Greetings from San Francisco! https://levicki.net/articles/2009/09/20/Greetings_from_San_Francisco.php Well, here I am at the Parc 55 Hotel in San Francisco after some 14 hours of air travel. But first things first — my sincere thanks to Gunjan Rawal, and all those nice people from Intel Corporation who brought me to the beautifull San Francisco for the second time so I can attend IDF2009, and meet them at the annual Black Belt Developer meeting. Looking forward to seeing you all!

      More...]]>
      Sun, 20 Sep 2009 00:00:00 +0000
      ATI notebook graphics drivers https://levicki.net/articles/2009/08/22/ATI_notebook_graphics_drivers.php If you have a notebook with HD 2000, HD 3000, or HD 4000 series ATI mobile GPU you have probably noticed that almost all notebook vendors are not keeping up with ATI's monthly graphics driver update scheme.

      More...]]>
      Sat, 22 Aug 2009 00:00:00 +0000
      WINDOWS7: Windows Task Manager is still retarded! https://levicki.net/articles/2009/07/29/WINDOWS7_Windows_Task_Manager_is_still_retarded.php I got sick of so many positive reviews of Windows 7 on the Internet, and I have decided to start a series of articles tagged WINDOWS7: — you will learn what other reviewers "forgot" to tell you.

      More...]]>
      Wed, 29 Jul 2009 00:00:00 +0000
      ATI Catalyst 9.4 OpenGL bug with non-power of two textures https://levicki.net/articles/2009/04/21/ATI_Catalyst_94_OpenGL_bug_with_non-power_of_two_textures.php Sometimes I really wonder whether WHQL certificate has any other purpose except to allow hardware manufacturer's driver writer teams to pat themselves on the back when they get it.

      More...]]>
      Tue, 21 Apr 2009 00:00:00 +0000
      HOWTO: Disable wmpnscfg.exe https://levicki.net/articles/2009/04/04/HOWTO_Disable_wmpnscfgexe.php I am sure you too must be wondering how to disable wmpnscfg.exe from ever starting again, right? You've come to the right place!

      More...]]>
      Sat, 04 Apr 2009 00:00:00 +0000
      uTorrent: This program is freeware, if you paid for it you have been scammed https://levicki.net/articles/2009/03/31/uTorrent_This_program_is_freeware_if_you_paid_for_it_you_have_been_scammed.php Have you ever got a message box when you start uTorrent which says:

      This program is freeware, if you paid for it you have been scammed, and you should get a refund.

      Do you keep getting that message box each time, or almost each time you start the program? If your answer is "yes" then you are at a right place.

      Let me first explain the background — uTorrent is a freeware application but some bad people on the Internet have been selling it to those who are stupid enough to pay for it. Can you believe that? Neither can I, but there is more to it.

      More...]]>
      Tue, 31 Mar 2009 00:00:00 +0000
      Why Adobe Lightroom is limited and how to make it better https://levicki.net/articles/2009/03/30/Why_Adobe_Lightroom_is_limited_and_how_to_make_it_better.php You might have noticed that Adobe Lightroom only supports export plugins. The "official" reason why Adobe didn't expose processing plugin hooks is that those would kill non-destructive editing paradigm.

      More...]]>
      Mon, 30 Mar 2009 00:00:00 +0000
      Transcend StoreJet 25 Mobile https://levicki.net/articles/2009/03/25/Transcend_StoreJet_25_Mobile.php Update:

      The drive has died after being unplugged while the activity light was on. Since USB standard specifies SURPRISE_REMOVAL_OK flag for removable mass storage, something like that shouldn't have happened.

      Maybe it was just my bad luck, but I am suspecting that USB to SATA controller might be too sensitive to hot-plug events.

      Anyway, I got my money back since they didn't have another red one. Too bad because I really liked the drive.

      I also have to clarify that it actually had read speed of 34 MB/s in real use with both ends of Y cable attached — it looks like the amount of power available greatly affects the drive speed.

      More...]]>
      Wed, 25 Mar 2009 00:00:00 +0000
      HOWTO: Disable Data Execution Prevention in Vista https://levicki.net/articles/2009/03/23/HOWTO_Disable_Data_Execution_Prevention_in_Vista.php Few seconds ago I was playing Mirror's Edge and decided I need a trainer because some guards were annoying me. I downloaded one and started it and Windows Vista Data Execution Protection kindly shut down my game without asking me a single thing.

      More...]]>
      Mon, 23 Mar 2009 00:00:00 +0000
      Internet Explorer 8 final! https://levicki.net/articles/2009/03/20/Internet_Explorer_8_final.php Final version of Internet Explorer 8 has been released. Get your copy here.

      ]]>
      Fri, 20 Mar 2009 00:00:00 +0000
      Finally MySQL! https://levicki.net/articles/2009/03/15/Finally_MySQL.php For this website I use webhosting services provided by Loopia AB. The hosting package I am paying for has recently been upgraded to include one MySQL database free of charge. Yay!

      More...]]>
      Sun, 15 Mar 2009 00:00:00 +0000
      Some website fixes https://levicki.net/articles/2009/03/04/Some_website_fixes.php I am sure that you have already noticed the front page, and the black background.

      Those with a sharp eye for details may have noticed even more changes:

      • XHTML compliance logo is gone
      • It really doesn't matter as long as the content is well formed and as long as it renders as I have intended.
      • Title rendering improved
      • Now the titles can be rendered against any background color, they now display a tooltip in all browsers, and serve as an article permalink at the same time.
        More...]]> Wed, 04 Mar 2009 00:00:00 +0000 HOWTO: Enable Intel VT on Sony VAIO notebook with AMI Aptio EFI BIOS https://levicki.net/articles/2009/02/20/HOWTO_Enable_Intel_VT_on_Sony_VAIO_notebook_with_AMI_Aptio_EFI_BIOS.php UPDATE (2010-01-09 @ 22:58:00 CET):

        I have just noticed that there is an updated BIOS available for download for my Sony VAIO VGN-FW190E:

        This utility updates the BIOS to version R0270Y0 to add support for the Intel® Virtualization Technology and provides the ability to enable or disable this feature within the BIOS settings.
        More...]]>
        Fri, 20 Feb 2009 00:00:00 +0000
        Sony Notebook Control Utilities sucks! https://levicki.net/articles/2009/02/02/Sony_Notebook_Control_Utilities_sucks.php Well, I have this notebook, Sony VAIO VGN-FW190E and after wrestling with Windows Vista which came with it, and trying to make it less irritating and annoying I finally gave up and installed Windows XP SP3 instead.

        More...]]>
        Mon, 02 Feb 2009 00:00:00 +0000
        HOWTO: Disable advertised shortcuts https://levicki.net/articles/2008/12/27/HOWTO_Disable_advertised_shortcuts.php I hope the author of the original article will forgive me for borrowing a part of his text with some editing on my side.

        More...]]>
        Sat, 27 Dec 2008 00:00:00 +0000
        HOWTO: Sony Visual Communication Camera in Vista x64 https://levicki.net/articles/2008/12/22/HOWTO_Sony_Visual_Communication_Camera_in_Vista_x64.php I have a Sony VAIO VGN-FW190E notebook which I got as a part of my Intel Black Belt award. It came with preinstalled Microsoft Windows Vista Home Premium SP1 32-bit operating system.

        More...]]>
        Mon, 22 Dec 2008 00:00:00 +0000
        The Bat! (or how some programs never become reliable enough) https://levicki.net/articles/2008/12/17/The_Bat_or_how_some_programs_never_become_reliable_enough.php Several years ago I was test-driving The Bat! email client to see if it can fit in into my usage pattern. It offered some really neat and advanced features such as templates and macros that made composing and replying much easier and faster, and outgoing mail sorting which made the whole communication process more manageable.

        More...]]>
        Wed, 17 Dec 2008 00:00:00 +0000
        More Firefox annoyances https://levicki.net/articles/2008/11/10/More_Firefox_annoyances.php Just when you think that the damn thing can't get more annoying you are in for a big surprise.

        Let there be a website which requires username and password to post comments. Let that username be user and let the password be empty. Now that we have a context, visit the site using Firefox and post a comment — Firefox will offer you to remember the password but clicking the Remember button won't do a single thing. Yes, that's right — It won't even close the damn bar!

        Bug or a feature? I say it's a bug, and if it is on purpose it is still a bug — you can't offer an option to the user, and then ignore their input.

        More...]]>
        Mon, 10 Nov 2008 00:00:00 +0000
        Modal dialogs are evil! https://levicki.net/articles/2008/11/02/Modal_dialogs_are_evil.php God how I hate modal dialogs!

        Have you ever filled some info on some website and got a page showing your new username and password? You then open a login page in another tab, and you figure that you have to go back to the previous tab to copy/paste the username or the password in order to log in successfully because they are too hard to remember. Guess what — you can't!

        Be it Firefox, Internet Exlporer or Opera it will stuff a modal prompt in your face and you won't be able to switch tabs!

        More...]]>
        Sun, 02 Nov 2008 00:00:00 +0000
        VISTA: Windows Mail https://levicki.net/articles/2008/10/25/VISTA_Windows_Mail.php As you probably know already, I have recently got a laptop with Microsoft Windows Vista Home Premium SP1 operating system preinstalled. Despite me being very unimpressed by the OS itself I will keep it so I can rant about things I believe are broken from a standpoint of an average user and this article is the first in the series.

        More...]]>
        Sat, 25 Oct 2008 00:00:00 +0000
        Site update almost done! https://levicki.net/articles/2008/10/15/Site_update_almost_done.php Phew!

        I have completely revamped the site "engine" — a lot of coding in PHP was involved, as well as a lot of manual article editing.

        Fortunately, those editing days are now thing of the past — I will never have to edit each article again when I want to change site layout or functionality. This project is becoming more and more CMS like and the funny thing is that everything works with just PHP and XML — absolutely no MySQL in sight (yet).

        In the next few days my next update target will be the photo gallery — some people complained that navigation is hard (Hi Bojana!), soon they will get a flash based gallery viewer with all the associated bells and whistles. Don't worry though — it won't make the site any slower or bigger than it is.

        More...]]>
        Wed, 15 Oct 2008 00:00:00 +0000
        Site update in progress https://levicki.net/articles/2008/10/12/Site_update_in_progress.php Just wanted to let you know that a massive site code rewrite is in progress and that some content (mostly articles) will not be accessible until the update is finished. Please, be patient.

        More...]]>
        Sun, 12 Oct 2008 00:00:00 +0000
        Adobe Reader 9 installs shovelware https://levicki.net/articles/2008/10/03/Adobe_Reader_9_installs_shovelware.php Yes, you read that right — Adobe Reader 9 installer carries shovelware which gets installed without your consent even if you cancel the setup.

        More...]]>
        Fri, 03 Oct 2008 00:00:00 +0000
        Ars Technica reviews AmigaOS 4.1 https://levicki.net/articles/2008/10/01/Ars_Technica_reviews_AmigaOS_41.php It's alive! It is almost unimaginable that AmigaOS is still alive after 23 years! You too should read Amiga OS 4.1 review done by Ars Technica.

        More...]]>
        Wed, 01 Oct 2008 00:00:00 +0000
        HOWTO: Open FLV files using VirtualDub https://levicki.net/articles/2008/09/27/HOWTO_Open_FLV_files_using_VirtualDub.php Previous tip dealt with WMV files, this one teaches you how to open those pesky FLV files (yeah, the ones you get off the youtube.com) in VirtualDub.

        More...]]>
        Sat, 27 Sep 2008 00:00:00 +0000
        HOWTO: Open WMV files using VirtualDub https://levicki.net/articles/2008/09/27/HOWTO_Open_WMV_files_using_VirtualDub.php You all know about VirtualDub — great freeware video editing tool written and maintained by Avery Lee. Most of you already know that with the help of external plugins (most of them written so far by fccHandler it can also open MPEG-2 and WMV files, as well as handle video formats that contain AC-3 audio streams.

        More...]]>
        Sat, 27 Sep 2008 00:00:00 +0000
        Intel Black Belt award local media coverage https://levicki.net/articles/2008/09/01/Intel_Black_Belt_award_local_media_coverage.php After receiving the Intel Black Belt award I was interviewed for a local newspaper Politika.

        More...]]>
        Mon, 01 Sep 2008 00:00:00 +0000
        Intel announces Black Belt Software Developer title https://levicki.net/articles/2008/08/20/Intel_announces_Black_Belt_Software_Developer_title.php Miss Gunjan S. Rawal, marketing manager of Intel Software Network has announced the launch of a new recognition and award program for the most active and contributing ISN community members. Read all about it: Announcing the Intel Black Belt Software Developers.

        More...]]>
        Wed, 20 Aug 2008 00:00:00 +0000
        Presenting the very first Intel Black Belt Software Developer https://levicki.net/articles/2008/08/20/Presenting_the_very_first_Intel_Black_Belt_Software_Developer.php Scott Apeland, director of Intel Developer Network has written about recently lauched award and recognition program, and presented Intel's very first Black Belt Software Developer to the public: Our first Intel Black Belt Software Developer.

        More...]]>
        Wed, 20 Aug 2008 00:00:00 +0000
        When Fuji S6500FD is not enough anymore https://levicki.net/articles/2008/07/10/When_Fuji_S6500FD_is_not_enough_anymore.php UPDATE (2008/08/14):

        I have bitten the bullet and got myself Canon EOS 40D [review] instead. Read about my DSLR shopping experience here.


        I have sold my Fuji S6500FD camera few days ago. Most likely I will be getting myself a Canon EOS 450D [review] as a replacement.

        More...]]>
        Thu, 10 Jul 2008 00:00:00 +0000
        AwesomeBar is crap and it has to go https://levicki.net/articles/2008/06/30/AwesomeBar_is_crap_and_it_has_to_go.php So you downloaded Firefox 3, installed it and hoped that this time you won't get any unexpected UI changes which would break your browsing habits?

        More...]]>
        Mon, 30 Jun 2008 00:00:00 +0000
        VirtualDub author pissed off by DVD anti-piracy ads https://levicki.net/articles/2008/06/07/VirtualDub_author_pissed_off_by_DVD_anti-piracy_ads.php Another proof that DRM is nothing else than a grand failure is recent blog post written by Avery Lee a.k.a. Phaeron, the author of VirtualDub video processing aplication.

        More...]]>
        Sat, 07 Jun 2008 00:00:00 +0000
        Online https://levicki.net/articles/2008/05/17/Online.php As I said here my LCD monitor ceased to work because of two bad capacitors in its switching power supply.

        More...]]>
        Sat, 17 May 2008 00:00:00 +0000
        RapidShare sucks https://levicki.net/articles/2008/05/15/RapidShare_sucks.php I mean really — RAPIDSHARE.COM SUCKS BIG TIME!!!

        More...]]>
        Thu, 15 May 2008 00:00:00 +0000
        Windows XP SP3 Final available for download! https://levicki.net/articles/2008/05/07/Windows_XP_SP3_Final_available_for_download.php Microsoft has finally released long awaited update for the Windows XP operating system — Windows XP Service Pack 3.

        More...]]>
        Wed, 07 May 2008 00:00:00 +0000
        3Com is lame https://levicki.net/articles/2008/05/05/3Com_is_lame.php 3Com, once a respectable name in networking and communications industry, well known for their very reliable and fast 3C90x series of PCI network adapters is now just a shadow of its former self.

        More...]]>
        Mon, 05 May 2008 00:00:00 +0000
        Who the fuck is Thomas Stewart Von Drashek https://levicki.net/articles/2008/04/30/Who_the_fuck_is_Thomas_Stewart_Von_Drashek.php Seriously, who the fuck is that Thomas Stewart Von Drashek?!?

        Let me tell you — I don't give a shit who that diligent comment spammer is, but because of him as of today The Inquirer is off my website link list. I also won't torment myself by reading their news anymore, because almost every news article is now followed by his verbal diarrhea.

        I thought about the possibility that someone from the Inquirer is doing that in order to provoke comments. If that is true, they should better stop it because it wasn't funny the first time — now it is outright annoying and I am not alone judging by the comments of other readers.

        More...]]>
        Wed, 30 Apr 2008 00:00:00 +0000
        Offline https://levicki.net/articles/2008/04/17/Offline.php I am posting this to inform everyone that the reason I am not updating my site and not contacting you or getting any work I promised to do for you done is that my LCD monitor is dead and I am currently waiting for someone to pick it up for servicing. That means I do not have a computer at the moment and that state is obviously going to last a few days.

        More...]]>
        Thu, 17 Apr 2008 00:00:00 +0000
        12th Belgrade Fashion Selection - Jacobs Fashion Selection https://levicki.net/articles/2008/04/03/12th_Belgrade_Fashion_Selection_-_Jacobs_Fashion_Selection.php Yesterday I got an extremely interesting email from Akemi Doi!

        More...]]>
        Thu, 03 Apr 2008 00:00:00 +0000
        Creative Labs reanimation attempt after PR suicide https://levicki.net/articles/2008/04/02/Creative_Labs_reanimation_attempt_after_PR_suicide.php If you haven't read my previous article titled "Creative Labs commits PR suicide", you should do that first and then come back here.

        More...]]>
        Wed, 02 Apr 2008 00:00:00 +0000
        Creative Labs commits PR suicide https://levicki.net/articles/2008/03/30/Creative_Labs_commits_PR_suicide.php Just when you think they couldn't sink any deeper they prove you wrong. This time it is Mr. Phil O'Shaughnessy, the vice president of Corporate Communications who has just sent Cease & Desist letter to daniel_k via this forum post.

        More...]]>
        Sun, 30 Mar 2008 00:00:00 +0000
        Gigabyte P35-DS3R - The Dark Side https://levicki.net/articles/2008/03/30/Gigabyte_P35-DS3R_-_The_Dark_Side.php I have purchased a new mainboard on January 15, 2008 in anticipation of Intel's 45nm CPUs codenamed Penryn. I was forced into an upgrade from Intel's excellent D975XBX mainboard because it was an EOL product and there were no plans of validation for those new CPUs.

        More...]]>
        Sun, 30 Mar 2008 00:00:00 +0000
        Pre-emptive Raymond Chen comment - Igor Levicki sucks https://levicki.net/articles/2008/03/14/Pre-emptive_Raymond_Chen_comment_-_Igor_Levicki_sucks.php UPDATE (2008-03-25):

        After getting back from a vacation, Raymond said that he didn't censor my posts. They were "eaten" by an overzealous comment filtering system. I apologize for accusing him of censorship — sorry Raymond!

        He also said he was sorry that I found those drag'n'drop articles boring and asked "How much more boring can you get than scroll bars!" — easy, just keep writing about COM! ;)

        More...]]>
        Fri, 14 Mar 2008 00:00:00 +0000
        Last Checkin Chicken https://levicki.net/articles/2008/02/28/Last_Checkin_Chicken.php Raymond Chen blogs about a game called Last Checkin Chicken Microsoft developers play just before product release to manufacturing.

        More...]]>
        Thu, 28 Feb 2008 00:00:00 +0000
        ASUS EN8800GT G HTDP 512M no temperature and fan control https://levicki.net/articles/2008/02/01/ASUS_EN8800GT_G_HTDP_512M_no_temperature_and_fan_control.php I have recently bought an ASUS EN8800GT/G/HTDP/512M, because I needed CUDA 1.1 compliant device for my work. It was a sort of half-upgrade/half-downgrade purchase because I have replaced my trusty 8800GTX which is considerably faster card with more RAM, but it lacks the feature I needed, and it runs a lot hotter than the new generation of cards.

        More...]]>
        Fri, 01 Feb 2008 00:00:00 +0000
        HOWTO: Play Half-Life on a system with more than 2 GB of RAM https://levicki.net/articles/2008/01/26/HOWTO_Play_Half-Life_on_a_system_with_more_than_2_GB_of_RAM.php I have recently added another 2 GB of RAM to be able to perform some testing for a friend of mine, and I installed Windows XP Professional x64 Edition to be able to utilize all 4 GB of RAM from his test application.

        More...]]>
        Sat, 26 Jan 2008 00:00:00 +0000
        Poor Windows Media Player setup experience https://levicki.net/articles/2008/01/25/Poor_Windows_Media_Player_setup_experience.php Don't you sometimes have an urge to smash your computer into little bits and pieces with a large hammer?!?

        I often do.

        Obviously, it is not our computer's fault that we run lousy software on it which in turn provokes such dark emotions from the deepest corners of our souls. This rant will be short because I have a headache so I will just give an example of what decent software should not do.

        As an example I am going to use Windows Media Player 11 setup. Actually, Windows Media Player 10 would do nicely too because it is guilty of the same thing.

        More...]]>
        Fri, 25 Jan 2008 00:00:00 +0000
        HOWTO: Recover Windows after mainboard replacement https://levicki.net/articles/2008/01/20/HOWTO_Recover_Windows_after_mainboard_replacement.php We all know that there are certain situations where being hasty can cost us a lot of effort. Recently it happened to me, only I decided to find another way out, and I succeeded.

        More...]]>
        Sun, 20 Jan 2008 00:00:00 +0000
        Penryn CPUs work on Intel D975XBX2 mainboard https://levicki.net/articles/2008/01/05/Penryn_CPUs_work_on_Intel_D975XBX2_mainboard.php If you update to the latest BIOS (which is version 2809 dated December 13, 2007 at the moment of this writing) your mainboard will support latest and greatest 45nm CPUs from Intel which are about to hit the stores on January 20th — namely Core 2 Duo E8xxx and perhaps even Core 2 Quad E9xxx series.

        More...]]>
        Sat, 05 Jan 2008 00:00:00 +0000
        Fancy titles https://levicki.net/articles/2007/12/29/Fancy_titles.php This website now renders titles into PNG images and sends them to your browser. Not only that, it also caches already rendered titles on server so it doesn't have to perform the same work twice.

        More...]]>
        Sat, 29 Dec 2007 00:00:00 +0000
        Western Digital DRM saga https://levicki.net/articles/2007/12/16/Western_Digital_DRM_saga.php On his news website my friend Nikola Stojanovic wrote about WDC My Book World Edition external storage blocking access to 38 forbidden file types.

        More...]]>
        Sun, 16 Dec 2007 00:00:00 +0000
        Is Raymond Chen a bot? https://levicki.net/articles/2007/12/11/Is_Raymond_Chen_a_bot.php In his recent post Raymond Chen wonders if he is perhaps some sort of artificial intelligence (or just simply insensitive?). Actually he has been accused of being a bot because of the way he answered an email question.

        More...]]>
        Tue, 11 Dec 2007 00:00:00 +0000
        New site section - Blogments https://levicki.net/articles/2007/12/11/New_site_section_-_Blogments.php Hi everyone. I have just opened a new section on my website called Blogments.

        In that section I will post my thoughts on other people's blog entries and thanks to some new PHP code I wrote, my thoughts will be linked to the original blog post using PingBack protocol. Yes, I know that many bloggers think that pingbacks suck big time (I hate it when I see them while reading comments on someone's blog too) but I intend to use them responsibly.

        ]]>
        Tue, 11 Dec 2007 00:00:00 +0000
        Larry Osterman on vacation https://levicki.net/articles/2007/12/09/Larry_Osterman_on_vacation.php This post is a test of a PingBack/TrackBack client which I just implemented in PHP on my website so I can post my comments and opinions here instead on other people's blogs and still get their attention to what I have to say.

        More...]]>
        Sun, 09 Dec 2007 00:00:00 +0000
        Windows Vista Explorer drops leading space from filenames https://levicki.net/articles/2007/12/09/Windows_Vista_Explorer_drops_leading_space_from_filenames.php Michael Kaplan writes about Social Engineering in Windows Explorer on his blog addressing an issue of Windows Explorer dropping out leading spaces from filenames.

        More...]]>
        Sun, 09 Dec 2007 00:00:00 +0000
        Mara reopened! https://levicki.net/articles/2007/11/25/Mara_reopened.php Splendid news everyone!!!

        SUR "Mara" has just reopened their business at a new location in Novopazarska street (ex Sime Milosevica street)!

        For those who are too young to remember, they started their business in 1987 in a small red kiosk selling delicious yet fast food on the square between Petrogradska street (ex Lenjingradska street), Milesevska street (ex Save Kovacevica street), and Vojvode Dragomira street. At that time I was living in an apartment bare 50 meters away and they were my favorite food source.

        More...]]>
        Sun, 25 Nov 2007 00:00:00 +0000
        Need For Speed - Pro Street on a single layer DVD https://levicki.net/articles/2007/11/24/Need_For_Speed_-_Pro_Street_on_a_single_layer_DVD.php Every once in a while I get stunned by the ignorance... no — stupidity of the software developers and publishers. Same goes for their disrespect of their customers' hard earned money. Latest example is Need For Speed - Pro Street game.

        More...]]>
        Sat, 24 Nov 2007 00:00:00 +0000
        Why is Microsoft Windows Vista such a failure? https://levicki.net/articles/2007/11/22/Why_is_Microsoft_Windows_Vista_such_a_failure.php First off, I had the following system configuration when I tried Vista:

        • Chieftec LCX-01-B-B-SL
        • Seasonic SS-600HT
        • Intel D975XBX Bad Axe
        • Core 2 Duo E6300
        • Zalman CNPS 9500 LED
        • Corsair TWIN2X2048-6400
        • EVGA e-GeForce 8800GTX
        • 1 x WDC WD1500ADFD-00NLR0 (150GB Raptor as a system drive)
        • 2 x WDC WD2500YS-01SHB0 Matrix RAID (400GB strip, 32GB mirror)
        • Pioneer DVR-111DBK

        As you can see my computer was built using high-quality components. It has been working for over a year without a single BSOD under Windows XP SP2.

        More...]]>
        Thu, 22 Nov 2007 00:00:00 +0000
        11th Belgrade Fashion Selection - Wellness Fashion Selection https://levicki.net/articles/2007/11/05/11th_Belgrade_Fashion_Selection_-_Wellness_Fashion_Selection.php It was 11th October when I decided that it would be nice to visit Wellness Fashion Selection, and to take some fashion photos.

        More...]]>
        Mon, 05 Nov 2007 00:00:00 +0000
        Photo categories are now online https://levicki.net/articles/2007/11/05/Photo_categories_are_now_online.php I have finally finished the PHP code for my photo gallery. Now you have it all neatly sorted by categories. What are you waiting for? Click here to see my photo gallery!

        More...]]>
        Mon, 05 Nov 2007 00:00:00 +0000
        Bioshock - Process Explorer use banned by Sony SecuROM protection https://levicki.net/articles/2007/11/03/Bioshock_-_Process_Explorer_use_banned_by_Sony_SecuROM_protection.php Every now and then someone writes about DRM evils but usually they fail to convey a point to the Average Joe. Now it is my turn.

        More...]]>
        Sat, 03 Nov 2007 00:00:00 +0000
        Apacer Audio Steno AU240 mp3 and wma player https://levicki.net/articles/2007/09/27/Apacer_Audio_Steno_AU240_mp3_and_wma_player.php I have just purchased Apacer Audio Steno AU240 mp3 player for the price of 30€ in a local computer store.

        More...]]>
        Thu, 27 Sep 2007 00:00:00 +0000
        Minor site update https://levicki.net/articles/2007/09/25/Minor_site_update.php In an attempt to make it easier for visitors to browse my photo gallery which has 193 photos at the moment, I have wrote some php code and made some minor modifications to enable introduction of photo categories.

        More...]]>
        Tue, 25 Sep 2007 00:00:00 +0000
        Save power and eyes by not using white background for web sites https://levicki.net/articles/2007/09/10/Save_power_and_eyes_by_not_using_white_background_for_web_sites.php I am seriously pissed off by various websites which keep using glaring white background as if white is the only available color. With the wide adoption of LCD monitors this issue has been exaggerated even further because of a ridiculously high contrast ratios which their manufacturers keep pursuing and that is without even mentioning special contrast/brightness enhancement technologies like TrueBright.

        More...]]>
        Mon, 10 Sep 2007 00:00:00 +0000
        Creative said PCI-Express bus bad for audio, but they changed their mind https://levicki.net/articles/2007/09/08/Creative_said_PCI-Express_bus_bad_for_audio_but_they_changed_their_mind.php It was quite some time ago, and people have a tendency to forget but I have a memory like an elephant so let me quickly remind you what was said on August 31, 2005 roughly two years ago from now.

        More...]]>
        Sat, 08 Sep 2007 00:00:00 +0000
        Serbian (Latin, Programmers) Keyboard Layout for 32-bit and 64-bit Windows https://levicki.net/articles/2007/09/08/Serbian_Latin_Programmers_Keyboard_Layout_for_32-bit_and_64-bit_Windows.php If you are not using Serbian language you can stop reading now, thank you.

        Long time ago I have made custom Serbian (Latin) keyboard layout but it was only for Windows XP. After MSKLC 1.4 has been released I have updated it and now it works for 32-bit and 64-bit versions Windows. Features are:

        • Fully compatible — built using MSKLC 1.4
        • Easy installation
        • More...]]> Sat, 08 Sep 2007 00:00:00 +0000 It is 2007 and Outlook is still retarded https://levicki.net/articles/2007/08/30/It_is_2007_and_Outlook_is_still_retarded.php Update (2008-03-14):

          KC Lemson has read this post and she said that she has forwarded my feedback to the Outlook team. I have since cleared the article of the word "moron" (which I used twice in my frustration), because the points I am making about UI design are still valid and more easily digested without it.


          Quite some time ago when I still had the blog instead of this site I ranted about applications which seem to be designed to piss you off. My example at that time was Outlook email client. I am reproducing that rant here so we can establish a context:

          More...]]>
          Thu, 30 Aug 2007 00:00:00 +0000
          Do not use FlashGet download manager https://levicki.net/articles/2007/08/26/Do_not_use_FlashGet_download_manager.php I have used FlashGet for a long time because I liked it, simple and fast, clean interface. But not anymore.

          More...]]>
          Sun, 26 Aug 2007 00:00:00 +0000
          Variable mp3 bitrate sucks for video https://levicki.net/articles/2007/08/26/Variable_mp3_bitrate_sucks_for_video.php Every now and then I have to edit an AVI file in which some prick has used variable bitrate mp3 for audio track.

          I can't tell you how much that pisses me off. There is no benefit in using variable bitrate mp3 for video clips — file won't be any smaller, quality won't be any better, and you are just creating synchronization nightmare for those who would like to edit it.

          If you still don't understand how VBR works, here is a brief reminder. If you assign 128kbps CBR to audio track, it will have the same bitrate during the whole clip. If you assign 128kbps VBR (and that is what most of those pricks are doing), then some parts of the audio will be encoded with 112kbps, some with 144kbps, but on average you will still have 128kbps so the file size will stay the same and you have just made editing harder. High quality audio cannot fit in less than 256kbps anyway so why bother assigning more bits to explosions and less to dialogs? Beats me.

          More...]]>
          Sun, 26 Aug 2007 00:00:00 +0000
          New section for your enjoyment - Stories https://levicki.net/articles/2007/08/17/New_section_for_your_enjoyment_-_Stories.php Good news, everyone!

          I have just opened the Stories section! This is the place where you will be able to read about some of the things that happened to me in the (not so distant) past.

          I wanted to tell a story and I figured out that it doesn't fit in any of the existing categories so I thought "Why not expand?" and here it is — the Stories section. Enjoy!

          ]]>
          Fri, 17 Aug 2007 00:00:00 +0000
          RivaTuner 2.xx Intel Core CPU Temperature Monitoring Plugin https://levicki.net/articles/2007/08/17/RivaTuner_2xx_Intel_Core_CPU_Temperature_Monitoring_Plugin.php You have all at least heard about RivaTuner, the ultimate graphics card tweaking and overclocking tool. In case you still don't have this great tool in your collection, you should really go and fetch it from here.

          More...]]>
          Fri, 17 Aug 2007 00:00:00 +0000
          The story of the vfdwin 2.1 64-bit driver patch https://levicki.net/articles/2007/08/17/The_story_of_the_vfdwin_21_64-bit_driver_patch.php Some time ago I experienced an urgent need for the 64-bit version of vfdwin 2.1, which in case you didn't know is a Virtual Floppy Drive 2.1. It is a very handy tool written by Ken Kato that allows you to create or unpack floppy images without having the physical floppy drive by means of drive emulation.

          More...]]>
          Fri, 17 Aug 2007 00:00:00 +0000
          Firefox becomes more annoying https://levicki.net/articles/2007/08/12/Firefox_becomes_more_annoying.php Have you noticed how this Firefox thing is becoming more and more annoying?

          • browser.enable_automatic_image_resizing
          • image.animation_mode
          • browser.tabs.closeButtons
          • browser.urlbar.hideGoButton
          • network.prefetch-next
          • ...

          You are surely asking yourself WTF is this list, right?

          Well, it is a growing list of options which are not accessible from the Firefox Preferences but only via about:config. What do they have in common? They are all set to an unreasonable default, which is different from what you have been used to so far. I guess someone is bored out there and has decided to piss people off this way.

          More...]]>
          Sun, 12 Aug 2007 00:00:00 +0000
          Have a cookie! https://levicki.net/articles/2007/07/27/Have_a_cookie.php Have a cookie! Seriously, this site now uses cookies to remember your last visit so it can show a neat little NEW icon next to the link to a content which has been added or modified since your last visit.

          More...]]>
          Fri, 27 Jul 2007 00:00:00 +0000
          HOWTO: Keep Windows in good shape https://levicki.net/articles/2007/07/27/HOWTO_Keep_Windows_in_good_shape.php In one of my my earlier posts I already mentioned some of the tools I am using to keep my Windows installation in good shape — fast and responsive. What I am going to do now is to debunk a myth called Windows Rot.

          More...]]>
          Fri, 27 Jul 2007 00:00:00 +0000
          XHTML 1.1 compliance revisited https://levicki.net/articles/2007/07/26/XHTML_11_compliance_revisited.php Good news, everyone! (in a voice of a professor Hubert J. Farnsworth). I have just finished version 1.0 of this website!

          More...]]>
          Thu, 26 Jul 2007 00:00:00 +0000
          Yadie CD Case https://levicki.net/articles/2007/07/26/Yadie_CD_Case.php This is not exactly computer hardware but it is related so bear with me for a while. I got tired of those pesky CDs and DVDs laying around taking up space and collecting dust (and scratches) so I decided to buy a CD case.

          More...]]>
          Thu, 26 Jul 2007 00:00:00 +0000
          This site is now XHTML 1.1 compliant https://levicki.net/articles/2007/07/22/This_site_is_now_XHTML_11_compliant.php I have updated levicki.net to be XHTML 1.1 compliant. However, when you click on that W3C validation button, you may still encounter one error. That is by design. I frown upon their decision to remove target attribute from <a href=""> tag.

          More...]]>
          Sun, 22 Jul 2007 00:00:00 +0000
          Why existing APIs for file creation suck https://levicki.net/articles/2007/07/21/Why_existing_APIs_for_file_creation_suck.php I was thinking about modern filesystems and related operating system file access APIs and I come to a shocking realization. They suck.

          More...]]>
          Sat, 21 Jul 2007 00:00:00 +0000
          Triax Power 6178 battery charger https://levicki.net/articles/2007/07/15/Triax_Power_6178_battery_charger.php When I recently bought a digital photo camera, I needed a good battery charger for it because it uses 4x AA cells. I was visiting a friend and saw this Triax Power 6178 on his desk.

          More...]]>
          Sun, 15 Jul 2007 00:00:00 +0000
          The Way It's Meant To Be Seen - Lara Croft https://levicki.net/articles/2007/07/11/The_Way_Its_Meant_To_Be_Seen_-_Lara_Croft.php I wasn't hoping to see a nude patch for Tomb Raider: Anniversary PC game so soon and I was pleasantly surprised to find out that someone was working on it. Since it is a bit hard to find valid download link I have mirrored it in my Downloads section. Of course, you should not download this unless you are an adult.

          More...]]>
          Wed, 11 Jul 2007 00:00:00 +0000
          2Wire HomePortal 1000HG Wireless ADSL Router https://levicki.net/articles/2007/07/07/2Wire_HomePortal_1000HG_Wireless_ADSL_Router.php Few days ago I laid my grubby hands on a 2Wire HomePortal 1000HG Wireless ADSL Router. It is an older model and as such it is no longer supported or shown on their website. This is how it looks like:

          More...]]>
          Sat, 07 Jul 2007 00:00:00 +0000
          email is crap and I mean it https://levicki.net/articles/2007/06/01/email_is_crap_and_I_mean_it.php It is time for email communication as a concept to take serious bashing from me. Because of SPAM (and not only because of that) it is quickly becoming unusable to the point that we will be soon required to pay in order to get clean service and by clean I mean "clean" like in cable TV.

          More...]]>
          Fri, 01 Jun 2007 00:00:00 +0000
          Wolfdale CPUID and Intel Desktop Boards https://levicki.net/articles/2007/05/30/Wolfdale_CPUID_and_Intel_Desktop_Boards.php It seems that Wolfdale CPUID might be 0x10661 at least according to the microcode update present in Intel Desktop Board D975XBX2 BIOS revision 2747.

          More...]]>
          Wed, 30 May 2007 00:00:00 +0000
          dpreview bought by amazon https://levicki.net/articles/2007/05/27/dpreview_bought_by_amazon.php Remember how I said recently that dpreview.com is IMO the most trusted resource on digital photography on the Internet?

          More...]]>
          Sun, 27 May 2007 00:00:00 +0000
          Games with checkpoints - I hate them https://levicki.net/articles/2007/05/27/Games_with_checkpoints_-_I_hate_them.php Whoever thought of a checkpoint system in first person shooter games should suffer in some way. It simply drives me nuts. I mean, why do you have to run through half the forrest, kill 50 enemies and then 51st refuses to die never mind how many lead you put into him and then kills you with a single shot?!?

          More...]]>
          Sun, 27 May 2007 00:00:00 +0000
          Got a digital photo camera https://levicki.net/articles/2007/05/03/Got_a_digital_photo_camera.php I have been very busy with work lately which hopefully explains lack of updates here. Few days ago I finally got something I always wanted to have -- my own digital photo camera!

          More...]]>
          Thu, 03 May 2007 00:00:00 +0000
          Pizza service Paun in Belgrade - disappointment https://levicki.net/articles/2007/03/16/Pizza_service_Paun_in_Belgrade_-_disappointment.php While the pizza is reasonably good (although the amount of ingredients may vary depending on who made it) I had really bad luck with other meals.

          More...]]>
          Fri, 16 Mar 2007 00:00:00 +0000
          Important site update https://levicki.net/articles/2007/03/11/Important_site_update.php I have just performed an important update. So far I was editing and uploading articles manually and it was a tedious job. From now on articles will be updated more frequently because I have just finished programming the admin interface which enables me to post content quickly and easily. Watch this space!

          More...]]>
          Sun, 11 Mar 2007 00:00:00 +0000
          Poor NVIDIA S3 resume performance (updated) https://levicki.net/articles/2007/02/06/Poor_NVIDIA_S3_resume_performance_updated.php I have recently bought EVGA e-GeForce 8800GTX 768MB video card and did a fresh reinstall of Windows XP SP2 with all the relevant hotfixes and updates. I have installed latest Forceware 97.92 WHQL drivers and so far I didn't have any troubles with them given that I don't play latest games that much.

          More...]]>
          Tue, 06 Feb 2007 00:00:00 +0000
          Intel Penryn is ready https://levicki.net/articles/2007/01/23/Intel_Penryn_is_ready.php Intel® has announced that they have started sampling new CPUs made using 45nm process. It is basically a die shrink of Core micro-architecture with an addition of ~50 new SSE4 instructions. First retail CPUs should be ready for H2/2007.

          More...]]>
          Tue, 23 Jan 2007 00:00:00 +0000
          Site updated https://levicki.net/articles/2007/01/18/Site_updated.php New logo has been designed by my friend Nikola Stojanović. He is the admin at it-co.biz so be sure to check it out if you want some insight in current IT developments.

          More...]]>
          Thu, 18 Jan 2007 00:00:00 +0000
          Site is now online https://levicki.net/articles/2007/01/13/Site_is_now_online.php Hi!

          I just wanted to let you know that this site is now online!

          It still doesn't have much content but I hope to finish this initial version very soon.

          Site has a very simple design because I was a cheap bastard and I haven't paid for MySQL database to be able to use CMS so I am creating it all by hand. It might take a while though because I am using the opportunity to learn PHP as I go. So grab the popcorns and stay tuned, because "I'll be back!"

          ]]>
          Sat, 13 Jan 2007 00:00:00 +0000
          HOWTO: Build keyboard layouts for Windows x64 https://levicki.net/articles/2006/09/29/HOWTO_Build_keyboard_layouts_for_Windows_x64.php I needed my custom keyboard layout "ported" to x64 edition of Windows and that is where the trouble started. MSKLC (Microsoft Keyboard Layout Creator) wasn't able to produce anything but 32-bit version of DLL which of course didn't work.

          More...]]>
          Fri, 29 Sep 2006 00:00:00 +0000
          The Way It's Meant To Be Seen - Dawn https://levicki.net/articles/2004/05/20/The_Way_Its_Meant_To_Be_Seen_-_Dawn.php You guessed it, another article in The Way It's Meant To Be Seen series and again it is all about getting some cute fairies to show off nude on your screen :)

          More...]]>
          Thu, 20 May 2004 00:00:00 +0000
          The Way It's Meant To Be Seen - Nalu https://levicki.net/articles/2004/05/20/The_Way_Its_Meant_To_Be_Seen_-_Nalu.php Those into 3D graphics have probably heard about NV40 GPU generation made by NVIDIA. When it was introduced, their developers made a demo to show off the latest architectural capabilities for cinematic rendering.

          More...]]>
          Thu, 20 May 2004 00:00:00 +0000
          DIY: Silent PC https://levicki.net/articles/2003/12/26/DIY_Silent_PC.php This is not yet another article about how to use expensive components such as fanless PSUs, copper heatsinks or water cooling to turn down the noise level produced by your PC. Mac users can stop reading here since their computers do not make that much noise.

          More...]]>
          Fri, 26 Dec 2003 00:00:00 +0000