Search

September 10, 2010
General »
...png

There seems to be a "max-width" property somewhere OSLT. Maybe it's a...
September 08, 2010
Phobos »
...make one small suggestion:  In the fixed-width font my web browser uses by default...
September 03, 2010
General »
...media="handheld, only screen and (max-device-width: 480px)"

The "handheld, " part isn't really...
September 01, 2010
DMD »
...things a bit differently with a variable width hex mantissa and exponent value (HexDigits P...
August 28, 2010
Phobos »
...integer is fixed or
arbitrary width and what its fixed width might be if it...
August 27, 2010
Phobos »
...integer is fixed or arbitrary width and what its fixed width might be if it...
August 12, 2010
c++.stlsoft »
...functions.h:
    ~ winstl__get_console_width() => winstl_C_get_console_width()
    ~ winstl__get_console_window...
August 09, 2010
D »
...for example:

string wordwrap (string str, int width = 75, string break = "\n", bool cut = false...
August 09, 2010
Learn »
Forgot zfill:

string zfill(string s, int width)
{
    return justify(s, Alignment.Right, width, '0');
}
August 09, 2010
Learn »
...int width, char symbol)
{
    if (text.length >= width)
        return text;

    char[] result = new char[width...
121 122 123 124 125 126 127 128 129 130 131
Next ›   Last »