3rd May 2007
HD-DVD AACS Processing Key number: 09-F9-11-02-9D-74-E3-5B-D8-41-56-C5-63-56-88-C0.
Personally, I have no idea how to use this number. However, below are some links which will give you more clues…
And, also, it should be easy to follow the events with the collection of links below.
Read the rest of this entry »
Posted in Links, Misc, Society, Web | No Comments »
2nd May 2007
There was an excellent mod_rewrite cheat sheet at ILoveJackDaniels, but it is now gone.
I have been using it for over a year now, as from time to time there’s a need to try to remember how to use mod_rewrite (e.g. in the case of no-www Class B web-site).
To help preserve this useful bit of information, and for the cases of the original article being unavailable (which did happen a few years later), below is a link to the cheat sheet stored on my server.
Read the rest of this entry »
Posted in Links, Notepad, Programming, Web | No Comments »
30th April 2007
When using PHP, the simplest way to find the absolute path of your files/folders on the server is by creating a simple path.php file with the following contents (click on the “Plain text” box header for copy-pasting):
<?php
echo realpath(dirname(__FILE__));
?>
Put the new file anywhere in the web-accessible folder on your server,
then just access that file from your favourite web-browser – and you’ll have the absolute path shown to you.
Alternatively, you may use the following code:
This also should display the absolute path on your server.
Posted in Notepad, PHP, Programming, Web | 17 Comments »
16th April 2007
PrivatBank is one of the largest Ukrainian banks, and is very active in the field of e-commerce.
Today I came across their new blog, which is a WordPress-powered one.
From the first glance I’d say that it’s here where PrivatBank now publishes the news – before the blog launch, news were published on the privatbank’s website. The main and only difference appears to be in comments – now visitors can comment on those news, and even get response.
I wonder how many “comment-responders” PrivatBank had to hire to launch this blog :). Or is that tech-support which was given one more duty?
Posted in Links, Notepad, Web | 1 Comment »
23rd March 2007
Update: WordPress 2.5+ does not require adding rewrite rules to .htaccess, as it now redirects the browser to the correct (configured) URL itself. However, if you would like the redirection to be made by apache’s mod_rewrite rather than by PHP’s header() instruction (which I suspect to be slower than mod_rewrite), then you can still use the instructions below. (Another consideration to stick to mod_rewrite is the presence of other software installed into the root of the same domain as the WP blog; mod_rewrite solution works for all, while WP’s own redirect works only for WP.)
See important update at the end of this post!
In the early days of my acquaintance with internet, I considered it obligatory to add the “www.” part in front of every site (domain) name. As a matter of fact, without those three mysterious letters most of the websites “didn’t work”.
Now, nearly a decade later, it appears clear to me that the www part is redundant. But it was only today, that I finally switched my blog to the use of Class B no-www policy. Earlier it was Class A, the most common.
Read the rest of this entry »
Posted in Misc, Notepad, Web | 3 Comments »
18th March 2007
PodTech had an interview with Jason Calacanis published on October 3, 2006.
You can download the video from the source page, or use my local copy.
As for the “starting a company” part, which goes closer to the end of the video, Jason recommends focusing on a single thing and excel in it. That is, if you are starting a company to host user blogs – then think on what you can do better than others in the field, instead of adding ontop of your blogs some additional not-that-really-related services.
Jason also foresees great future for the internet advertising, providing as an example iTunes-like shops providing TV shows for download, and – of course – embedding some ads. The same goes for user-generated content providers, which are viewed by the producers and sellers as good platforms to promote and sell their goods.
Posted in Web, Welfare | No Comments »
15th March 2007
Recently I learned about Zope, which is an “open source web application server”, primarily written in Python.
Then Django and Turbogears were seen as web-development frameworks akin to Zope. Search revealed an interesting anti-Zope rant at Zope vs Django. Reading until the end, and then following the comments, I came across the comment by Holger Froebe, which is a huge one (probably the longest comment I had ever seen), and represents a detailed explanation with examples of the reasons to use Zope 3. I found that comment to be a really good-written one, so if you are deciding on whether you should use Zope 3 or not, then read the comment here (scroll down or just search for “Holger Froebe”).
For convenience and in order to preserve this worhty piece of work from vanishing, below is the 99%-exact copy-paste of that comment.
Read the rest of this entry »
Posted in CMS, Programming, Python, Software, Web | 1 Comment »