User I GIVE TERRIBLE ADVICE - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T15:57:45Z http://stackoverflow.com/feeds/user/35344 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1678465/help-me-improve-this-erlang/1683031#1683031 5 Answer by I GIVE TERRIBLE ADVICE for Help me improve this Erlang? I GIVE TERRIBLE ADVICE 2009-11-05T19:41:30Z 2009-11-05T19:41:30Z <p>I've added this one to <a href="http://rosettacode.org/wiki/Roman%5FNumerals#Erlang" rel="nofollow">rosettacode.org</a> before, reposting here. I found the solution to be pretty elegant.</p> <pre><code>-module(roman). -export([to_roman/1]). to_roman(0) -&gt; []; to_roman(X) when X &gt;= 1000 -&gt; "M" ++ to_roman(X-1000); to_roman(X) when X &gt;= 100 -&gt; digit(X div 100, $C,$D,$M) ++ to_roman(X rem 100); to_roman(X) when X &gt;= 10 -&gt; digit(X div 10, $X,$L,$C) ++ to_roman(X rem 10); to_roman(X) when X &gt;= 1 -&gt; digit(X, $I,$V,$X). digit(1,X,_,_) -&gt; [X]; digit(2,X,_,_) -&gt; [X,X]; digit(3,X,_,_) -&gt; [X,X,X]; digit(4,X,Y,_) -&gt; [X,Y]; digit(5,_,Y,_) -&gt; [Y]; digit(6,X,Y,_) -&gt; [Y,X]; digit(7,X,Y,_) -&gt; [Y,X,X]; digit(8,X,Y,_) -&gt; [Y,X,X,X]; digit(9,X,_,Z) -&gt; [X,Z]. </code></pre> http://stackoverflow.com/questions/1063503/unique-constraint-in-mnesia/1144998#1144998 1 Answer by I GIVE TERRIBLE ADVICE for Unique constraint in Mnesia I GIVE TERRIBLE ADVICE 2009-07-17T18:41:01Z 2009-07-17T18:41:01Z <p>Ulf Wiger has released a library that lets you use mnesia as a relational database. It's called 'rdbms', it's a few years old and hasn't been updated in a long time, but you can probably use it as it is or at least base yourself on his work to deal with it. <a href="http://jungerl.cvs.sourceforge.net/jungerl/jungerl/lib/rdbms/src/" rel="nofollow">Grab the source</a> if you want.</p> <p>His description of it:</p> <blockquote> <p>I dust off my standard response that the 'rdbms' contrib offered a solution for this, by providing support for compound attributes and user-defined indexing, including the option to specify that an index value must be unique.</p> <p>Rdbms /has/ been used commercially, but I don't consider it ready for commercial use in general. I've not done anything on it for quite a while, since I don't perceive any user pressure, but anyone who wants that to change is of course welcome to contact me and argue their case.</p> <p><a href="http://ulf.wiger.net/rdbms/doc/rdbms.html" rel="nofollow">http://ulf.wiger.net/rdbms/doc/rdbms.html</a> (The docs leave a lot to be desired, I know - see above.)</p> </blockquote> <p>The doc mentionning the 'unique' constraint can be found <a href="http://ulf.wiger.net/rdbms/doc/rdbms.html#%5B%5Bparameterized%20indexes%5D%5D" rel="nofollow">here</a>. There's the possibility of having performance hits; mnesia is meant to be a key-value storage. I can't exactly remember, but it's possible defining the 'unique' indexes could involve a full-table traversal when checking them.</p> <p>All in all, as it's old you'll probably have trouble running it. See the <a href="http://forum.trapexit.org/viewtopic.php?t=15004&amp;sid=237f4bf0a2558f7cae580733a952c8af" rel="nofollow">trapexit thread about it</a>. Using it to study how it was done could be a better idea.</p> http://stackoverflow.com/questions/395198/preserving-relational-integrity-with-mnesia 5 Preserving relational integrity with Mnesia I GIVE TERRIBLE ADVICE 2008-12-27T17:43:22Z 2009-03-08T23:33:04Z <p>I've been diving into Erlang recently, and I decided to use Mnesia to do my database work given it can store any kind of Erlang data structure without a problem, scale with ease, be used with list comprehensions, etc.</p> <p>Coming from standard SQL databases, most rows can and should be identified by a primary key, usually an auto-incrementing integer. By default Mnesia considers the first field of a row to be its key. It also gives no way to have an auto-incrementing integer key as far as I know.</p> <p>Given I have these fictional records representing my tables:</p> <pre><code>-record(user, {name, salt, pass_hash, email}). -record(entry, {title, body, slug}). -record(user_entry, {user_name, entry_title}). </code></pre> <p>I figure using the username may be good enough for some purposes, as with the entry title, in order to identify the resource, but how do I go about maintaining integrity?</p> <p>Say the user changes its name, or that the entry's title changes after an edit. How do I make sure my data is still correctly related? Updating every table using the username when it changes sounds like a terrible idea no matter how it's put. </p> <p>What would be the best way to implement some kind of primary key system in Mnesia? </p> <p>Also, how would an intermediary table like 'user_entry' do if the first field is usually the key? Otherwise, what would a better way be to represent a many-to-many relationship in Mnesia?</p> http://stackoverflow.com/questions/288200/prime-number-calculation-fun/288386#288386 3 Answer by I GIVE TERRIBLE ADVICE for Prime number calculation fun I GIVE TERRIBLE ADVICE 2008-11-13T21:26:00Z 2008-11-13T21:31:19Z <p>Posting this as a logical explanation as I don't know java.</p> <p>All prime numbers above 3 are of the form 6n − 1 or 6n + 1, because all other numbers are divisible by 2 or 3.</p> <p>Also, if there is no divisor up until the square root of a number, it's prime.</p> <p>so, if we're looking for x, where 6n &lt; sqrt(x):</p> <pre><code>if x % 6n±1 == 0 : not prime. </code></pre> <p>until you get to the the square root, add 1 to n. so let's see if 147 is prime:</p> <pre><code>sqrt(147) == 12.1244 147%5 !=0, 147%7 == 0 &gt; not a prime sqrt(2027) == 45.02 2027 % 5 !=0, 2027 % 7 !=0 (this is 6±1, obviously) 2027 % 12±1 != 0 2027 % 18±1 != 0 2027 % 24±1 != 0 2027 % 30±1 != 0 2027 % 36±1 != 0 2027 % 42±1 != 0 -- over the square root, number is prime! -- </code></pre> <p>Then, all you need to do is iterate over a list of numbers. </p> <p>You can't find all primes only with this as you need to exclude non-primes under a certain threshold, which is not too hard to find.</p> <p>If you can manage to fit this logic inside a prime validation routine, you should get any number you want real fast (should take sqrt(n)/6 iterations for an integer n).</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/284753/nuggets-of-wisdom/284879#284879 7 Answer by I GIVE TERRIBLE ADVICE for Nuggets of wisdom? I GIVE TERRIBLE ADVICE 2008-11-12T18:35:56Z 2008-11-12T19:20:29Z <p>Can't remember where I heard it, must have been during some tech talk I've watched sometime before.</p> <blockquote> <p>Regardless of how smart, creative, and innovative your organization is, there are more smart, creative, and innovative people outside your organization than inside.</p> </blockquote> <p>Encourages open source work, peer review, reminds me not to try and reinvent the wheel.</p> <p>Also:</p> <blockquote> <p>Every single time I have been clever I have regretted it.</p> </blockquote> <p>Can't remember who told this one either.</p> http://stackoverflow.com/questions/282819/is-it-worth-learning-python-2-6-with-3-0-coming/282853#282853 8 Answer by I GIVE TERRIBLE ADVICE for Is it worth learning Python 2.6 with 3.0 coming? I GIVE TERRIBLE ADVICE 2008-11-12T02:48:31Z 2008-11-12T02:48:31Z <p>Python 2.6 is fine, like said by others. Notice that you can run scripts in a compatibility mode with the python2.6 shell which will give you warnings about features removed in python3. </p> <pre><code>$ python2.6 -3 yourfile.py </code></pre> <p>The -3 is the option making it show warnings when a feature will be gone.</p> <p>There will be a few changes between versions (as an example, how 'print' will behave), but most of the code will be fairly easy to port, especially if you test it with the compatibility option on. </p> http://stackoverflow.com/questions/282782/best-way-to-use-photoshop-cs3-in-linux/282788#282788 4 Answer by I GIVE TERRIBLE ADVICE for Best way to use Photoshop CS3 in Linux I GIVE TERRIBLE ADVICE 2008-11-12T02:06:46Z 2008-11-12T02:06:46Z <p>Wine has been a bit flaky with me before when going with Photoshop (keyboard shortcuts behaved weird) and it doesn't support latest versions.</p> <p>Using virtualization is working like a charm though, and you can go the easy way with software like VirtualBox. It's easy to use, there's plenty of tutorials on the web, and it's usually in your default repository.</p> http://stackoverflow.com/questions/282489/css-div-w-border-images/282515#282515 2 Answer by I GIVE TERRIBLE ADVICE for CSS: Div w/ Border Images I GIVE TERRIBLE ADVICE 2008-11-11T23:32:40Z 2008-11-11T23:49:23Z <p>While none of this is recommendable (mixing markup and design), it's often not the integrator who gets the final word. However, you should still attempt to keep everything as clean as possible. </p> <p>Your structure is pretty much the only kind of structure you can use to your ends, although if your width is static (300px?), I'd advise you to have your div background as one larger image repeated vertically. </p> <p>You'd then have a kind of footer within your div, where you could put the two bottom corners and the bottom picture all in one single image. Instead of having 5 divs inside one, you'd only have one. Note that in bigger environment, this also means the user can download 2 more images in parallel (4 max from a single host), making the overall download of the page faster.</p> <p>This obviously doesn't work if your width is relative to the parent or can change in any manner though.</p> <p><hr /></p> <p>EDIT: as it happens you specified the width is variable, I don't think there's a cleaner light way to do it HTML-wise.</p> <p>However, if you still want to maximize the speed of download for the images, consider using sprites: the east and west side images can be put inside the same bigger image: the only thing you modify is the background position:</p> <pre><code>background-position: 32px 0px; /* this should move the background to the right */ </code></pre> <p>The advantage is you only need one picture, less connections are needed to download them for the client (faster) and it takes as much place.</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282436#282436 24 Answer by I GIVE TERRIBLE ADVICE for What are five things you hate about your favorite language? I GIVE TERRIBLE ADVICE 2008-11-11T23:02:02Z 2008-11-11T23:14:45Z <p>I'll do PHP as I like it at times and python will be done way too much.</p> <ul> <li><p>No namespace; everything is in a kind of very big namespace which is hell in bigger environments</p></li> <li><p>Lack of standards when it comes to functions: array functions take a needle as a first argument, haystack as second (see <a href="http://ca3.php.net/manual/en/function.array-search.php" rel="nofollow">array_search</a>). String functions often take the haystack first, needle second (see <a href="http://ca3.php.net/manual/en/function.strpos.php" rel="nofollow">strpos</a>). Other functions just use different naming schemes: <a href="http://ca3.php.net/manual/en/function.bin2hex.php" rel="nofollow">bin2hex</a>, <a href="http://ca3.php.net/manual/en/function.strtolower.php" rel="nofollow">strtolower</a>, <a href="http://ca3.php.net/manual/en/function.cal-to-jd.php" rel="nofollow">cal_to_jd</a> </p> <p>Some functions have weird return values, out of what is normal: This forces you to have a third variable declared out of nowhere while PHP could efficiently interpret an empty array as false with its type juggling. There are near no other functions doing the same.</p> <pre><code>$var = preg_match_all('/regexp/', $str, $ret); echo $var; //outputs the number of matches print_r($ret); //outputs the matches as an array </code></pre></li> <li><p>The language (until PHP6) does its best to respect a near-retarded backward compatibility, making it carry bad practices and functions around when not needed (see <a href="http://ca3.php.net/manual/en/function.mysql-escape-string.php" rel="nofollow">mysql_escape_string</a> vs. <a href="http://ca3.php.net/manual/en/function.mysql-real-escape-string.php" rel="nofollow">mysql_real_escape_string</a>).</p></li> <li><p>The language evolved from a templating language to a full-backend one. This means anybody can output anything when they want, and it gets abused. You end up with template engines for a templating language...</p></li> <li><p>It sucks at importing files. You have 4 different ways to do it (include, include_once, require, require_once), they are all slow, very slow. In fact the whole language is slow. At least, pretty slower than python (even with a framework) and RoR from what I gather.</p></li> </ul> <p>I still like PHP, though. It's the chainsaw of web development: you want a small to medium site done real fast and be sure anybody can host it (although configs may differ)? PHP is right there, and it's so ubiquitous it takes only 5 minutes to install a full LAMP or WAMP stack. Well, I'm going back to working with python now...</p> http://stackoverflow.com/questions/279619/whats-your-favorite-implementation-of-producing-the-fibonacci-sequence/281757#281757 1 Answer by I GIVE TERRIBLE ADVICE for What's your favorite implementation of producing the fibonacci sequence? I GIVE TERRIBLE ADVICE 2008-11-11T18:27:51Z 2008-11-11T18:27:51Z <p>Python with memoization:</p> <pre><code>class memoize: # class as decorator def __init__(self, function): self.function = function self.memoized = {} def __call__(self, *args): try: return self.memoized[args] except KeyError: self.memoized[args] = self.function(*args) return self.memoized[args] @memoize def fibonacci_memoized(n): if n in (0, 1): return n return fibonacci_memoized(n - 1) + fibonacci_memoized(n - 2) </code></pre> <p>Let's compare:</p> <pre><code>Beginning trial for fibonacci_memoized(30). fibonacci_memoized(30) = 832040 in 0.000516s. Beginning trial for fibonacci(30). fibonacci(30) = 832040 in 1.147118s. </code></pre> <p>The memoized function is over 2223 times faster.</p> <p>See <a href="http://avinashv.net/2008/04/python-decorators-syntactic-sugar/" rel="nofollow">http://avinashv.net/2008/04/python-decorators-syntactic-sugar/</a> for details.</p> <blockquote> <p>fibonacci(332): 1082459262056433063877940200966638133809015267665311237542082678938909 in 0.009884s</p> </blockquote> http://stackoverflow.com/questions/281531/how-to-stop-a-php-output-buffer-from-going-over-the-memory-limit/281651#281651 1 Answer by I GIVE TERRIBLE ADVICE for How to stop a PHP output buffer from going over the memory limit? I GIVE TERRIBLE ADVICE 2008-11-11T17:54:56Z 2008-11-11T17:54:56Z <p>You should raise the memory limit before anything, especially if your only other solution is to go through a temporary file.</p> <p>There's all kinds of downsides to using temporary files (mainly, it's slower), and if you really need a way to store the buffer before outputing it, Go look for <a href="http://ca3.php.net/manual/en/book.memcache.php" rel="nofollow">memcached</a> or <a href="http://ca3.php.net/manual/en/book.apc.php" rel="nofollow">APC cache</a>. This would let you do roughly the same as a file, except you have the fast access of RAM.</p> <p>I must say this is a terrible idea overall, though. If the buffer currently doesn't work right, there's likely something you could build differently in order to make your site work better.</p> http://stackoverflow.com/questions/278632/what-is-your-preferred-pastime-programming-project/278659#278659 1 Answer by I GIVE TERRIBLE ADVICE for What is your preferred pastime programming project? I GIVE TERRIBLE ADVICE 2008-11-10T18:00:36Z 2008-11-10T18:00:36Z <p>I work on various website projects, usually backend stuff and some kinds of front-end widgets. I lose focus quite fast and nearly all of my stuff never goes out of development.</p> <p>The projects I finish, I stop maintaining them in order to move on and try new and more interesting things. I have a bunch of inactive websites online, waiting for new content that'll never come, and I'm still making new plans for new sites every few weeks.</p> http://stackoverflow.com/questions/276040/how-do-you-connect-retrieve-data-from-a-mysql-database-using-objects-in-php/276065#276065 3 Answer by I GIVE TERRIBLE ADVICE for How do you connect/retrieve data from a MYSQL database using objects in PHP? I GIVE TERRIBLE ADVICE 2008-11-09T16:18:16Z 2008-11-09T18:51:08Z <p>Since version 5.1, PHP is shipped with the PDO driver, which gives a class for prepared statements.</p> <pre><code>$dbh = new PDO("mysql:host=$hostname;dbname=$db", $username, $password); //connect to the database //each :keyword represents a parameter or value to be bound later $query= $dbh-&gt;prepare('SELECT * FROM users WHERE id = :id AND password = :pass'); # Variables are set here. $query-&gt;bindParam(':id', $id); // this is a pass by reference $query-&gt;bindValue(':pass', $pass); // this is a pass by value $query-&gt;execute(); // query is run // to get all the data at once $res = $query-&gt;fetchall(); print_r($res); </code></pre> <p>see <a href="http://ca3.php.net/manual/en/book.pdo.php" rel="nofollow">PDO driver at php.net</a></p> <p>Note that this way (with prepared statements) will automatically escape all that needs to be and is one of the safest ways to execute mysql queries, as long as you use binbParam or bindValue.</p> <p>There is also the <a href="http://ca3.php.net/manual/en/book.mysqli.php" rel="nofollow">mysqli</a> extension to do a similar task, but I personally find PDO to be cleaner.</p> <p>What going this whole way around and using all these steps gives you is possibly a better solution than anything else when it comes to PHP.</p> <p>You can then use <a href="http://ca3.php.net/manual/en/pdostatement.fetchobject.php" rel="nofollow">$query->fetchobject</a> to retrieve your data as an object.</p> http://stackoverflow.com/questions/1712172/whats-your-take-on-the-programming-language-go/1713160#1713160 Comment by I GIVE TERRIBLE ADVICE on What's your take on the programming language Go? I GIVE TERRIBLE ADVICE 2009-11-12T18:39:40Z 2009-11-12T18:39:40Z Go doesn't have exceptions. A huge part of Erlang is its handling of failures, errors and exceptions. They don't really compare on other points than message passing. http://stackoverflow.com/questions/1678465/help-me-improve-this-erlang/1683031#1683031 Comment by I GIVE TERRIBLE ADVICE on Help me improve this Erlang? I GIVE TERRIBLE ADVICE 2009-11-11T18:31:43Z 2009-11-11T18:31:43Z I don't think tail recursion will make it that much faster (assuming we rarely calculate billions in roman numerals, which can be a pretty big assumption) http://stackoverflow.com/questions/1636455/where-is-erlang-used-and-why/1636469#1636469 Comment by I GIVE TERRIBLE ADVICE on Where is Erlang used and why? I GIVE TERRIBLE ADVICE 2009-11-05T20:04:16Z 2009-11-05T20:04:16Z CouchDB is not an OO database, it's a document-oriented database. http://stackoverflow.com/questions/1657204/erlang-uuid-generator/1657209#1657209 Comment by I GIVE TERRIBLE ADVICE on erlang: uuid generator I GIVE TERRIBLE ADVICE 2009-11-05T19:59:10Z 2009-11-05T19:59:10Z Why do you import random if you use random:uniform? You don't need to do that in Erlang. http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282436#282436 Comment by I GIVE TERRIBLE ADVICE on What are five things you hate about your favorite language? I GIVE TERRIBLE ADVICE 2009-08-27T16:54:56Z 2009-08-27T16:54:56Z When returning an empty array, PHP will evaluate it to false with its loose typing. Returning the array itself would still let you like &quot;if($matches = preg_match_all($regexp,$str)){...}&quot;. Adding 'or' after sounds like a pretty bad reason to have the return values that way. http://stackoverflow.com/questions/102911/whats-a-good-functional-language-to-learn-first/103306#103306 Comment by I GIVE TERRIBLE ADVICE on What's a good Functional language to learn first? I GIVE TERRIBLE ADVICE 2009-08-09T16:05:09Z 2009-08-09T16:05:09Z Erlang can have static type analysis through type inference with the help of TypEr and Dialyzer. Better than that, they can even analyze already compiled code you wish to integrate with and find errors in running applications. <a href="http://erlang.org/doc/man/dialyzer.html" rel="nofollow">erlang.org/doc/man/dialyzer.html</a> <a href="http://www.erlang.org/eeps/eep-0008.html" rel="nofollow">erlang.org/eeps/eep-0008.html</a> <a href="http://www.erlang.se/workshop/2005/TypEr_Erlang05.pdf" rel="nofollow">erlang.se/workshop/2005/&hellip;</a> http://stackoverflow.com/questions/395198/preserving-relational-integrity-with-mnesia/396185#396185 Comment by I GIVE TERRIBLE ADVICE on Preserving relational integrity with Mnesia I GIVE TERRIBLE ADVICE 2008-12-28T16:26:11Z 2008-12-28T16:26:11Z I think &quot;where&quot; should instead be &quot;when.&quot; Thanks for the great explanations, too. http://stackoverflow.com/questions/395198/preserving-relational-integrity-with-mnesia/395343#395343 Comment by I GIVE TERRIBLE ADVICE on Preserving relational integrity with Mnesia I GIVE TERRIBLE ADVICE 2008-12-27T21:43:44Z 2008-12-27T21:43:44Z Is it really the good way? it seems make_ref/0 resets its count after restarting the shell and will have multiple similar values. Wouldn't that mean you could get bad keys after a server restart? Coupling it with now/0 could help, maybe. http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/115633#115633 Comment by I GIVE TERRIBLE ADVICE on Factorial Algorithms in different languages I GIVE TERRIBLE ADVICE 2008-11-13T18:57:52Z 2008-11-13T18:57:52Z One-liner for the sake of it: &gt; Fact = fun(N) when N &gt; 0 -&gt; lists:foldl(fun(X,Y)-&gt;X*Y end, 1, lists:seq(1,N)) end. http://stackoverflow.com/questions/249200/what-is-the-fastest-webserver-solution-with-the-lowest-memory-footprint/249275#249275 Comment by I GIVE TERRIBLE ADVICE on What is the fastest webserver solution with the lowest memory footprint? I GIVE TERRIBLE ADVICE 2008-11-12T21:11:00Z 2008-11-12T21:11:00Z +1 for web.py. It's stupidly well done for lightweight POST/GET/PUT/DELETE apps and an overall makes it easy to organize a RESTful architecture. http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282436#282436 Comment by I GIVE TERRIBLE ADVICE on What are five things you hate about your favorite language? I GIVE TERRIBLE ADVICE 2008-11-12T12:55:15Z 2008-11-12T12:55:15Z You can partially have it, just use !== and === for comparisons. That ensures the types are respected but for +-/* etc. I believe PHP gives enough choice. Being weakly typed is a language choice like duck typing, and letting people choose on their own would make the language even less consistent. http://stackoverflow.com/questions/282782/best-way-to-use-photoshop-cs3-in-linux/282799#282799 Comment by I GIVE TERRIBLE ADVICE on Best way to use Photoshop CS3 in Linux I GIVE TERRIBLE ADVICE 2008-11-12T12:50:46Z 2008-11-12T12:50:46Z If the layer has layer styles (drop shadow, gradient overlay, etc.), the GIMP will not be able to open it all and the image will be incomplete. http://stackoverflow.com/questions/282916/using-loops-to-create-arrays/282917#282917 Comment by I GIVE TERRIBLE ADVICE on Using loops to create arrays I GIVE TERRIBLE ADVICE 2008-11-12T03:41:49Z 2008-11-12T03:41:49Z Attributing keys in an array via $array[] = ...; is extremely slow. It's worth having the $i from the 'for' between the square braces. $array[$i] will give you a good boost in performance when compared to $array[] if you're attributing large datasets. http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282420#282420 Comment by I GIVE TERRIBLE ADVICE on What are five things you hate about your favorite language? I GIVE TERRIBLE ADVICE 2008-11-12T00:14:02Z 2008-11-12T00:14:02Z I believe it's easier to understand in a graphic manner: [0:2] -&gt; |0 1 |2 3 4 5 6 7 -&gt; [0,1] [6:7] -&gt; 0 1 2 3 4 5 |6 |7 -&gt; [6] [6:] -&gt; 0 1 2 3 4 5 |6 7| -&gt; [6, 7] [-3:-1] -&gt; 0 1 2 3 4 |5 6 |7 -&gt; [5, 6] The numbers represent a limit rather than a specific location: [2:8] -&gt; 0 1 |2| -&gt; [2] http://stackoverflow.com/questions/282489/css-div-w-border-images/282515#282515 Comment by I GIVE TERRIBLE ADVICE on CSS: Div w/ Border Images I GIVE TERRIBLE ADVICE 2008-11-11T23:45:42Z 2008-11-11T23:45:42Z Good to know. I believe you have what could be the optimal way to do it without getting in too much hackery. Updated with some additional information you could find useful though.