Friday, July 16, 2010

PRE Tag Internet Explorer Scrollbar Solution

<pre> tag is very useful for writing code. I use it all the time actually for posting C# code.
There is however a problem with Internet Explorer:
If the text is too long, and a horizontal scroll bar appears, it overlaps the bottom line.
You can find many solutions to this problem in this link, including scanning the document with JavaScript fixing all the pre tags.
My solution is a lot simpler.

Solution:
If you know that the text is too long and a horizontal scroll bar will appear, then add the following code at the bottom, just before the </pre> ending tag:

<!--[if IE]>

<![endif]-->

Explanation:
If the user is using Internet Explorer, then there will be an extra (empty) line inside the pre tag, and the horizontal scroll bar will overlap the empty line and not the original content.

Thursday, July 15, 2010

איך יוצרים קישור למקום מסוים במפה של גוגל, ynet ווואלה

אתם רוצים לשלוח לכל החברים קישור למקום מסויים שבו צריך להיפגש. אפשר לשלוח תמונה של המפה (Print Screen), ואפשר לשלוח להם לינק למפה אינטרקטיבית, ובה מסומן מקום המפגש, כך שהם יוכלו להוציא איזה מידע שהם צריכים ביותר קלות (למשל מגרשי חנייה).
דוגמה: אוהל המחאה של משפחת שליט


הכי נוח. מחפשים את המקום ואז יש כפתור "קישור" בצד שמאל.


שיטה 1 קלה:
הכניסו נתונים ולחצו על "צור קישור":
עיר: רחוב: מספר:

שיטה 2: נכנסים לאתר המפות של ynet, מחפשים את המקום שרוצים, ואז לוחצים על "הדפס" (למטה), בדף החדש מבטלים את ההדפסה, ומסתכלים על הכתובת:
http://ymap.winwin.co.il/...&Mode=1&forprint=y&displayMode=SMALLMAP
מורידים את החלק שסימנתי באדום, ומה שנשאר זה הלינק שלכם.

מפות
הכניסו נתונים ולחצו על "צור קישור":
עיר: רחוב: מספר:

Sunday, July 11, 2010

איך לעקוף את ההודעה: "בחירת כסאות לא מאושרת, אין להשאיר כסא בודד" בסינמה סיטי

This post is intended for people from Israel.

הערה חשובה: הפוסט הזה נועד כדי להראות בעיה שבנסיבות אחרות יכולה להיות בעיית אבטחה, ולא כדי להפציץ את סינמה סיטי בכיסאות בודדים!

בעיה: אתם רוצים להזמין 4 מקומות לסרט בסינמה סיטי ויש 5 פנויים. אתם בוחרים ב-4 שקרובים לאמצע ואז מקבלים את ההודעה:
פתרון 1: נכנסים במחשב אחר, בוחרים את הכיסא שלא רוצים, לוחצים על "הבא", והמערכת שומרת לכם אותו למשך 6 דקות. ואז במחשב שלכם אתם יכולים להזמין את ה-4 שאתם כן רוצים.

עד עכשיו זה היה החלק היותר מוכר.
וזה אמור לפתור את רוב הבעיות.

אבל מה קורה אם הזמנתם את הכרטיסים שלכם בלי בעיה (למשל 4 מתוך 6), אבל אתם מפוזרים כמוני ושכחתם מישהו בטעות, ועכשיו אתם צריכים להזמין מקום 1 מתוך 2? מהירי המחשבה ישימו לב שלא ניתן להשתמש בשיטה הקודמת.
פתרון 2: נכנסים במחשב שלכם בוחרים את 2 הכיסאות ולוחצים על "הבא"; המערכת שומרת אותם ל-6 דקות. נכנסים במחשב אחר לאותו סרט באותו יום באותה שעה איפה שרואים ש-2 הכיסאות תפוסים, ולא עושים כלום. חוזרים למחשב שלכם, לוחצים על "הקודם", בוחרים את הכיסא שאתם רוצים ומזמינים אותו.
כמובן שזה עובד על כל מספר של כיסאות ולכן יותר חזק מפתרון 1.
אז מה קרה פה?
ההשערה שלי: כנראה שהמערכת של סינמה סיטי שומרת סוג של מטמון ברגע שנכנסים מהמחשב השני, וכאשר חוזרים למחשב שלכם ומזמינים כיסא אחד במקום 2 המערכת משתמשת באותו מטמון שבו עדיין שמורים 2 הכיסאות, ולכן אין כיסא בודד.

הערות:
במקום להשתמש בשני מחשבים, ניתן להשתמש בשני דפדפנים, או בכל דרך שבה מפרידים את הסשן.
שני הפתרונות עובדים נכון ל-12 ביולי 2010.

Tuesday, July 6, 2010

C# Sort Text and Numbers (like Explorer does)

For example:
myvideo.part2.rar
Should come before:
myvideo.part10.rar


// Usage:

list.Sort(new StringLogicalComparer());


// Comparer:

public class StringLogicalComparer : IComparer, IComparer<string>
{
    [DllImport("shlwapi.dll", CharSet = CharSet.Unicode, ExactSpelling = true)]
    public static extern int StrCmpLogicalW(string x, string y);

    public int Compare(object x, object y)
    {
        return StrCmpLogicalW(x.ToString(), y.ToString());
    }

    public int Compare(string x, string y)
    {
        return StrCmpLogicalW(x, y);
    }
}

Thursday, July 1, 2010

WebBrowser and HttpWebRequest Cookies Problem and Solution

If you are working with WebBrowser control and you want to make some WebRequest you need to synchronize the cookies.
And that would be the naive way to do it:
httpWebRequest.CookieContainer.SetCookies(
    webBrowser.Document.Url, 
    webBrowser.Document.Cookie.Replace(';', ',')
    ); // THIS CODE IS WRONG!!

The problem is the HttpOnly cookies that are missing from Document.Cookie for security reasons.
The HttpOnly cookies are probably the most important ones that you need.
This article explains how to get them:
http://www.codeproject.com/KB/shell/RetrieveHttponlyCookies.aspx

Here is a more compact version of the function for C#:
[DllImport("wininet.dll", CharSet = CharSet.Auto, SetLastError = true)]
static extern bool InternetGetCookieEx(string pchURL, string pchCookieName, StringBuilder pchCookieData, ref uint pcchCookieData, int dwFlags, IntPtr lpReserved);
const int INTERNET_COOKIE_HTTPONLY = 0x00002000;

public static string GetGlobalCookies(string uri)
{
    uint datasize = 1024;
    StringBuilder cookieData = new StringBuilder((int)datasize);
    if (InternetGetCookieEx(uri, null, cookieData, ref datasize, INTERNET_COOKIE_HTTPONLY, IntPtr.Zero)
        && cookieData.Length > 0)
    {
        return cookieData.ToString().Replace(';', ',');
    }
    else
    {
        return null;
    }
}
And the usage would be:
httpWebRequest.CookieContainer.SetCookies(
    webBrowser.Document.Url, 
    GetGlobalCookies(webBrowser.Document.Url.AbsoluteUri)
    );