# Wednesday, December 29, 2004
ASP.NET | C# | Misc | Projects
Wednesday, December 29, 2004 7:03:01 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [11]  | 
# Monday, December 27, 2004

What i really like about the days between x-mas and new year is that you have time for things that you usually don't have time for.

The stroy: I love my girlfriend. I likle C# and I like asciiart. So it happend that she showed me some ascii's. I asked myself if somebody has written some image to ascii in C#. I googled but found nothing. I did some image manipulation stuff for the company before x-mas and so I builded a basic image to ascii conversion library in C#.

http://www.lennybacon.com/image2ascii/

You can grab the source at :

http://www.codeproject.com/aspnet/ascii_art_with_c_.asp

ASP.NET | C# | Projects
Monday, December 27, 2004 7:33:16 AM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [47]  | 
# Wednesday, December 08, 2004

Wednesday, December 08, 2004 4:07:47 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [24]  | 
# Tuesday, December 07, 2004

Schlund is in the words of their CTO "#1 hoster in europe" (4.500000 domains) and "no one has such an expirience". Today i made the expirience that they allow only 8 (in words eight) character passwords for mailboxes

:-( 

Tuesday, December 07, 2004 10:31:29 AM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [26]  | 
# Wednesday, December 01, 2004

A nice list can be found under following URL:

http://www.dreckstool.de/

An interesting facts

  • BEA and WebSphere are more on top that IIS
  • VisualStudio is in the list VisualStudio .NET not
    (even if it replaces html codes to it's characters without asking...)
Wednesday, December 01, 2004 2:39:14 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [22]  | 
# Sunday, November 28, 2004
A class that can be added...
public class Point
{
    private int x, y;
    
    public Point(){}

    public Point(int xPos, int yPos){ x = xPos; y = yPos; }

    public static Point operator + (Point p1, Point p2)
    {
       Point newPoint = new Point(p1.x + p2.x, p1.y + p2.y);
       return newPoint;
    }
}
I just wrote that down to have it writen once ;-)
C# | Misc
Sunday, November 28, 2004 8:59:21 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [10]  | 
# Thursday, November 25, 2004
Thursday, November 25, 2004 11:18:04 AM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [19]  | 

I released the 1st. build of iFused from my new supercoolandhipandfasterandmorememoryandwidescreenedandfatsoundbyjblspeakers hp notebook.

Thanks to Jonathan de Siqueira for contibuting Portugues Brazil.

Thursday, November 25, 2004 11:14:58 AM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [33]  | 
# Wednesday, November 17, 2004
using System.Drawing;
using System.Drawing.Design;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

namespace StaticDust.Web.UI.Controls
{
    [Designer(typeof(RadioButtonDesigner))]
    public class RadioButton : System.Web.UI.WebControls.RadioButton
    {
        protected override void Render(System.Web.UI.HtmlTextWriter writer)
        {
            System.Text.StringBuilder stringBuilder = new System.Text.StringBuilder();
            System.IO.StringWriter stringWriter = new System.IO.StringWriter(stringBuilder);
            HtmlTextWriter htmlWriter = new HtmlTextWriter(stringWriter);
            base.Render(htmlWriter);

            StringBuilder _javaScript = new StringBuilder();

            IEnumerator keys = this.Attributes.Keys.GetEnumerator();
            int i = 1;
            string key;
            while (keys.MoveNext())
            {
                key = (String)keys.Current;
                if(key.Substring(0,2).ToLower()=="on")
                {
                    stringBuilder.Replace(key + "=\"" + this.Attributes[key].ToString() + "\" """);
                    _javaScript.Append(key + "=\"" + this.Attributes[key].ToString() + "\" ");
                }
                i++;
            }
            stringBuilder.Replace("type=\"radio\" ""type=\"radio\" " + _javaScript.ToString());

            writer.Write(stringBuilder.ToString());
        }

    }
}

 

ASP.NET | C#
Wednesday, November 17, 2004 11:38:44 AM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [20]  |