apr
22
Apparently this guy has been able to run Android quite perfectly on the iPhone with dual boot.
Here's the video:
mag
11
No Linux No Party: here comes the website.
Published by giuliastro
Despite the growing popularity of Linux, some users of this operating system often complain about not being able to use applications and services that are, instead, fully compatible with other systems like Windows or Mac OSX. This is the main reason why the No Linux No Party motto was born. Now it comes the website.
No Linux No Party lets you to do a couple simple things:
- Submit the link of a project that is not compatible with Linux (together with some details)
- Visit the links already reported (thus giving you the opportunity to increase their visibility and spread awareness of the problem)
The union and collaboration of its users has been the secret of the success of Linux. Bookmarking this website is a must.
dic
6
A 404 error only for .aspx pages in Microsoft IIS
Published by Mic
So you can’t open an .aspx (or .asp) page in your new ISS on a Windows Server 2003?
Everything has ben set up fine but you’re not able to open those kind of pages?
Your ISS shows plain .html pages but not your new ASP.NET script, because it gives everytime a 404 page not found error?
But the page is there!
dic
5
A simple PHP time testing unit
Published by Mic
I needed a simple way to check the timing behaviour of every section of my new php application.
There are some php testing unit out there, but I needed something more simpler and more usable.
So I’ve written our time testing unit, without using classes (I do like OO programming, but classes were unuseful for this simple target), in only one array and four functions.
Let’s see the code. Read more »
dic
4
Escape a string for xml use in C#
Published by Mic
If you need to escape a string to use in a xml file (or stream), you have to escape those entities:
| Character | Escape Code | ||||
|---|---|---|---|---|---|
| Ampersand | & | & |
|||
| Single Quote | ‘ | ' |
|||
| Double Quote | “ | " |
|||
| Greater Than | > | > |
|||
| Less Than | < | < |
|||
To achieve this result you could use the SecurityElement.Escape(string str) C# function, but it has a problem.



