User gnud - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T03:40:47Zhttp://stackoverflow.com/feeds/user/27204http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1797240/implementing-a-file-object-c/1797267#17972670Answer by gnud for Implementing a File Object (C++)gnud2009-11-25T14:30:43Z2009-11-25T14:30:43Z<p>Without ever having looked at the Doom code (I'm guessing you can specify a mode when you create the object), you can use <a href="http://www.manpagez.com/man/3/freopen/" rel="nofollow"><code>freopen()</code></a> to re-open a file (in a different mode, if you want) without closing it first.</p>
http://stackoverflow.com/questions/1790204/in-c-is-i1-atomic/1790225#17902250Answer by gnud for In C is "i+=1;" atomic?gnud2009-11-24T13:56:59Z2009-11-24T16:12:22Z<p>Not usually.</p>
<p>If <code>i</code> is <code>volatile</code>, then it would depend on your CPU architecure and compiler - if adding two integers in main memory is atomic on your CPU, then that C statement <em>might</em> be atomic with a <code>volatile int i</code>.</p>
http://stackoverflow.com/questions/1790208/how-to-use-strtol-to-read-from-an-int64-value/1790244#17902443Answer by gnud for How to use strtol to read from an __int64 value ?gnud2009-11-24T14:00:16Z2009-11-24T14:00:16Z<p><a href="http://linux.die.net/man/3/strtoll" rel="nofollow"><code>strtoll()</code></a> is in C99 and POSIX.1-2001. </p>
http://stackoverflow.com/questions/1782923/php-object-has-semicolon-or-other-strange-character-in-variable-name/1782945#17829456Answer by gnud for PHP object has semicolon (or other strange character) in variable namegnud2009-11-23T12:44:13Z2009-11-23T13:12:51Z<p>Try </p>
<pre><code>echo $object->{'thisisa:propertyname'};
</code></pre>
<p>Also, For <a href="http://php.net/manual/en/language.variables.variable.php" rel="nofollow">variable member variables</a>, one <code>$</code> is enough. So</p>
<pre><code>$attr = "thisisa:propertyname";
echo $object->$attr;
</code></pre>
http://stackoverflow.com/questions/1778897/php-should-i-encrypt-email-addresses/1778904#17789042Answer by gnud for php - Should I encrypt email addresses?gnud2009-11-22T14:50:06Z2009-11-22T14:50:06Z<p>It's not common to encrypt email addresses. If someone really want to keep their email private, they wouldn't give it to your site in the first place :)</p>
http://stackoverflow.com/questions/1769059/fron-array-vardump-to-my-array/1769078#17690780Answer by gnud for Fron Array (var_dump) to my array?gnud2009-11-20T08:39:23Z2009-11-20T08:39:23Z<p>I must admit I don't understand your question.</p>
<p>If you want a copy of <code>$arrayX</code>, then simply type</p>
<pre><code>$myarray = $arrayX;
</code></pre>
http://stackoverflow.com/questions/1768620/how-do-i-show-what-fields-a-struct-has-in-gdb/1769045#17690450Answer by gnud for How do I show what fields a struct has in gdb?gnud2009-11-20T08:31:40Z2009-11-20T08:31:40Z<p>I would have a look at the <a href="http://www.gnu.org/software/ddd/" rel="nofollow">Data Display Debugger</a>.</p>
http://stackoverflow.com/questions/1749408/dynamically-reassemble-a-picture-in-javascript/1749428#17494281Answer by gnud for Dynamically reassemble a picture in javascriptgnud2009-11-17T14:57:46Z2009-11-17T14:57:46Z<p>This is called an "interlaced" gif, or "progressive" jpeg. It's the way the image file is saved - the image uses a bit more space, but it start loading really fast.</p>
<p>You can use your image editor to save your image this way. With <a href="http://imagemagick.org" rel="nofollow">imagemagick</a>, do</p>
<pre><code>convert -interlace PLANE input.jpg output.jpg
</code></pre>
http://stackoverflow.com/questions/1742750/how-is-a-union-different-from-a-struct-do-other-languages-have-similar-construct/1742831#17428312Answer by gnud for How is a union different from a struct? Do other languages have similar constructs?gnud2009-11-16T15:17:30Z2009-11-16T15:17:30Z<p>A union lets you interpret one memory location (raw, binary value) in several different ways.</p>
<p>An example I've actually used, is accessing the individual bytes of a uint32.</p>
<pre><code>union {
uint32 int;
char bytes[4];
} uint_bytes;
</code></pre>
<p>What a union offers, is multiple ways of accessing (parts of) the same memory.</p>
<p>The size of a union type is equal to the size of the largest type in the union.</p>
http://stackoverflow.com/questions/1738865/initialize-objects-like-arrays-in-php/1738915#17389151Answer by gnud for Initialize Objects like arrays in PHP?gnud2009-11-15T21:31:17Z2009-11-15T21:31:17Z<p>I use a class I name Dict:</p>
<pre><code>class Dict {
public function __construct($values = array()) {
foreach($values as $k => $v) {
$this->{$k} = $v;
}
}
}
</code></pre>
<p>It also has functions for merging with other objects and arrays, but that's kinda out of the scope of this question.</p>
http://stackoverflow.com/questions/1737881/regex-to-get-the-keywords-from-html/1737910#17379100Answer by gnud for RegEx to get the keywords from HTMLgnud2009-11-15T15:53:46Z2009-11-15T16:05:12Z<p>This is a simple regex, that matches the first meta keywords tag. It only allows characters, numbers, legal URL characters, HTML entities and spaces to appear inside the content attribute.</p>
<pre><code>$matches = array();
preg_match("/<meta name=\"Keywords\" content=\"([\w\d;,\.: %&#\/\\\\]*)\"/", $html, $matches);
echo $matches[1];
</code></pre>
http://stackoverflow.com/questions/1734713/save-variable-as-txt-but-not-in-the-server/1734718#17347180Answer by gnud for save variable as txt but not in the servergnud2009-11-14T16:24:40Z2009-11-14T16:24:40Z<pre><code>header('Content-Type: text/plain');
echo "Text stuff! Cool!";
</code></pre>
<p>(For some reason, SO stripped my opening php-tag.)</p>
http://stackoverflow.com/questions/1734522/looking-for-a-java-graphics-alternative/1734609#17346092Answer by gnud for Looking for a Java Graphics alternativegnud2009-11-14T15:45:04Z2009-11-14T15:45:04Z<p>I suspect that you aren't goning to use raw X11 for windows and input, so my suggestion would depend on the GUI toolkit you plan to use.</p>
<p><a href="http://qt.nokia.com" rel="nofollow">Qt</a> has its own painting engine. You can paint directly on to windows or widgets, or you can paint onto a <a href="http://doc.trolltech.com/4.5/qpicture.html#details" rel="nofollow">QPicture</a>, which allows you to both display, print and save the result easily. For more complex scenes, you can turn to <a href="http://doc.trolltech.com/4.5/qgraphicsscene.html" rel="nofollow">QGraphicsScene</a>.</p>
<p>With gtk, it's more common to use cairo, already mentioned by Jeff Foster</p>
http://stackoverflow.com/questions/1732242/java-is-there-support-for-macros/1732260#17322601Answer by gnud for Java: Is there support for macros?gnud2009-11-13T22:19:55Z2009-11-13T22:19:55Z<p>Well, I guess you could run your java files through the C preprocessor...</p>
http://stackoverflow.com/questions/1730309/php-database-connection/1730353#17303532Answer by gnud for PHP database connectiongnud2009-11-13T16:33:49Z2009-11-13T17:34:42Z<p>I suggest that you export the database in question, and import it locally. This way, you won't destroy live data if you mess up.</p>
<p>Many, if not most, hosting providers also provide a DB interface like phpMyAdmin. You can export the database from there.</p>
http://stackoverflow.com/questions/1726925/how-to-remove-unique-then-duplicate-dictionaries-in-a-list/1730308#17303081Answer by gnud for How to remove unique, then duplicate dictionaries in a list?gnud2009-11-13T16:27:48Z2009-11-13T16:27:48Z<p>I always prefer to work with objects instead of dicts, if the fields are the same for every item.</p>
<p>So, I define a class:</p>
<pre><code>class rule(object):
def __init__(self, file, line, rule):
self.file = file
self.line = line
self.rule = rule
#Not a "magic" method, just a helper for all the methods below :)
def _tuple_(self):
return (self.file, self.line, self.rule)
def __eq__(self, other):
return cmp(self, other) == 0
def __cmp__(self, other):
return cmp(self._tuple_(), rule._tuple_(other))
def __hash__(self):
return hash(self._tuple_())
def __repr__(self):
return repr(self._tuple_())
</code></pre>
<p>Now, create a list of these objects, and sort it. <code>ruledict_list</code> can be the example data in your question.</p>
<pre><code>rules = [rule(**r) for r in ruledict_list]
rules.sort()
</code></pre>
<p>Loop through the (sorted) list, removing unique objects as we go. Finally, create a set, to remove duplicates. The loop will also remove one of each duplicate object, but that doesn't really matter.</p>
<pre><code>pos = 0
while(pos < len(rules)):
while pos < len(rules)-1 and rules[pos] == rules[pos+1]:
print "Skipping rule %s" % rules[pos]
pos+=1
rules.pop(pos)
rule_set = set(rules)
</code></pre>
http://stackoverflow.com/questions/1729787/how-does-php-process-functions-in-a-file/1729828#17298280Answer by gnud for How does PHP process functions in a file?gnud2009-11-13T15:13:48Z2009-11-13T15:13:48Z<p>PHP looks up class and function names when they are used at runtime, not according to when the code in question is parsed for the first time.</p>
<p>So, running <code>three()</code> inside <code>one()</code> is OK, as long as the function declaration of <code>three()</code> is parsed before <code>one()</code> is run for the first time.</p>
http://stackoverflow.com/questions/1725124/accented-umlauted-characters-in-c/1725169#17251699Answer by gnud for Accented/umlauted characters in C?gnud2009-11-12T20:32:59Z2009-11-12T22:06:10Z<p>The encoding of character constants actually depend on your locale settings.</p>
<p>The safest bet is to use wide characters, and the corresponding functions. You declare the alphabet as <code>const wchar_t* alphabet = L"abcdefghijklmnopqrstuvwxyzäöå"</code>, and the individual characters as <code>L'ö';</code></p>
<p>This small example program works for me (also on a UNIX console with UTF-8) - try it.</p>
<pre><code>#include <stdlib.h>
#include <stdio.h>
#include <wchar.h>
#include <locale.h>
int main(int argc, char** argv)
{
wint_t letter = L'\0';
setlocale(LC_ALL, ""); /* Initialize locale, to get the correct conversion to/from wchars */
while(1)
{
if(!letter)
printf("Type a letter to get its position: ");
letter = fgetwc(stdin);
if(letter == WEOF) {
putchar('\n');
return 0;
} else if(letter == L'\n' || letter == L'\r') {
letter = L'\0'; /* skip newlines - and print the instruction again*/
} else {
printf("%d\n", letter); /* print the character value, and don't print the instruction again */
}
}
return 0;
}
</code></pre>
<p>Example session:</p>
<pre><code>Type a letter to get its position: a
97
Type a letter to get its position: A
65
Type a letter to get its position: Ö
214
Type a letter to get its position: ö
246
Type a letter to get its position: Å
197
Type a letter to get its position: <^D>
</code></pre>
<p>I understand that on Windows, this does not work with characters outside the Unicode BMP, but that's not an issue here.</p>
http://stackoverflow.com/questions/1725498/is-anybody-working-on-a-high-level-standard-library-for-c/1725529#172552912Answer by gnud for Is anybody working on a high level standard library for C++gnud2009-11-12T21:26:31Z2009-11-12T21:26:31Z<p>There are too big differences between platforms to get a definitive C++ standard for GUI programming. I think <a href="http://qt.nokia.com" rel="nofollow">Qt</a> is about as close as you will get in the forseeable future. <a href="http://wxwidgets.org" rel="nofollow">wxWidgets</a> is another popular choise, but as I understand it, they are using less modern c++ features.</p>
<p>As for networking, I think you are being kind of vague. If you mean web services over HTTP, I would have a look at <a href="http://pion.org/projects/pion-network-library" rel="nofollow">Pion</a>.</p>
http://stackoverflow.com/questions/1725115/how-to-balance-tags-with-php/1725345#1725345-1Answer by gnud for How to balance tags with PHPgnud2009-11-12T20:58:15Z2009-11-12T20:58:15Z<p>You would have to find all tags opened, but not closed, before the placeholder text.
Insert the new text like you do now, and then close the tags afterwards.</p>
<p>Here is a sloppy example. I think this code will work with all valid HTML, but I'm not positive. And it will certainly accept invalid markup. but anyway:</p>
<pre><code>$h = '<p>The quick <a href="/">brown</a> fox jumps <!--more-->
over the <a href="/">lazy</a> dog.</p>';
$parts = explode("<!--more-->", $h, 2);
$front = $parts[0];
/* Find all opened tags in the front string */
$tags = array();
preg_match_all("|<([a-z][\w]*)(?: +\w*=\"[\\w/%&=]+\")*>|i", $front, $tags, PREG_OFFSET_CAPTURE);
array_shift($tags); /* get rid of the complete match from preg_match_all */
/* Check if the opened arrays have been closed in the front string */
$unclosed = array();
foreach($tags as $t) {
list($tag, $pos) = $t[0];
if(strpos($front, "</".$tag, $pos) == false) {
$unclosed[] = $tag;
}
}
/* Print the start, the replacement, and then close any open tags. */
echo $front;
echo "FOOBAR";
foreach($unclosed as $tag) {
echo "</".$tag.">";
}
</code></pre>
<p>Outputs</p>
<pre><code><p>The quick <a href="/">brown</a> fox jumps FOOBAR</p>
</code></pre>
http://stackoverflow.com/questions/1724612/change-file-extension-in-php/1724650#17246508Answer by gnud for change file extension in php?gnud2009-11-12T19:15:31Z2009-11-12T19:15:31Z<pre><code>$newname = basename($filename, ".bmp").".jpg";
rename($filename, $newname);
</code></pre>
<p>Remember that if the file is a bmp file, changing the suffix won't change the format :)</p>
http://stackoverflow.com/questions/1724473/how-could-i-print-out-the-nth-letter-of-the-alphabet-in-python/1724482#17244823Answer by gnud for How could I print out the nth letter of the alphabet in Python?gnud2009-11-12T18:49:04Z2009-11-12T18:49:04Z<p>chr(ord('a')+5)</p>
http://stackoverflow.com/questions/1723849/aspect-oriented-techniques-in-python/1723949#17239490Answer by gnud for aspect-oriented techniques in python?gnud2009-11-12T17:26:10Z2009-11-12T17:26:10Z<p>The simplest and first solution that comes to mind, is using a proxy module.</p>
<pre><code>#fooproxy.py
import foo
import logger #not implemented here - use your imagination :)
def bar(baz):
logger.method("foo.bar")
return foo.bar(baz)
#foo.py
def bar(baz):
print "The real McCoy"
#main.py
import fooproxy as foo
foo.bar()
</code></pre>
http://stackoverflow.com/questions/1723494/python-function-slowing-down-for-no-apparent-reason/1723560#172356012Answer by gnud for python function slowing down for no apparent reasongnud2009-11-12T16:34:59Z2009-11-12T16:57:36Z<p>Try a more pythonic approach to the filtering, something like</p>
<pre><code>[x for x in list1 if x not in set(list2)]
</code></pre>
<p>Converting both lists to sets is unnessescary, and will be very slow and memory hungry on large amounts of data.</p>
<p>Since your data is a list of lists, you need to do something in order to hash it.
Try out</p>
<pre><code>list2_set = set([tuple(x) for x in list2])
diff = [x for x in list1 if tuple(x) not in list2_set]
</code></pre>
<p>I tested out your original function, and my approach, using the following test data:</p>
<pre><code>list1 = [[x+1, x*2] for x in range(38000)]
list2 = [[x+1, x*2] for x in range(10000, 160000)]
</code></pre>
<p>Timings - not scientific, but still:</p>
<pre><code> #Original function
real 2m16.780s
user 2m16.744s
sys 0m0.017s
#My function
real 0m0.433s
user 0m0.423s
sys 0m0.007s
</code></pre>
http://stackoverflow.com/questions/1723477/is-there-a-minimal-php5ts-dll/1723509#17235090Answer by gnud for Is there a minimal php5ts.dll?gnud2009-11-12T16:28:03Z2009-11-12T16:28:03Z<p>You can compile your own version. The source is publicly available, and this way you can include exactly the features you want.</p>
<p>Read about compiling on windows <a href="http://wiki.php.net/internals/windows" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1723367/whats-the-point-of-not-null-default/1723408#17234084Answer by gnud for What's the point of "NOT NULL DEFAULT '' "?gnud2009-11-12T16:13:58Z2009-11-12T16:20:57Z<p>There is a difference between a null value and an empty string - at least in SQL.</p>
<pre><code>SELECT LENGTH('tata');
4
SELECT LENGTH(NULL);
NULL
SELECT LENGTH('tata')-LENGTH('');
4
SELECT LENGTH('tata')-LENGTH(NULL);
NULL
</code></pre>
http://stackoverflow.com/questions/1723419/configuration-structs-vs-setters/1723439#17234391Answer by gnud for Configuration structs vs settersgnud2009-11-12T16:18:43Z2009-11-12T16:19:37Z<p>Using this method makes binary compatability harder.</p>
<p>If the struct is changed (one new optional field is added), all code using the class might need a recompile. If one new non-virtual setter function is added, no such recompilation is necessary.</p>
http://stackoverflow.com/questions/1721655/passing-parameters-dynamically-to-variadic-functions/1721671#17216710Answer by gnud for Passing parameters dynamically to variadic functionsgnud2009-11-12T11:49:59Z2009-11-12T13:15:37Z<p>It might be interesting to try just passing an array, and then use the vararg macros anyway. Depending on stack alignment, it might Just Work (tm).</p>
<p>This is probably not an optimal solution, I mainly posted it because I found the idea interesting.
After trying it out, this approach worked on my linux x86, but not on x86-64 - it can probably be improved. This method will depend on stack alignment, struct alignment and probably more.</p>
<pre><code>void varprint(int count, ...)
{
va_list ap;
int32_t i;
va_start(ap, count);
while(count-- ) {
i = va_arg(ap, int32_t);
printf("Argument: %d\n", i);
}
va_end(ap);
}
struct intstack
{
int32_t pos[99];
};
int main(int argc, char** argv)
{
struct intstack *args = malloc(sizeof(struct intstack));
args->pos[0] = 1;
args->pos[1] = 2;
args->pos[2] = 3;
args->pos[3] = 4;
args->pos[4] = 5;
varprint(5, *args);
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1714845/assigning-an-array-element-to-a-variable-with-the-same-name/1714855#17148551Answer by gnud for Assigning an array element to a variable with the same name?gnud2009-11-11T12:22:29Z2009-11-11T12:22:29Z<p>You can do</p>
<pre><code>function suck($x, $arr) {
$$x = $arr[$x] ;
unset($arr[$x]) ;
}
</code></pre>
<p>, using variable variables. This will only set the new variable inside the scope of "suck()".</p>
<p>You can also have a look at <a href="http://php.net/extract" rel="nofollow"><code>extract()</code></a></p>
http://stackoverflow.com/questions/1714265/datetime-difference-for-this-syntaxd-m-y-hms/1714315#17143150Answer by gnud for datetime difference for this syntax(d/m/Y H:m:s)gnud2009-11-11T10:27:20Z2009-11-11T10:27:20Z<p>Have a look at the <a href="http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html" rel="nofollow">documentation</a>.
Play around with, for example</p>
<pre><code>SELECT (TIMEDIFF(
STR_TO_DATE('01/02/2009 12:00:00', '%d/%m/%Y %T'),
STR_TO_DATE('01/01/2009 12:00:00', '%d/%m/%Y %T')
);
</code></pre>
http://stackoverflow.com/questions/1790208/how-to-use-strtol-to-read-from-an-int64-value/1790244#1790244Comment by gnud on How to use strtol to read from an __int64 value ?gnud2009-11-24T14:06:02Z2009-11-24T14:06:02ZDoesn't seem like this exists for msvc, although it seems kinda identical to __strtoi64.http://stackoverflow.com/questions/1782923/php-object-has-semicolon-or-other-strange-character-in-variable-name/1782945#1782945Comment by gnud on PHP object has semicolon (or other strange character) in variable namegnud2009-11-23T13:14:34Z2009-11-23T13:14:34ZThanks - the one time I didn't run my example code :)http://stackoverflow.com/questions/1782923/php-object-has-semicolon-or-other-strange-character-in-variable-name/1782939#1782939Comment by gnud on PHP object has semicolon (or other strange character) in variable namegnud2009-11-23T12:44:55Z2009-11-23T12:44:55ZEh, no? Read the question 4 more times.http://stackoverflow.com/questions/1732242/java-is-there-support-for-macros/1732260#1732260Comment by gnud on Java: Is there support for macros?gnud2009-11-14T11:55:37Z2009-11-14T11:55:37ZAgreed - it's not a pretty picture.http://stackoverflow.com/questions/1730261/list-management-python/1730273#1730273Comment by gnud on list management pythongnud2009-11-13T16:30:50Z2009-11-13T16:30:50ZYou define <code>urlList</code> to be a dict, not a list...http://stackoverflow.com/questions/1729724/php-syntax-error/1729754#1729754Comment by gnud on Php syntax errorgnud2009-11-13T15:07:51Z2009-11-13T15:07:51ZOckonal, it seems your machine is running PHP4. The code is for php5. In php4, "private" is not a keyword, hence the error.http://stackoverflow.com/questions/1729500/php-preg-replace-more-than-one-underscore/1729529#1729529Comment by gnud on PHP Preg-Replace more than one underscoregnud2009-11-13T14:34:35Z2009-11-13T14:34:35ZNo need to define a character class.http://stackoverflow.com/questions/1725124/accented-umlauted-characters-in-c/1725169#1725169Comment by gnud on Accented/umlauted characters in C?gnud2009-11-13T13:48:19Z2009-11-13T13:48:19ZWell, your terminal input is in UTF-8, but your locale is in ASCII. That's gonna cause some problems :)http://stackoverflow.com/questions/1725124/accented-umlauted-characters-in-c/1725169#1725169Comment by gnud on Accented/umlauted characters in C?gnud2009-11-13T01:11:44Z2009-11-13T01:11:44ZYou have to include langinfo.h for CODESET to be defined.http://stackoverflow.com/questions/1725124/accented-umlauted-characters-in-c/1725169#1725169Comment by gnud on Accented/umlauted characters in C?gnud2009-11-12T22:34:55Z2009-11-12T22:34:55ZWhat's the output of <code>locale charmap</code> in the terminal, and of calling <code>nl_langinfo(CODESET)</code> after the call to setlocale() in the c program?http://stackoverflow.com/questions/1725498/is-anybody-working-on-a-high-level-standard-library-for-c/1725529#1725529Comment by gnud on Is anybody working on a high level standard library for C++gnud2009-11-12T22:07:25Z2009-11-12T22:07:25ZYes - several other projects also have nice networking components. I just don't know what the asker is looking for.http://stackoverflow.com/questions/1725124/accented-umlauted-characters-in-c/1725183#1725183Comment by gnud on Accented/umlauted characters in C?gnud2009-11-12T21:41:03Z2009-11-12T21:41:03ZSorry, I removed my -1. But still - checking if the byte equals 0x3c? Check if it's > 127, please! Otherwise, any UTF-8-sequence not starting with 0x3c will yield wild results, because each byte in the sequence will be treated as ASCII.http://stackoverflow.com/questions/1725124/accented-umlauted-characters-in-c/1725183#1725183Comment by gnud on Accented/umlauted characters in C?gnud2009-11-12T21:35:07Z2009-11-12T21:35:07ZThis post shows a profound ignorance of UTF-8, and encodings in general. It's just plain wrong: The sum of the two bytes is NOT the unicode code point. -1http://stackoverflow.com/questions/1725124/accented-umlauted-characters-in-c/1725169#1725169Comment by gnud on Accented/umlauted characters in C?gnud2009-11-12T21:30:19Z2009-11-12T21:30:19ZOf course the platform matters - 'ö' does not fit in one byte in UTF-8, so you can't compare it as a character constant.http://stackoverflow.com/questions/1725470/h1-tag-class-alternate/1725481#1725481Comment by gnud on h1 tag class (alternate)gnud2009-11-12T21:20:49Z2009-11-12T21:20:49ZWell, you will need a corresponding CSS rule...