User Ciaran - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T04:48:29Zhttp://stackoverflow.com/feeds/user/5048http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/48494/firewall-build-or-buy2Firewall - Build or BuyCiaran2008-09-07T14:58:17Z2009-04-20T19:03:14Z
<p>I have a Linux web server farm with about 5 web servers, web traffic is about 20Mbps.</p>
<p>We currently have a Barracuda 340 Load Balancer (keep away from this device - piece of crap!) that is acting as a firewall. I want to put in a dedicated firewall and I'd like to know what peoples opinions are on building versus buying a dedicated firewall. </p>
<p>Main requirements:</p>
<ul>
<li>Dynamically block rouge traffic</li>
<li>Dynamically rate limit traffic</li>
<li>Block all ports except 80, 443</li>
<li>Limit port 22 to a set of IPs</li>
<li>High availability setup</li>
</ul>
<p>Also if we go for the build route, how do we know what level traffic the system can handle.</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/229446/how-do-i-add-exif-data-to-an-image/230480#2304804Answer by Ciaran for How do I add exif data to an image?Ciaran2008-10-23T16:42:33Z2008-10-23T16:42:33Z<p>You can save a large amount of space, especially if you have a large number of images..</p>
<p>Add the following to text.txt</p>
<pre><code>2#110#Credit="My Company"
</code></pre>
<p>Strip all existing exif data from the image</p>
<pre><code>mogrify -strip image.jpg
</code></pre>
<p>Add the credit to your image</p>
<pre><code>mogrify -profile 8BIMTEXT:text.txt image.jpg
</code></pre>
http://stackoverflow.com/questions/78077/alphanumeric-sorting/78118#781181Answer by Ciaran for Alphanumeric SortingCiaran2008-09-16T22:50:02Z2008-09-17T08:48:58Z<p>You don't specify your target language, but whatever it is, it should have reliable, built-in sorting methods, so use one of them! For PHP...</p>
<p>Load into an array and sort($array);</p>
<p><a href="http://ie.php.net/sort" rel="nofollow">php sort</a>...</p>
<pre><code>$fruits = array("lemon", "orange", "banana", "apple");
sort($fruits);
foreach ($fruits as $key => $val)
{
echo "fruits[" . $key . "] = " . $val . "\n";
}
</code></pre>
<p>Output:</p>
<pre><code>fruits[0] = apple
fruits[1] = banana
fruits[2] = lemon
fruits[3] = orange
</code></pre>
http://stackoverflow.com/questions/77873/filling-pdf-forms-with-php/78010#780101Answer by Ciaran for Filling PDF Forms with PHPCiaran2008-09-16T22:36:07Z2008-09-16T22:36:07Z<p>Try using <a href="http://www.htmldoc.org" rel="nofollow">HTMLDOC</a>, there is a free/opensource version available</p>
<p>There is more info on how to create a pdf using HTMLDOC with PHP:</p>
<p><a href="http://www.htmldoc.org/documentation.php/CallingHTMLDOCfromPHP.html" rel="nofollow">http://www.htmldoc.org/documentation.php/CallingHTMLDOCfromPHP.html</a></p>
http://stackoverflow.com/questions/77835/how-do-i-solve-this-error-class-phpunitextensionsseleniumtestcase-could-not-b/77955#779551Answer by Ciaran for How do I solve this error: "Class PHPUnit_Extensions_SeleniumTestCase could not be found"Ciaran2008-09-16T22:30:11Z2008-09-16T22:30:11Z<p>Have a look at one of the comments in the require_once entry in the php manual..</p>
<p><a href="http://ie.php.net/manual/en/function.require-once.php#62838" rel="nofollow">http://ie.php.net/manual/en/function.require-once.php#62838</a></p>
<p>"require_once (and include_once for that matters) is slow</p>
<p>Furthermore, if you plan on using unit tests and mock objects (i.e. including mock classes before the real ones are included in the class you want to test), it will not work as require() loads a file and not a class."</p>
http://stackoverflow.com/questions/77646/commodore-c64-emulator/77669#776696Answer by Ciaran for Commodore C64 Emulator?Ciaran2008-09-16T22:00:55Z2008-09-16T22:00:55Z<p>Have you tried CCS64?</p>
<p><a href="http://www.computerbrains.com/ccs64/" rel="nofollow">http://www.computerbrains.com/ccs64/</a></p>
<p>Games available from <a href="http://www.classic-pc-games.com/c64/games/index.html" rel="nofollow">http://www.classic-pc-games.com/c64/games/index.html</a></p>
http://stackoverflow.com/questions/34215/what-are-the-best-alternatives-to-notepad/48816#488161Answer by Ciaran for What are the best alternatives to notepad?Ciaran2008-09-07T21:39:58Z2008-09-07T21:39:58Z<p>I'd have to say <a href="http://www.editplus.com" rel="nofollow">EditPlus</a>, $35 well spent!</p>
http://stackoverflow.com/questions/134379/returning-query-results-in-predefined-order/134401#134401Comment by Ciaran on Returning query results in predefined orderCiaran2008-09-25T17:04:38Z2008-09-25T17:04:38ZIs it an expensive query?http://stackoverflow.com/questions/48494/firewall-build-or-buy/48572#48572Comment by Ciaran on Firewall - Build or BuyCiaran2008-09-16T21:57:31Z2008-09-16T21:57:31ZMight give pfsense a go.. I like the look of it.