User neu242 - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T21:33:30Zhttp://stackoverflow.com/feeds/user/13365http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1796404/how-do-i-reliably-access-the-httpservletrequest-in-a-jspx-when-its-behind-a-prox1How do I reliably access the HttpServletRequest in a jspx when it's behind a proxy?neu2422009-11-25T11:38:47Z2009-11-25T12:21:07Z
<p>I've got a jspx that needs to know the current HttpServletRequest's getServerName(). The jspx can fetch this with #{mybean.serverName} from its bean, like this:</p>
<pre><code>public String getServerName() {
HttpServletRequest request = (HttpServletRequest) FacesInstance.getCurrentInstance().getExternalContent().getRequest();
return request.getServerName();
}
</code></pre>
<p>However, when this is served behind a proxy (Apache with mod_proxy), getServerName() will <em>some times</em> return the node's host name instead of the frontend's host name. Other times it works correctly.</p>
<p>A plain jsp with <% request.getServerName(); %> will, however, always return the frontend's host name.</p>
<p>What's the problem with FacesInstance's HttpServletRequest? Is there a way to fetch the "real" request object?</p>
http://stackoverflow.com/questions/1686271/how-do-i-set-file-encoding-for-a-junit-test-in-ant0How do I set file.encoding for a junit test in ant?neu2422009-11-06T08:46:15Z2009-11-06T13:40:04Z
<p>I'm not quite done with <a href="http://stackoverflow.com/questions/1339352/how-do-i-set-dfile-encoding-within-ants-build-xml">file.encoding and ant</a>. How do I set the <em>file.encoding</em> for junit tests in ant? The <em>junit</em> ant task doesn't support the <em>encoding</em> attribute like the <em>javac</em> task does. </p>
<p>I've tried running «ant -Dfile.encoding=UTF-8» and «ANT_OPTS="-Dfile.encoding=UTF-8" ant» without success. System.getProperty("file.encoding") within a test still returns <em>MacRoman</em>.</p>
http://stackoverflow.com/questions/1587156/tell-sax-parser-to-ignore-invalid-characters/1686214#16862140Answer by neu242 for Tell SAX Parser to ignore invalid characters?neu2422009-11-06T08:31:37Z2009-11-06T08:31:37Z<p>Could you use java.nio.charset.CharsetDecoder together with InputStreamReader(InputStream in, CharsetDecoder dec) somehow? </p>
<blockquote>
<p>How a decoding error is handled
depends upon the action requested for
that type of error, which is described
by an instance of the
CodingErrorAction class. The possible
error actions are to ignore the
erroneous input, report the error to
the invoker via the returned
CoderResult object, or replace the
erroneous input with the current value
of the replacement string. The
replacement has the initial value
"\uFFFD"; its value may be changed via
the replaceWith method.</p>
</blockquote>
<p>(from the CharsetDecoder javadoc)</p>
http://stackoverflow.com/questions/1587156/tell-sax-parser-to-ignore-invalid-characters/1674139#16741390Answer by neu242 for Tell SAX Parser to ignore invalid characters?neu2422009-11-04T14:36:48Z2009-11-05T13:45:49Z<p>I guess this won't help you much, but maybe others would like to know:</p>
<p>I recently got the same exception when retrieving an UTF-8 XML file that was served with ISO-8859-1 headers. The solution was to specify UTF-8 manually via String.getBytes(charset):</p>
<pre><code>public Document parseRequest(HttpServletRequest request) {
DocumentBuilderFactory builder = DocumentBuilderFactory.newInstance();
DataInputStream dataStream = new DataInputStream(request.getInputStream());
String xml = dataStream.readUTF();
ByteArrayInputStream byteStream = new ByteArrayInputStream(xml.getBytes("UTF-8"));
return builder.newDocumentBuilder().parse(byteStream);
}
</code></pre>
<p><strong>EDIT</strong>: .. or even simpler:</p>
<pre><code>public Document parseRequest(HttpServletRequest request) {
DocumentBuilderFactory domFactory = DocumentBuilderFactory.newInstance();
Reader reader = new InputStreamReader(request.getInputStream(), "UTF-8");
InputSource source = new InputSource(reader);
return domFactory.newDocumentBuilder().parse(source);
}
</code></pre>
http://stackoverflow.com/questions/624120/is-it-possible-to-speed-up-a-recursive-file-scan-in-php3Is it possible to speed up a recursive file scan in PHP?neu2422009-03-08T19:18:51Z2009-10-28T15:33:04Z
<p>I've been trying to replicate <a href="http://www.gnu.org/software/findutils/" rel="nofollow">Gnu Find</a> ("find .") in PHP, but it seems impossible to get even close to its speed. The PHP implementations use at least twice the time of Find. Are there faster ways of doing this with PHP?</p>
<p>EDIT: I added a code example using the SPL implementation -- its performance is equal to the iterative approach</p>
<p>EDIT2: When calling find from PHP it was actually slower than the native PHP implementation. I guess I should be satisfied with what I've got :)</p>
<pre><code>// measured to 317% of gnu find's speed when run directly from a shell
function list_recursive($dir) {
if ($dh = opendir($dir)) {
while (false !== ($entry = readdir($dh))) {
if ($entry == '.' || $entry == '..') continue;
$path = "$dir/$entry";
echo "$path\n";
if (is_dir($path)) list_recursive($path);
}
closedir($d);
}
}
// measured to 315% of gnu find's speed when run directly from a shell
function list_iterative($from) {
$dirs = array($from);
while (NULL !== ($dir = array_pop($dirs))) {
if ($dh = opendir($dir)) {
while (false !== ($entry = readdir($dh))) {
if ($entry == '.' || $entry == '..') continue;
$path = "$dir/$entry";
echo "$path\n";
if (is_dir($path)) $dirs[] = $path;
}
closedir($dh);
}
}
}
// measured to 315% of gnu find's speed when run directly from a shell
function list_recursivedirectoryiterator($path) {
$it = new RecursiveDirectoryIterator($path);
foreach ($it as $file) {
if ($file->isDot()) continue;
echo $file->getPathname();
}
}
// measured to 390% of gnu find's speed when run directly from a shell
function list_gnufind($dir) {
$dir = escapeshellcmd($dir);
$h = popen("/usr/bin/find $dir", "r");
while ('' != ($s = fread($h, 2048))) {
echo $s;
}
pclose($h);
}
</code></pre>
http://stackoverflow.com/questions/457775/does-java-need-tuples/1605972#16059720Answer by neu242 for Does Java need tuples?neu2422009-10-22T09:12:27Z2009-10-22T09:12:27Z<p>Here's a pretty stupid N-tuple:</p>
<pre><code>class Tuple {
Object[] list;
Tuple(Object... value) {
list = value;
}
Object[] get() {
return list;
}
}
</code></pre>
http://stackoverflow.com/questions/1531324/is-there-any-way-for-dbunit-to-automatically-create-tables0Is there any way for DBUnit to automatically create tables?neu2422009-10-07T12:25:16Z2009-10-18T20:11:39Z
<p>I just realized that DBUnit doesn't create tables by itself (see <a href="http://stackoverflow.com/questions/1530951">How do I test with DBUnit with plain JDBC and HSQLDB without facing a NoSuchTableException?</a>).</p>
<p>Is there any way for DBUnit to automatically create tables from a dataset or dtd?</p>
<p><strong>EDIT:</strong> For simple testing of an in-memory database like HSQLDB, a crude approach can be used to automatically create tables:</p>
<pre><code>private void createHsqldbTables(IDataSet dataSet, Connection connection) throws DataSetException, SQLException {
String[] tableNames = dataSet.getTableNames();
String sql = "";
for (String tableName : tableNames) {
ITable table = dataSet.getTable(tableName);
ITableMetaData metadata = table.getTableMetaData();
Column[] columns = metadata.getColumns();
sql += "create table " + tableName + "( ";
boolean first = true;
for (Column column : columns) {
if (!first) {
sql += ", ";
}
String columnName = column.getColumnName();
String type = resolveType((String) table.getValue(0, columnName));
sql += columnName + " " + type;
if (first) {
sql += " primary key";
first = false;
}
}
sql += "); ";
}
PreparedStatement pp = connection.prepareStatement(sql);
pp.executeUpdate();
}
private String resolveType(String str) {
try {
if (new Double(str).toString().equals(str)) {
return "double";
}
} catch (Exception e) {}
try {
if (new Integer(str).toString().equals(str)) {
return "int";
}
} catch (Exception e) {}
return "varchar";
}
</code></pre>
http://stackoverflow.com/questions/1530951/how-do-i-test-with-dbunit-with-plain-jdbc-and-hsqldb-without-facing-a-nosuchtable1How do I test with DBUnit with plain JDBC and HSQLDB without facing a NoSuchTableException?neu2422009-10-07T11:06:49Z2009-10-18T17:18:28Z
<p>I am trying to use DBUnit with plain JDBC and HSQLDB, and can't quite get it to work -- even though I've used DBUnit with Hibernate earlier with great success. Here's the code:</p>
<pre><code>import java.sql.PreparedStatement;
import org.dbunit.IDatabaseTester;
import org.dbunit.JdbcDatabaseTester;
import org.dbunit.dataset.IDataSet;
import org.dbunit.dataset.xml.XmlDataSet;
import org.junit.Test;
public class DummyTest {
@Test
public void testDBUnit() throws Exception {
IDatabaseTester databaseTester = new JdbcDatabaseTester("org.hsqldb.jdbcDriver", "jdbc:hsqldb:mem", "sa", "");
IDataSet dataSet = new XmlDataSet(getClass().getResourceAsStream("dataset.xml"));
databaseTester.setDataSet(dataSet);
databaseTester.onSetup();
PreparedStatement pst = databaseTester.getConnection().getConnection().prepareStatement("select * from mytable");
}
}
</code></pre>
<p>And this is the dataset.xml in question:</p>
<pre><code><dataset>
<table name="mytable">
<column>itemnumber</column>
<column>something</column>
<column>other</column>
<row>
<value>1234abcd</value>
<value>something1</value>
<value>else1</value>
</row>
</table>
</dataset>
</code></pre>
<p>This test gives me a NoSuchTableException:</p>
<pre><code>org.dbunit.dataset.NoSuchTableException: mytable
at org.dbunit.database.DatabaseDataSet.getTableMetaData(DatabaseDataSet.java:282)
at org.dbunit.operation.DeleteAllOperation.execute(DeleteAllOperation.java:109)
at org.dbunit.operation.CompositeOperation.execute(CompositeOperation.java:79)
at org.dbunit.AbstractDatabaseTester.executeOperation(AbstractDatabaseTester.java:190)
at org.dbunit.AbstractDatabaseTester.onSetup(AbstractDatabaseTester.java:103)
at DummyTest.testDBUnit(DummyTest.java:18)
</code></pre>
<p>If I remove the databaseTester.onSetup() line, I get an SQLException instead:</p>
<pre><code>java.sql.SQLException: Table not found in statement [select * from mytable]
at org.hsqldb.jdbc.Util.throwError(Unknown Source)
at org.hsqldb.jdbc.jdbcPreparedStatement.<init>(Unknown Source)
at org.hsqldb.jdbc.jdbcConnection.prepareStatement(Unknown Source)
at DummyTest.testDBUnit(DummyTest.java:19)
</code></pre>
<p>The dataset in itself is working, since I can access it like it should:</p>
<pre><code>ITable table = dataSet.getTable("mytable");
String firstCol = table.getTableMetaData().getColumns()[0];
String tName = table.getTableMetaData().getTableName();
</code></pre>
<p>What am I missing here?</p>
<p><strong>EDIT</strong>: As mlk points out, DBUnit doesn't create tables. If I insert the following before adding the dataset, everything goes smoothly:</p>
<pre><code>PreparedStatement pp = databaseTester.getConnection().getConnection().prepareStatement(
"create table mytable ( itemnumber varchar(255) NOT NULL primary key, "
+ " something varchar(255), other varchar(255) )");
pp.executeUpdate();
</code></pre>
<p>I posted a followup question as <a href="http://stackoverflow.com/questions/1531324">Is there any way for DBUnit to automatically create tables from a dataset or dtd?</a></p>
http://stackoverflow.com/questions/1244222/how-to-simulate-click-on-anchor-with-specific-text-using-javascript-in-greasemonk/1486455#14864550Answer by neu242 for How to simulate click on anchor with specific text using javascript in GreaseMonkey?neu2422009-09-28T10:57:42Z2009-09-28T10:57:42Z<p>The solution (which Tomalak linked to) from <a href="https://developer.mozilla.org/en/DOM/event.initMouseEvent" rel="nofollow">https://developer.mozilla.org/en/DOM/event.initMouseEvent</a> worked great for me, and it doesn't require prototype or jquery.</p>
<pre><code>function simulateClick() {
var evt = document.createEvent("MouseEvents");
evt.initMouseEvent("click", true, true, window,
0, 0, 0, 0, 0, false, false, false, false, 0, null);
var cb = document.getElementById("checkbox");
var canceled = !cb.dispatchEvent(evt);
if(canceled) {
// A handler called preventDefault
alert("canceled");
} else {
// None of the handlers called preventDefault
alert("not canceled");
}
}
</code></pre>
http://stackoverflow.com/questions/1339352/how-do-i-set-dfile-encoding-within-ants-build-xml0How do I set -Dfile.encoding within ant's build.xml?neu2422009-08-27T07:09:54Z2009-08-27T07:42:22Z
<p>I've got java source files with iso-8859-1 encoding. When I run <em>ant</em>, I get "warning: unmappable character for encoding UTF-8". I can avoid this if I run <em>ant -Dfile.encoding=iso-8859-1</em> or add <em>encoding="ISO-8859-1"</em> to each javac statement.</p>
<p>Is there a way to set the property globally within build.xml? <em><property name="file.encoding" value="ISO-8859-1"></em> does not work. I know that I can add a foo=ISO-8859-1 property and set encoding="${foo}" to each javac statement, but I'm trying to avoid that.</p>
http://stackoverflow.com/questions/1299489/is-it-possible-to-add-breakpoints-to-a-class-which-i-dont-have-the-source-code-f5Is it possible to add breakpoints to a class which I don't have the source code for?neu2422009-08-19T12:02:49Z2009-08-19T12:38:36Z
<p>I want to add a breakpoint in a class in Eclipse, but I don't have the source code for it. Is it possible to add a breakpoint in it anyway? In my case I really only need to know when a method is called.</p>
<p>(As a side note: does anyone have the source code for j2ee_api_1_3.jar?)</p>
http://stackoverflow.com/questions/114204/how-do-i-read-write-as-the-authenticated-user-with-apache-webdav0How do I read/write as the authenticated user with Apache/WebDAV?neu2422008-09-22T10:45:50Z2009-07-10T19:45:02Z
<p>I've set up DAV in apache2, which works great. The thing is, all read/write operations are done with the apache user's credentials. Instead I want to use the HTTP authenticated user's credentials. If I authenticate as "john", all read and write operations should use the system user john's credentials (from /etc/passwd). <a href="http://httpd.apache.org/docs/2.2/suexec.html" rel="nofollow">suEXEC</a> seems like overkill since I am not executing anything, but I might be wrong...</p>
<p>Here's the current configuration:</p>
<pre><code><VirtualHost *:80>
DocumentRoot /var/www/webdav
ServerName webdav.mydomain.com
ServerAdmin webmaster@mydomain.com
<Location "/">
DAV On
AuthType Basic
AuthName "WebDAV Restricted"
AuthUserFile /etc/apache2/extra/webdav-passwords
require valid-user
Options +Indexes
</Location>
DAVLockDB /var/lib/dav/lockdb
ErrorLog /var/log/apache2/webdav-error.log
TransferLog /var/log/apache2/webdav-access.log
</VirtualHost>
</code></pre>
http://stackoverflow.com/questions/359047/php-detecting-request-type-get-post-put-or-delete/897311#8973110Answer by neu242 for PHP detecting request type (GET, POST, PUT or DELETE)neu2422009-05-22T10:52:06Z2009-05-22T10:52:06Z<p>REST in PHP can be done pretty simple. Create <a href="http://example.com/test.php" rel="nofollow">http://example.com/test.php</a> (outlined below). Use this for REST calls, e.g. <a href="http://example.com/test.php/testing/123/hello" rel="nofollow">http://example.com/test.php/testing/123/hello</a>. This works with Apache and Lighttpd out of the box, and no rewrite rules are needed.</p>
<pre><code><?php
$method = $_SERVER['REQUEST_METHOD'];
$request = split("/", substr(@$_SERVER['PATH_INFO'], 1));
switch ($method) {
case 'PUT':
rest_put($request);
break;
case 'POST':
rest_post($request);
break;
case 'GET':
rest_get($request);
break;
case 'HEAD':
rest_head($request);
break;
case 'DELETE':
rest_delete($request);
break;
case 'OPTIONS':
rest_options($request);
break;
default:
rest_error($request);
break;
}
?>
</code></pre>
http://stackoverflow.com/questions/875467/java-client-certificates-over-https-ssl/876785#8767852Answer by neu242 for Java client certificates over HTTPS/SSLneu2422009-05-18T08:58:31Z2009-05-18T08:58:31Z<p>While not recommended, you can also disable SSL cert validation alltogether:</p>
<pre><code>public static void disableCertificateValidation() {
// Create a trust manager that does not validate certificate chains
TrustManager[] trustAllCerts = new TrustManager[] { new X509TrustManager() {
public X509Certificate[] getAcceptedIssuers() {
return null;
}
public void checkClientTrusted(X509Certificate[] certs, String authType) {
return;
}
public void checkServerTrusted(X509Certificate[] certs, String authType) {
return;
}
}};
// Install the all-trusting trust manager
try {
SSLContext sc = SSLContext.getInstance("SSL");
sc.init(null, trustAllCerts, new SecureRandom());
HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory());
} catch (Exception e) {
return;
}
}
</code></pre>
http://stackoverflow.com/questions/34312/simple-test-vs-phpunit/814882#8148822Answer by neu242 for Simple test vs PHPunitneu2422009-05-02T13:41:21Z2009-05-02T13:41:21Z<p>Baphled has a nice article on <a href="http://baphled.wordpress.com/2009/01/28/simpletest-vs-phpunit/" rel="nofollow">SimpleTest vs PHPUnit3</a>.</p>
http://stackoverflow.com/questions/773574/in-php-how-do-i-deal-with-the-difference-in-encoded-filenames-on-hfs-vs-elsewh0In PHP, how do I deal with the difference in encoded filenames on HFS+ vs. elsewhere?neu2422009-04-21T16:52:26Z2009-04-21T19:58:54Z
<p>I am creating a very simple file search, where the search database is a text file with one file name per line. The database is built with PHP, and matches are found by grepping the file (also with PHP).</p>
<p>This works great in Linux, but <a href="https://sourceforge.net/tracker/?func=detail&aid=2766482&group%5Fid=208076&atid=1004244" rel="nofollow">not on Mac when non-ascii characters are used</a>. It looks like names are encoded differently on HFS+ (MacOSX) than on e.g. ext3 (Linux). Here's a test.php:</p>
<pre><code><?php
$mystring = "abcóüÚdefå";
file_put_contents($mystring, "");
$h = dir('.');
$h->read(); // "."
$h->read(); // ".."
$filename = $h->read();
print "$mystring\n$filename\n";
if ($mystring == $filename) print "equal\n";
else print "different\n";
</code></pre>
<p>When run MacOSX:</p>
<pre><code>$ php test.php
abcóüÚdefå
abcóüÚdefå
different
$ php test.php |cat -evt
abcóü?M-^Zdefå$
abco?M-^Au?M-^HU?M-^Adefa?M-^J$
different$
</code></pre>
<p>When run on Linux (or on a nfs-mounted ext3 filesystem on MacOSX):</p>
<pre><code>$ php test.php
abcóüÚdefå
abcóüÚdefå
equal
$ php test.php |cat -evt
abcM-CM-3M-CM-<M-CM-^ZdefM-CM-%$
abcM-CM-3M-CM-<M-CM-^ZdefM-CM-%$
equal$
</code></pre>
<p>Is there a way to make this script return "equal" on both platforms?</p>
<p><strong>EDIT:</strong> It looks like MacOSX uses normalization form D (NFD) to encode UTF-8, while <a href="http://www.j3e.de/linux/convmv/man/#hfs%5F%5Fon%5Fos%5Fx%5F%5F%5Fdarwin" rel="nofollow">most other systems use NFC</a>. I can find <a href="http://code.phpbb.com/svn/phpbb/trunk/phpBB/includes/utf/utf%5Fnormalizer.php" rel="nofollow">several</a> <a href="http://rishida.net/code/showsource.php?source=normalization/n11n.php" rel="nofollow">implementations</a> on NFD to NFC conversion, but I have yet to find a small and simple one.</p>
<p><strong>EDIT2:</strong> <a href="http://stackoverflow.com/questions/773574/in-php-how-do-i-deal-with-the-difference-in-encoded-filenames-on-hfs-vs-elsewh/774030#774030">Found one!</a></p>
<p><img src="http://unicode.org/reports/tr15/images/UAX15-NormFig3.jpg" alt="NFC vs NFD" /></p>
<p>(<a href="http://unicode.org/reports/tr15/" rel="nofollow">from unicode.org</a>)</p>
http://stackoverflow.com/questions/773574/in-php-how-do-i-deal-with-the-difference-in-encoded-filenames-on-hfs-vs-elsewh/774030#7740300Answer by neu242 for In PHP, how do I deal with the difference in encoded filenames on HFS+ vs. elsewhere?neu2422009-04-21T18:46:43Z2009-04-21T19:58:54Z<p>Solved: The <a href="http://php.net/manual/en/class.normalizer.php" rel="nofollow">Normalizer class</a> can be used to detect NFD strings and convert them to NFC. It's available in PHP 5.3 or through the <a href="http://pecl.php.net/package/intl" rel="nofollow">PECL Internationalization extension</a>.</p>
<pre><code>if (!normalizer_is_normalized($str)) {
$str = normalizer_normalize($str);
}
</code></pre>
http://stackoverflow.com/questions/519788/why-is-compareto-on-an-enum-final-in-java4Why is compareTo on an Enum final in Java?neu2422009-02-06T10:22:12Z2009-02-06T10:57:43Z
<p>An Enum in Java implements the Comparable interface. It would have been nice to override Comparable's compareTo method, but here it's marked as final. The default natural order on Enum's compareTo is the listed order. Does anyone know why a Java Enum has this restriction?</p>
http://stackoverflow.com/questions/457775/does-java-need-tuples/457926#4579261Answer by neu242 for Does Java need tuples?neu2422009-01-19T15:16:40Z2009-01-19T15:33:33Z<p>I might be on the wrong track here, but isn't <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Map.Entry.html" rel="nofollow">Map.Entry</a> a tuple? </p>
<p>Creating a single Entry is fairly ugly, though:</p>
<pre><code>public Map.Entry<String, String> tuple(String key, String value) {
Map<String, String> map = new HashMap<String, String>();
map.put(key, value);
return map.entrySet().iterator().next();
}
</code></pre>
http://stackoverflow.com/questions/426821/what-type-of-random-number-generator-is-used-in-the-gaming-industry/431017#4310173Answer by neu242 for What Type of Random Number Generator is Used in the Gaming Industry?neu2422009-01-10T14:24:19Z2009-01-10T14:32:01Z<p>We've been using the Protego R210-USB TRNG (and the non-usb version before that) as random seed generators in casino applications, with java.security.SecureRandom
on top. We had <a href="http://www.polisen.se/inter/nodeid=12348750&pageversion=1.jsp" rel="nofollow">The Swedish National Laboratory of Forensic Science</a> perform a separate audit of the R210, and it passed without a flaw.</p>
http://stackoverflow.com/questions/301536/what-is-the-java-equivalent-of-php-vardump/301616#301616-2Answer by neu242 for What is the Java equivalent of PHP var_dump?neu2422008-11-19T11:24:43Z2008-11-19T11:24:43Z<p>Collections already have a <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/AbstractCollection.html#toString%28%29" rel="nofollow">fairly decent toString()</a>:</p>
<blockquote>
<p>Returns a string representation of
this collection. The string
representation consists of a list of
the collection's elements in the order
they are returned by its iterator,
enclosed in square brackets ("[]").
Adjacent elements are separated by the
characters ", " (comma and space).
Elements are converted to strings as
by String.valueOf(Object).</p>
</blockquote>
http://stackoverflow.com/questions/261338/what-is-the-best-way-to-insert-html-via-php/261384#2613840Answer by neu242 for What is the best way to insert HTML via PHP ?neu2422008-11-04T09:57:57Z2008-11-04T09:57:57Z<p>If a template engine seems to much of a hassle you can make your own poor man's template engine. This example should definately be improved and is not suitable for all tasks, but for smaller sites might be suitable. Just to get you an idea:</p>
<p>template.inc:</p>
<pre><code><html><head><title>%title%</title></head><body>
%mainbody%
Bla bla bla <a href="%linkurl%">%linkname%</a>.
</body></html>
</code></pre>
<p>index.php:</p>
<pre><code><?php
$title = getTitle();
$mainbody = getMainBody();
$linkurl = getLinkUrl();
$linkname = getLinkName();
$search = array("/%title%/", "/%mainbody%/", "/%linkurl%/", "/%linkname%/");
$replace = array($title, $mainbody, $linkurl, $linkname);
$template = file_get_contents("template.inc");
print preg_replace($search, $replace, $template);
?>
</code></pre>
http://stackoverflow.com/questions/114698/how-do-i-diff-two-spreadsheets6How do I diff two spreadsheets?neu2422008-09-22T12:54:49Z2008-10-13T21:58:06Z
<p>We have a lot of spreadsheets (xls) in our subversion repository. These are usually edited with gnumeric or openoffice.org, and are mostly used to populate databases for unit testing with <a href="http://www.dbunit.org/" rel="nofollow">dbUnit</a>. There are no easy ways of doing diffs on xls files that I know of, and this makes merging extremely tedious and error prone.</p>
<p>I've found <a href="http://thefoolonthehill.net/Spreadsheet_Compare.html" rel="nofollow">Spreadsheet Compare</a>, but it requires Excel 2000 or later. I've also tried to convert the spreadsheets to xml and doing a regular diff, but it really feels as a last resort.</p>
<p>Are there any tools for diffing two spreadsheets (xls or ods)? I am primarily looking for a multi-platform/open source tool.</p>
http://stackoverflow.com/questions/170103/what-rare-programming-tools-do-you-use/170510#1705105Answer by neu242 for What rare programming tools do you use?neu2422008-10-04T15:24:37Z2008-10-04T15:24:37Z<p>I use <a href="http://sourceforge.net/projects/joe-editor/" rel="nofollow">Joe's own editor</a> for quick and simple edits. I haven't met anyone else who uses it, although it seems to have a large user base.</p>
http://stackoverflow.com/questions/137721/tool-to-convert-csv-excel-to-xml/164065#1640650Answer by neu242 for Tool to convert csv/excel to xmlneu2422008-10-02T19:17:33Z2008-10-02T19:24:43Z<p>You can use <a href="http://dbunit.sourceforge.net/" rel="nofollow">DBUnit</a> and Java:</p>
<pre><code>import java.io.ByteArrayOutputStream;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.OutputStream;
import org.dbunit.dataset.DataSetException;
import org.dbunit.dataset.IDataSet;
import org.dbunit.dataset.excel.XlsDataSet;
import org.dbunit.dataset.xml.FlatXmlDataSet;
public class XlsToXml {
public static void main(String[] args) {
try {
FileInputStream stream = new FileInputStream(args[0]);
IDataSet dataset = new XlsDataSet(stream);
OutputStream out = new ByteArrayOutputStream();
FlatXmlDataSet.write(dataset, out);
System.out.println(out);
} catch (Exception e) {
e.printStackTrace();
}
}
}
</code></pre>
<p>This will give you cells as attributes. Use XmlDataSet instead of FlatXmlDataSet if you want your XML formatted differently.</p>
http://stackoverflow.com/questions/68372/what-is-your-single-most-favorite-command-line-trick-using-bash/152576#1525760Answer by neu242 for What is your single most favorite command-line trick using Bash?neu2422008-09-30T10:57:22Z2008-09-30T10:57:22Z<p>I have a really stupid, but extremely helpful one when navigating deep tree structures. Put this in .bashrc (or similar):</p>
<pre><code>alias cd6="cd ../../../../../.."
alias cd5="cd ../../../../.."
alias cd4="cd ../../../.."
alias cd3="cd ../../.."
alias cd2="cd ../.."
</code></pre>
http://stackoverflow.com/questions/104872/php-emulate-form-methodpost-forwarding-user-to-page/104887#1048871Answer by neu242 for PHP :: Emulate <form method="post">, forwarding user to pageneu2422008-09-19T19:40:25Z2008-09-23T06:54:18Z<p>The 3D Secure API doesn't allow you to do the request in the background. You need to forward the user to the 3D secure site. Use javascript to automatically submit your form. Here's what our provider suggests:</p>
<pre><code><html>
<head>
<title>Processing your request...</title>
</head>
<body OnLoad="OnLoadEvent();">
<form name="downloadForm" action="<%=RedirURL%>" method="POST">
<noscript>
<br>
<br>
<div align="center">
<h1>Processing your 3-D Secure Transaction</h1>
<h2>JavaScript is currently disabled or is not supported by your browser.</h2><BR>
<h3>Please click Submit to continue the processing of your 3-D Secure transaction.</h3><BR>
<input type="submit" value="Submit">
</div>
</noscript>
<input type="hidden" name="PaReq" value="<%=PAREQ%>">
<input type="hidden" name="MD" value="<%=TransactionID%>">
<input type="hidden" name="TermUrl" value="<%=TermUrl%>">
</form>
<SCRIPT LANGUAGE="Javascript">
<!--
function OnLoadEvent() {
document.downloadForm.submit();
}
//-->
</SCRIPT>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/108682/what-is-the-reasoning-behind-the-recommended-layout-for-subversion-repositories/108700#1087000Answer by neu242 for What is the reasoning behind the recommended layout for Subversion repositories? neu2422008-09-20T16:45:05Z2008-09-20T16:45:05Z<p>Whenever you deal with real live environments, you would want your developers to be able to understand your repository as easily as possible. A good way to do this is by adhering to the recommended Subversion standard layout.</p>
http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/108683#1086832Answer by neu242 for What non-programming books should programmers read?neu2422008-09-20T16:41:00Z2008-09-20T16:41:00Z<p><a href="http://www.kurzweilai.net/brain/frame.html?startThought=Age%20of%20Spiritual%20Machines" rel="nofollow">The Age of Spiritual Machines</a> by Raymond Kurzweil. I'll just quote from the linked page:</p>
<blockquote>
<p>This extraordinary book by Raymond
Kurzweil illustrates the exponential
evolution of various technologies in
the 21st century, as well as the
speeding up of time as order
increases. Ray Kurzweil explores a
future where the processing power and
capacity of the human brain will be
inexpensive to purchase, conscious
machines demand civil rights, and our
ideas of self and spirituality evolve
as we merge with technology and extend
our lifespans.</p>
</blockquote>
http://stackoverflow.com/questions/106243/how-do-i-synchronize-the-address-book-in-my-app-using-mapi/106253#1062531Answer by neu242 for How do I synchronize the address book in my app using MAPI?neu2422008-09-19T22:52:33Z2008-09-19T22:52:33Z<p>Zarafa just <a href="http://www.zarafa.com/?q=en/content/products" rel="nofollow">released their 100% MAPI compatible groupware suite as GPL</a>. Maybe that's useful for you?</p>
<p>EDIT: The link is slashdotted. <a href="http://linux.slashdot.org/article.pl?sid=08/09/19/2023252" rel="nofollow">More info here.</a></p>
http://stackoverflow.com/questions/1796404/how-do-i-reliably-access-the-httpservletrequest-in-a-jspx-when-its-behind-a-prox/1796565#1796565Comment by neu242 on How do I reliably access the HttpServletRequest in a jspx when it's behind a proxy?neu2422009-11-25T14:43:49Z2009-11-25T14:43:49Z#{facesContext.externalContext.request.serverName} works right now, but who knows if it will suddenly drop back to displaying the node's host name..?http://stackoverflow.com/questions/1796404/how-do-i-reliably-access-the-httpservletrequest-in-a-jspx-when-its-behind-a-prox/1796565#1796565Comment by neu242 on How do I reliably access the HttpServletRequest in a jspx when it's behind a proxy?neu2422009-11-25T14:20:54Z2009-11-25T14:20:54Z@BalusC: I don't think so, it acts the same way when I run it without the proxy. Other values, such as getScheme(), are also empty.http://stackoverflow.com/questions/1796404/how-do-i-reliably-access-the-httpservletrequest-in-a-jspx-when-its-behind-a-prox/1796565#1796565Comment by neu242 on How do I reliably access the HttpServletRequest in a jspx when it's behind a proxy?neu2422009-11-25T12:48:22Z2009-11-25T12:48:22Z${pageContext.request.serverName} is empty in my .jspx. I tried with #{pageContext.request.serverName} as well, also without success.http://stackoverflow.com/questions/457775/does-java-need-tuples/1605972#1605972Comment by neu242 on Does Java need tuples?neu2422009-11-16T19:46:44Z2009-11-16T19:46:44ZI wrote that it was pretty stupid, didn't I? :)http://stackoverflow.com/questions/170103/what-rare-programming-tools-do-you-use/170510#170510Comment by neu242 on What rare programming tools do you use?neu2422009-09-11T10:20:17Z2009-09-11T10:20:17ZLately I have dropped joe in favour of vi. It was really just a practical desicion: Vi is available everywhere, and it's fantastically useful as long as I use it regularily. I previously only used it once in awhile, which was too seldom to remember all the useful keystrokes.http://stackoverflow.com/questions/1339352/how-do-i-set-dfile-encoding-within-ants-build-xml/1339430#1339430Comment by neu242 on How do I set -Dfile.encoding within ant's build.xml?neu2422009-08-27T11:18:23Z2009-08-27T11:18:23Zpresetdef was a nice solution, thanks :)http://stackoverflow.com/questions/202586/best-free-java-class-viewer/381562#381562Comment by neu242 on Best free Java .class viewer?neu2422009-08-20T07:58:30Z2009-08-20T07:58:30ZJD-GUI needs a Mac version, a command line version and JadClipse integration, though... An open source licence would be great as well :)http://stackoverflow.com/questions/1299489/is-it-possible-to-add-breakpoints-to-a-class-which-i-dont-have-the-source-code-f/1299653#1299653Comment by neu242 on Is it possible to add breakpoints to a class which I don't have the source code for?neu2422009-08-20T06:58:53Z2009-08-20T06:58:53ZJadclipse (<a href="http://jadclipse.sourceforge.net" rel="nofollow">jadclipse.sourceforge.net</a>) with Jad (<a href="http://www.varaneckas.com/jad" rel="nofollow">varaneckas.com/jad</a>) solved it for me. Thanks!http://stackoverflow.com/questions/1299489/is-it-possible-to-add-breakpoints-to-a-class-which-i-dont-have-the-source-code-f/1299665#1299665Comment by neu242 on Is it possible to add breakpoints to a class which I don't have the source code for?neu2422009-08-20T06:35:21Z2009-08-20T06:35:21ZDepressingly, my copy of j2ee1.3 hasn't got debug or source code information, and the source code isn't available in the download that you found. (I admire your google-fu for finding it, though :))http://stackoverflow.com/questions/395650/url-mapping-in-php/402589#402589Comment by neu242 on URL mapping in PHP?neu2422009-05-22T11:24:15Z2009-05-22T11:24:15ZThis works in Lighttpd as well.http://stackoverflow.com/questions/862298/ms-word-is-evil-is-there-a-good-alternative/862313#862313Comment by neu242 on MS Word is evil! Is there a good alternative?neu2422009-05-14T09:41:04Z2009-05-14T09:41:04ZSeveral wikis provide good print and export options. We use Confluence in my current project, but there are great open source options out there as well. I have to agree with Jon, Wikis are great for documentation (in addition to automatically generated documentation like javadoc).http://stackoverflow.com/questions/849281/javascript-breaking-firefox/849289#849289Comment by neu242 on Javascript breaking Firefox?neu2422009-05-11T18:18:24Z2009-05-11T18:18:24ZI need to disable the Firebug Console to get one of my pages working as well. I haven't been able to pinpoint why.http://stackoverflow.com/questions/773574/in-php-how-do-i-deal-with-the-difference-in-encoded-filenames-on-hfs-vs-elsewhComment by neu242 on In PHP, how do I deal with the difference in encoded filenames on HFS+ vs. elsewhere?neu2422009-04-21T20:53:11Z2009-04-21T20:53:11ZYeah, that could be a good back-up solution. The PECL extension solution is better for me, though, since I won't have to include that table in the source code.http://stackoverflow.com/questions/773574/in-php-how-do-i-deal-with-the-difference-in-encoded-filenames-on-hfs-vs-elsewh/773729#773729Comment by neu242 on In PHP, how do I deal with the difference in encoded filenames on HFS+ vs. elsewhere?neu2422009-04-21T18:15:49Z2009-04-21T18:15:49ZYes, it looks like MacOSX uses normalization form D (NFD) to encode UTF-8, while most other systems use NFC: <a href="http://www.j3e.de/linux/convmv/man/#hfs__on_os_x___darwin" rel="nofollow">j3e.de/linux/convmv/…</a>http://stackoverflow.com/questions/773574/in-php-how-do-i-deal-with-the-difference-in-encoded-filenames-on-hfs-vs-elsewh/773615#773615Comment by neu242 on In PHP, how do I deal with the difference in encoded filenames on HFS+ vs. elsewhere?neu2422009-04-21T17:21:06Z2009-04-21T17:21:06ZAlso, I tried nfs mounting an ext3 file system on the Mac. The script returned "equal" when working on this file system, so I guess I can't blame the Mac locale.