User eed3si9n - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T09:16:04Zhttp://stackoverflow.com/feeds/user/3827http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1779596/opinion-mining-what-database-type/1779621#17796210Answer by eed3si9n for Opinion Mining - What Database Type?eed3si9n2009-11-22T19:00:14Z2009-11-22T19:00:14Z<p>If you need something large scale and responsive, you would probably need to go for Google's <a href="http://en.wikipedia.org/wiki/BigTable" rel="nofollow">BigTable</a> or something of that nature. At the prototype level, I am sure you can use traditional relational databases, but at certain point you'd hit the performance wall. See <a href="http://www.julianbrowne.com/article/viewer/brewers-cap-theorem" rel="nofollow">Brewer's CAP Theorem</a>.</p>
http://stackoverflow.com/questions/1733994/onscreen-keyboard/1734028#17340281Answer by eed3si9n for onscreen keyboardeed3si9n2009-11-14T11:51:16Z2009-11-14T11:51:16Z<p>It would depend on the platform of your hardware and the target application. For example, if you are writing a Java program that sends key strokes to a Windows application, you could probably use Windows messages via JNI. For native applications on devices like mobile phones, you might have to go down to lower level API of the device.</p>
http://stackoverflow.com/questions/528769/best-web-app-for-creating-screen-mockups/1732400#17324000Answer by eed3si9n for Best web app for creating screen mockups?eed3si9n2009-11-13T22:52:02Z2009-11-13T22:52:02Z<p><a href="http://iplotz.com/" rel="nofollow">iPlotz</a> creates nice mockups in hand written style with rough edges. It's a freemium web app.</p>
<p><img src="http://iplotz.com/images/whatis%5Fscreenshot03.gif" alt="alt text"></p>
http://stackoverflow.com/questions/460198/best-free-3-way-merge-tool-for-windows/460212#4602126Answer by eed3si9n for Best free 3-Way Merge Tool for Windows.eed3si9n2009-01-20T05:37:01Z2009-11-13T22:35:14Z<p>I've never used this but <a href="http://www.sourcegear.com/diffmerge/index.html" rel="nofollow">SourceGear DiffMerge</a> is free.</p>
<p>It's not free, but I use <a href="http://www.scootersoftware.com/" rel="nofollow">Beyond Compare</a>.</p>
http://stackoverflow.com/questions/790614/which-configuration-of-ide-editors-plugin-is-best-suited-for-developing-laszlo-ap/790627#7906272Answer by eed3si9n for Which configuration of IDE/editors/plugin is best suited for developing Laszlo applications?eed3si9n2009-04-26T10:48:01Z2009-11-02T15:42:46Z<p>Eclipse with the <a href="http://www.spket.com/" rel="nofollow">Spket IDE</a> plugin</p>
http://stackoverflow.com/questions/1641104/instantiate-object-with-reflection-using-constructor-arguments/1642206#16422062Answer by eed3si9n for instantiate object with reflection using constructor argumentseed3si9n2009-10-29T08:05:08Z2009-10-29T08:05:08Z<p>See answers to <a href="http://stackoverflow.com/questions/1469958/scala-how-do-i-dynamically-instantiate-an-object-and-invoke-a-method-using-refle">Scala: How do I dynamically instantiate an object and invoke a method using reflection?</a> as well, especially regarding type erasure. </p>
http://stackoverflow.com/questions/1626726/open-an-accordian-panel-with-a-function/1626745#16267451Answer by eed3si9n for Open an accordian panel with a functioneed3si9n2009-10-26T19:09:40Z2009-10-26T19:09:40Z<p>Could it be the typo of accordion vs accordian?</p>
http://stackoverflow.com/questions/1623321/matlab-whats-y-imaxas-2/1623327#16233273Answer by eed3si9n for MATLAB: What's [Y,I]=max(AS,[],2);?eed3si9n2009-10-26T06:14:24Z2009-10-26T06:23:48Z<p>According to <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/index.html?/access/helpdesk/help/techdoc/ref/max.html" rel="nofollow">the reference manual</a>,</p>
<blockquote>
<p><code>C = max(A,[],dim)</code> returns the largest elements along the dimension of <code>A</code> specified by scalar <code>dim</code>. For example, <code>max(A,[],1)</code> produces the maximum values along the first dimension (the rows) of <code>A</code>.</p>
<p><code>[C,I] = max(...)</code> finds the indices of the maximum values of <code>A</code>, and returns them in output vector <code>I</code>. If there are several identical maximum values, the index of the first one found is returned.</p>
</blockquote>
<p>I think <code>[]</code> is there just to distinguish itself from <code>max(A,B)</code>.</p>
http://stackoverflow.com/questions/1623197/receiving-data-in-tcp/1623208#16232087Answer by eed3si9n for Receiving data in TCPeed3si9n2009-10-26T05:22:33Z2009-10-26T05:40:51Z<p>See <a href="http://en.wikipedia.org/wiki/Transmission%5FControl%5FProtocol" rel="nofollow">Transmission Control Protocol</a>:</p>
<blockquote>
<p>TCP provides reliable, ordered delivery of a stream of bytes from a program on one computer to another program on another computer. </p>
</blockquote>
<p>A "stream" means that there is no message boundary from the receiver's point of view. You could get one 1000 byte message or one thousand 1 byte messages depending on what's underneath and how often you call read/select.</p>
<p><strong>Edit</strong>: Let me clarify from the application's point of view. No, TCP will not guarantee that the single read would give you all of the 1000 bytes (or 1MB or 1GB) packet the sender may have sent. Thus, a protocol above the TCP usually contains fixed length header with the total content length in it. For example you could always send 1 byte that indicates the total length of the content in bytes, which would support up to 255 bytes.</p>
http://stackoverflow.com/questions/1611366/cross-browser-strechable-round-corner-with-semantic-code-and-minimal-use-of-image/1611380#16113803Answer by eed3si9n for cross browser strechable round corner with semantic code and minimal use of images. is it possible ?eed3si9n2009-10-23T04:32:01Z2009-10-23T04:54:15Z<p>See <a href="http://www.cssjuice.com/25-rounded-corners-techniques-with-css/" rel="nofollow">25 Rounded Corners Techniques with CSS</a>.</p>
<blockquote>
<p><a href="http://www.vertexwerks.com/tests/sidebox/" rel="nofollow">ThrashBox</a> - create rounded-corner boxes with visual flare and the absolute minimal amount of semantically correct markup.</p>
</blockquote>
<p><img src="http://cssjuice.com/wp-content/uploads/2007/07/the-thrashbox.png" alt="alt text" /></p>
<p>The XHTML:</p>
<pre><code><div class="sidebox">
<div class="boxhead"><h2>Test Headline</h2></div>
<div class="boxbody">
<p>This is a short sample paragraph.</p>
<p>And another one.</p>
</div>
</div>
</code></pre>
<blockquote>
<p><a href="http://roundedbox.andreas-kalt.de/" rel="nofollow">Resizable box with freely stylable corners and surface</a> - resizable rounded corners box.</p>
</blockquote>
<p><img src="http://cssjuice.com/wp-content/uploads/2007/07/stylable-box%5F1185588162107.png" alt="alt text" /></p>
<p>Both authors mention <a href="http://www.alistapart.com/articles/slidingdoors/" rel="nofollow">Sliding Doors of CSS</a> about strechability.</p>
http://stackoverflow.com/questions/1609163/what-is-the-difference-between-staticcast-and-c-style-casting/1609192#16091925Answer by eed3si9n for What is the difference between static_cast<> and C style casting?eed3si9n2009-10-22T18:41:36Z2009-10-22T18:41:36Z<p>See <a href="http://www.cppreference.com/wiki/keywords/casting%5Fcomparison" rel="nofollow">A comparison of the C++ casting operators</a>.</p>
<blockquote>
<p>However, using the same syntax for a variety of different casting operations can make the intent of the programmer unclear.</p>
<p>Furthermore, it can be difficult to find a specific type of cast in a large codebase.</p>
<p>the generality of the C-style cast can be overkill for situations where all that is needed is a simple conversion. The ability to select between several different casting operators of differing degrees of power can prevent programmers from inadvertently casting to an incorrect type.</p>
</blockquote>
http://stackoverflow.com/questions/1606798/php-as-a-desktop-programming-language/1609152#16091520Answer by eed3si9n for PHP as a Desktop Programming Languageeed3si9n2009-10-22T18:35:18Z2009-10-22T18:35:18Z<p>PHP based web apps like Wordpress and Mediawiki I think uses php to setup and configure itself. Just give IIS proper read/write rights and you can make a simple web app that does massive renaming, etc.. PHP doesn't have to always be used for writing out html.</p>
http://stackoverflow.com/questions/1598765/file-download-time-in-php-mysql/1598793#15987930Answer by eed3si9n for File download time in PHP/MySQLeed3si9n2009-10-21T04:58:18Z2009-10-21T05:35:40Z<p>Ok, now I understand the question based on OP's comment. The question is how to figure out what time did a user downloaded a file. If that's the case, the download link needs to be a php script, and it would write in the time into db, then returns the content of the file into the stream with proper content header.</p>
<p>See <a href="http://php.net/manual/en/function.readfile.php" rel="nofollow">readfile</a>.</p>
<pre><code><?php
$file = 'monkey.gif';
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
?>
</code></pre>
<p>All you have to do is pass in the file name as some parameter and write the current time into DB.</p>
http://stackoverflow.com/questions/1598211/delphi-conversion-unicode-issues/1598858#15988581Answer by eed3si9n for Delphi Conversion Unicode Issueseed3si9n2009-10-21T05:19:18Z2009-10-21T05:19:18Z<blockquote>
<p>Approx 10 3rd party component sets, all with source code.</p>
</blockquote>
<p>One thing I'd add is if the component doesn't support Delphi 2009/2010, don't try to upgrade it by hacking the code. </p>
<p>Following is what I posted on <a href="http://stackoverflow.com/questions/1399395/how-do-the-new-string-types-work-in-delphi-2009-2010/1399419#1399419">How do the new string types work in Delphi 2009/2010?</a>:</p>
<blockquote>
<p>See <a href="http://stackoverflow.com/questions/1399395/how-do-the-new-string-types-work-in-delphi-2009-2010/1399419#1399419">Delphi and Unicode</a>, a white paper written by Marco Cantù and I guess
<a href="http://www.joelonsoftware.com/articles/Unicode.html" rel="nofollow">The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!)</a>, written by Joel.</p>
<p>One pitfall is that the default Win32 API call has been mapped to use the W (wide string) version instead of the A (ANSI) version, for example <code>ShellExecuteA</code> If your code is doing tricky pointer code assuming internal layout of <code>AnsiString</code>, it will break. A fallback is to substitute <code>PChar</code> with <code>PAnsiChar</code>, <code>Char</code> with <code>AnsiChar</code>, <code>string</code> with <code>AnsiString</code>, and append A at the end of Win32 API call for that portion of code. After the code actually compiles and runs normally, you could refactor your code to use <code>string</code> (<code>UnicodeString</code>).</p>
</blockquote>
http://stackoverflow.com/questions/1541253/how-to-validate-an-xml-document-using-a-relax-ng-schema-and-jaxp/1598746#15987461Answer by eed3si9n for How to validate an XML document using a RELAX NG schema and JAXP?eed3si9n2009-10-21T04:42:44Z2009-10-21T04:42:44Z<p>See Stefan Bodewig's Weblog written on March 7, 2008 titled <a href="http://stefan.samaflost.de/blog/en/oss/XMLUnit/relax%5Fng%5Fvalidation%5Fin%5Fxmlunit.html" rel="nofollow">RELAX NG Validation in XMLUnit</a>:</p>
<blockquote>
<p>Since last night XMLUnit's trunk contains a new Validator class that is based on javax.xml.validation which is part of JAXP 1.3 (i.e. Java5+).</p>
</blockquote>
<p>...</p>
<blockquote>
<p>To the best of my knowledge there is no JAXP implementation that supported RELAX NG out of the box. Sun's own JAXP 1.4 (Java6+) certainly doesn't. Some searching around brought me to <a href="http://weblogs.java.net/blog/2006/02/10/validate-xml-using-relax-ng-and-jaxp-13" rel="nofollow">Kohsuke Kawaguchi's Blog</a> who should know, given his work on JAXP, Sun's Multi Schema Validator, isorelax and other stuff.</p>
<p>Using his <a href="https://isorelax-jaxp-bridge.dev.java.net/" rel="nofollow">isorelax-bridge</a> and <a href="http://www.thaiopensource.com/relaxng/jing.html" rel="nofollow">Jing</a> didn't get me anywhere on Java6. I went back to Kohsuke Kawaguchi's article and read the comments: the bridge doesn't work with Java6 since they changed the SchemaFactory lookup algorithm. OK, tried Java5 instead - progress, I now get a NullPointerException somewhere inside of Jing, so at least it is loading the factory. Next I replaced Jing with MSV (which is <a href="https://msv.dev.java.net/" rel="nofollow">here</a> now, no matter how many links out there lead you to the WebServices stack page at Sun, so much for "good URLs never change") and really, my simplistic tests pass.</p>
<p>So you may have to jump through some hoops to get RELAX NG support into your JAXP setup - in my case Java5, MSV and Kawaguchi's bridge worked, but the comments indicate it should be doable with Java6 as well - but once you manage to configure everything correctly, XMLUnit will now be there to let you assert your document's validity in Unit tests. It seems that it doesn't work for compact syntax, though.</p>
</blockquote>
<p>To read the comments on Kohsuke Kawaguchi's blog, you have to use <a href="http://web.archive.org/web/20080420131311/http%3A//weblogs.java.net/blog/kohsuke/archive/2006/02/validate%5Fxml%5Fus.html" rel="nofollow">archive.org</a> because somehow they are all gone now:</p>
<blockquote>
<p>Java 5 interprets the Service Provider
file as a list of key/value pairs,
which is a violation to the Java 5 & 6
JAR file specification but happens to
match your example.</p>
<p>Java 6 parses the Service Provider
file as specified, ie. as a list of
fully qualified class names, but thus
fails to instantiate your adapter's
SchemaFactory as the Service Provider
file's contents are invalid.</p>
<p>To be compatible with both Java 5 and
Java 6 without having to change the
JAXP-JARV-adapter JAR file, one can
simply add another JAR file containing
a correct
javax.xml.validation.SchemaFactory
Service Provider file.</p>
</blockquote>
http://stackoverflow.com/questions/1591249/programming-to-interfaces-and-synchronized-collections/1591286#15912860Answer by eed3si9n for Programming to interfaces and synchronized collectionseed3si9n2009-10-19T21:32:03Z2009-10-19T21:42:51Z<p>Java's <code>Vector</code> and <code>Hashtable</code> predate current concurrency package that was added in JDK 5. At the time <code>Vector</code> was written, people thought it was a good idea to make it synchronized, then they probably hit the performance wall in the enterprise use. Concurrency certainly is one of those situations where code-to-interface modularity may not always work out.</p>
http://stackoverflow.com/questions/1591217/what-is-the-meaning-of-leading-underscores-in-a-c-constructor/1591231#15912310Answer by eed3si9n for What is the meaning of leading underscores in a C++ constructor?eed3si9n2009-10-19T21:21:42Z2009-10-19T21:21:42Z<p>The purpose of those underscores is to distinguish the parameter variable <code>float _x</code> and the member variable <code>float x</code>. Syntactically, there's no special meaning added due to the underscores. I personally prefer to prefix all parameters with <code>a_</code> and prefix all member variables with <code>m_</code> when I do have to code C++.</p>
<p>So when I do get into a situation where I have to mix and match local, member, and parameter variables, I know which ones I am dealing with.</p>
<pre><code>int y = a_x * 2;
m_x = y + 3;
</code></pre>
http://stackoverflow.com/questions/846207/how-to-build-stand-alone-soap-web-services-using-delphi2How to build stand-alone SOAP web services using Delphi?eed3si9n2009-05-10T22:03:04Z2009-10-19T11:42:15Z
<p>How can I build a stand-alone SOAP-based Web Services using Delphi? Must work with Delphi 2009, but it'd be nice if it worked with older ones too.</p>
<p>The built-in WebBroker Web Services creates CGI or ISAPI. It would be nice to create a stand-alone executable that I can control from bottom to top, especially during development. </p>
http://stackoverflow.com/questions/1534702/pattern-matching-zero-argument-functions-in-scala-mystified-by-warning/1536265#15362652Answer by eed3si9n for Pattern matching zero-argument functions in scala: mystified by warningeed3si9n2009-10-08T07:55:54Z2009-10-08T07:55:54Z<p>This is complement to <a href="http://stackoverflow.com/questions/1534702/pattern-matching-zero-argument-functions-in-scala-mystified-by-warning/1534754#1534754">@Mitch Blevins</a>'s answer since his answer will get you through in this case.</p>
<p>See <a href="http://stackoverflow.com/questions/1094173/how-do-i-get-around-type-erasure-on-scala-or-why-cant-i-get-the-type-parameter">How do I get around type erasure on Scala? Or, why can’t I get the type parameter of my collections?</a> You probably have to pass around a tuple of <code>(Function0[T],Manifest[T])</code> to the actor. As you can see below, Scala is smart enough to deduce the type of <code>T</code> even if you just write <code>matchFunction(foo _)</code>.</p>
<pre><code>scala> def foo = {Console.println("I am Foo")}
foo: Unit
scala> import scala.reflect.Manifest
import scala.reflect.Manifest
scala> def matchFunction[T](f: Function0[T])(implicit m : Manifest[T]) {
| (m,f) match {
| case (om: Manifest[_],of: Function0[_]) =>
| if(om <:< m) {
| of.asInstanceOf[Function0[T]]()
| }
| }
| }
matchFunction: [T](() => T)(implicit scala.reflect.Manifest[T])Unit
scala> matchFunction(foo _)
I am Foo
</code></pre>
http://stackoverflow.com/questions/1525429/cloning-a-tstringgrid-component/1525458#15254580Answer by eed3si9n for Cloning a TStringGrid Componenteed3si9n2009-10-06T13:05:37Z2009-10-07T12:47:28Z<blockquote>
<p>Dear all, I am trying to learn Delphi</p>
</blockquote>
<p>The Delphi style is to find/create/buy a component that does the job and use them in the design-time. You could try making a custom component based on a grid or use <code>TFrame</code>. See links from <a href="http://delphi.about.com/od/vclusing/a/customvcldev.htm" rel="nofollow">Custom Component Development</a> and help files that comes with Delphi.</p>
<p>If you really need to clone the control dynamically, <a href="http://www.swissdelphicenter.ch/torry/showcode.php?id=785" rel="nofollow">here</a>'s an example I found that uses <code>stream.ReadComponent</code>.</p>
http://stackoverflow.com/questions/1528468/embed-xna-game-in-a-webpage/1528482#15284824Answer by eed3si9n for Embed xna game in a webpageeed3si9n2009-10-06T22:43:02Z2009-10-06T22:50:45Z<p><a href="http://www.codeplex.com/silversprite" rel="nofollow">SilverSprite</a> seems to do what you want. I have never used it but see <a href="http://arstechnica.com/microsoft/news/2009/03/xna-2d-games-come-to-the-browser-via-silverlight.ars" rel="nofollow">XNA 2D games come to the browser via Silverlight</a>.</p>
<blockquote>
<p>Essentially it allows XNA game
developers to run their games in
Silverlight 2, though there is a
limitation: the games that can be
converted may only have
SpriteBatch-based graphics, meaning no
3D games.</p>
</blockquote>
http://stackoverflow.com/questions/1525446/dangling-local-blocks-in-scala/1525494#15254944Answer by eed3si9n for "dangling" local blocks in scala eed3si9n2009-10-06T13:12:07Z2009-10-06T18:57:39Z<p>Why not write </p>
<pre><code>new Iterator[Int] {
...
}
</code></pre>
<p><strong>Edit</strong>:
This is the style used by Programming in Scala (see <a href="http://www.artima.com/samples/chapter20.pdf" rel="nofollow">sample chapter pdf</a>) </p>
<pre><code>new RationalTrait {
val numerArg = 1 * x
val denomArg = 2 * x
}
</code></pre>
<p>and <a href="http://java.sun.com/docs/codeconv/html/CodeConventions.doc5.html#381" rel="nofollow">Java Coding Conventions</a>.</p>
<blockquote>
<p>Open brace "{" appears at the end of the same line as the declaration statement</p>
</blockquote>
http://stackoverflow.com/questions/1521011/scala-case-classes-questions/1523737#15237372Answer by eed3si9n for scala case classes questionseed3si9n2009-10-06T05:25:26Z2009-10-06T05:25:26Z<p>It's detailed in page 301 of <a href="http://www.artima.com/shop/programming%5Fin%5Fscala" rel="nofollow">Programming in Scala</a>, About pattern matching on <code>List</code>s.</p>
<blockquote>
<p>The "cons" pattern <code>x :: xs</code> is a special case of an infix
operation pattern. You know already that, when seen as an expression,
an infix operation is equivalent to a method call. For patterns, the rules
are different: When seen as a pattern, an infix operation such as <code>p op q</code>
is equivalent to <code>op(p, q)</code>.
That is, the infix operator <code>op</code> is treated as a constructor pattern.
In particular, a cons pattern such as <code>x :: xs</code> is treated as <code>::(x, xs)</code>.
This hints that there should be a class named <code>::</code> that correspond to the pattern
constructor. Indeed there is such a class.
It is named <code>scala.::</code> and is exactly the class that builds non-empty lists.</p>
</blockquote>
http://stackoverflow.com/questions/1521277/benefits-to-switching-from-classic-asmx-to-wcf/1521298#15212981Answer by eed3si9n for Benefits to switching from classic asmx to wcf. eed3si9n2009-10-05T17:17:42Z2009-10-05T17:17:42Z<p>WCF allows you detach service from the physical layout and protocols. For example, you can write one service and deploy it as either REST or SOAP, or whatever that may happen in the future. ASMX is great, but it's pretty much hardcoded to SOAP. Also the idea is that you can plug-in existing features like throttling just by changing preferences, which I haven't seen much benefit of.</p>
http://stackoverflow.com/questions/1511399/creating-two-different-types-of-users-scala-lift/1512592#15125923Answer by eed3si9n for Creating two different types of Users (Scala, Lift)eed3si9n2009-10-03T02:08:22Z2009-10-03T02:08:22Z<blockquote>
<p>If that is indeed the best way (which I suspect it is), what the best way to map this in the DB? Would it be best to keep a "type" column and then have it set to one or the other?</p>
</blockquote>
<p>I don't think there is clear "the best way" to design database structure given a scenario. The text book answer is <a href="http://en.wikipedia.org/wiki/Database%5Fnormalization" rel="nofollow">database normalization</a> and <a href="http://en.wikipedia.org/wiki/Don%27t%5Frepeat%5Fyourself" rel="nofollow">DRY</a>.</p>
<h2>Three tables approach</h2>
<p>One way for instance could be to create User table containing both types of users, storing only the common attributes, and create Student table and Provider table with foreign key to User table and specialized attributes if any. This probably is not what a traditional relational database person would recommend, but it maps closer to the OO inheritance model.</p>
<h2>One table approach</h2>
<p>Another approach like you said would be to just create a "UserType" field and store both types of users into User table. It's simple, but you then miss the opportunity to take advantage of the referential integrity of the relational database. For example, if you were to create child table specific only to Student, such as Homework, you can't simply make foreign key to StudentID if both students and providers lived in User table.</p>
<h2>Two tables approach</h2>
<p>If you are using Object-Relational Mapping framework, likely the easiest way to go is to map exactly what you want in the object world strait into the database, which would be having Student table and Provider table, and express the commonality of two as trait in Scala side.</p>
<p>I found Lift <a href="http://wiki.liftweb.net/index.php/Cheat%5FSheet" rel="nofollow">cheat sheet</a>:</p>
<blockquote>
<h2>Defining Models</h2>
<p>lift O-R mapped models are defined based on a class with fields.</p>
</blockquote>
<pre><code>class WikiEntry extends KeyedMapper[Long, WikiEntry] {
def getSingleton = WikiEntry // what's the "meta" object
def primaryKeyField = id
// the primary key
object id extends MappedLongIndex(this)
// the name of the entry
object name extends MappedString(this, 32) {
override def dbIndexed_? = true // indexed in the DB
}
object owner extends MappedLongForeignKey(this, User)
// the text of the entry
object entry extends MappedTextarea(this, 8192) {
override def textareaRows = 10
override def textareaCols = 50
}
}
</code></pre>
<blockquote>
<p>Discussion on having <a href="http://groups.google.com/group/liftweb/browse%5Ffrm/thread/3ea88015027e2ff4" rel="nofollow">shared base traits for Models</a>.</p>
</blockquote>
<p>In the thread David Pollak writes:</p>
<blockquote>
<p>You're looking for some Scala magic: </p>
</blockquote>
<pre><code>trait Posting[MyType <: Mapper[MyType]] { // Defines some common fields for posted user content
self: MyType =>
def primaryKeyField = id
object id extends MappedLongIndex(this)
object creator extends MappedLongForeignKey(this, User)
object createdAt extends MappedLong(this) {
override def defaultValue = System.currentTimeMillis
}
}
class FooPosting extends KeyedMapper[FooPosting] with Posting[MyType]
</code></pre>
http://stackoverflow.com/questions/1441319/whats-the-best-approach-to-recognize-patterns-in-data-and-whats-the-best-way-t/1485538#14855381Answer by eed3si9n for What's the best approach to recognize patterns in data, and what's the best way to learn more on the topic?eed3si9n2009-09-28T05:23:31Z2009-09-28T17:26:35Z<blockquote>
<p>What’s the best approach to recognize patterns in data, and what’s the best way to learn more on the topic?</p>
</blockquote>
<p>The best approach is to study pattern recognition and machine learning. I would start with Duda's <a href="http://rads.stackoverflow.com/amzn/click/0471056693" rel="nofollow">Pattern Classification</a> and use Bishop's <a href="http://rads.stackoverflow.com/amzn/click/0387310738" rel="nofollow">Pattern Recognition and Machine Learning</a> as reference. It would take a good while for the material to sink in, but getting basic sense of pattern recognition and major approaches of classification problem should give you the direction. I can sit here and make some assumptions about your data, but honestly you probably have the best idea about the data set since you've been dealing with it more than anyone. Some of the useful technique for instance could be <a href="http://en.wikipedia.org/wiki/Support%5Fvector%5Fmachine" rel="nofollow">support vector machine</a> and <a href="http://en.wikipedia.org/wiki/Boosting" rel="nofollow">boosting</a>.</p>
<p><strong>Edit</strong>: An interesting application of boosting is real-time face detection. See Viola/Jones's <a href="http://people.cs.ubc.ca/~lowe/425/violaJones01.pdf" rel="nofollow">Rapid Object Detection using a Boosted Cascade of Simple
Features</a> (pdf). Also, looking at the sample images, I'd say you should try improving the edge detection a bit. Maybe smoothing the image with Gaussian and running more aggressive edge detection can increase detection of smaller cracks.</p>
http://stackoverflow.com/questions/1426984/scala-remote-actor-security/1483060#14830600Answer by eed3si9n for Scala Remote Actor Securityeed3si9n2009-09-27T07:51:58Z2009-09-27T07:51:58Z<p>My guess is that the recommended is not to use remote actor in a situation where security is required, at least for now. It's a remote invocation of Scala code accessible only from Scala code, similar to <a href="http://java.sun.com/javase/technologies/core/basic/rmi/index.jsp" rel="nofollow">Java RMI</a>, so intended usage likely is within the local network. I think it'll be cool to have security layer on top of existing remote actor. For now make a <a href="http://demo.liftweb.net/ws" rel="nofollow">web service using Lift</a>?</p>
http://stackoverflow.com/questions/1443189/how-to-set-up-tomcat-ldap-authentication-without-member-of-check/1482991#14829910Answer by eed3si9n for how to set up tomcat ldap authentication without member of checkeed3si9n2009-09-27T07:15:04Z2009-09-27T07:15:04Z<p>According to <a href="http://tomcat.apache.org/tomcat-5.5-doc/realm-howto.html#JNDIRealm" rel="nofollow">Realm Configuration HOW-TO</a>, </p>
<blockquote>
<p>The directory realm supports two approaches to the representation of roles in the directory:</p>
<ul>
<li><strong>Roles as explicit directory entries</strong><br>Roles may be represented by explicit directory entries. A role entry is usually an LDAP group entry with one attribute containing the name of the role and another whose values are the distinguished names or usernames of the users in that role. The following attributes configure a directory search to find the names of roles associated with the authenticated user:</li>
</ul>
<blockquote>
<ul>
<li><code>roleBase</code> - the base entry for the role search. If not specified, the search base is the top-level directory context.</li>
<li><code>roleSubtree</code> - the search scope. Set to <code>true</code> if you wish to search the entire subtree rooted at the <code>roleBase</code> entry. The default value of <code>false</code> requests a single-level search including the top level only.</li>
<li><code>roleSearch</code> - the LDAP search filter for selecting role entries. It optionally includes pattern replacements "<code>{0}</code>" for the distinguished name and/or "<code>{1}</code>" for the username of the authenticated user.</li>
<li><code>roleName</code> - the attribute in a role entry containing the name of that role</li>
</ul>
</blockquote>
<ul>
<li><strong>Roles as an attribute of the user entry</strong><br>
Role names may also be held as the values of an attribute in the user's directory entry. Use <code>userRoleName</code> to specify the name of this attribute.</li>
</ul>
<p>A combination of both approaches to role representation may be used.</p>
</blockquote>
<p>So one way is to use an attribute if you have something appropriate. There are tools out there that can do "mass update" or "bulk modify" of AD attributes. If you don't want to contaminate the AD is to wrap it around with ADAM. You can create proxy objects in ADAM that points to AD users and either add attributes in ADAM. See <a href="http://technet.microsoft.com/en-us/library/cc758386.aspx" rel="nofollow">Understanding ADAM bind redirection</a> for more info.</p>
http://stackoverflow.com/questions/1469958/scala-how-do-i-dynamically-instantiate-an-object-and-invoke-a-method-using-refle3Scala: How do I dynamically instantiate an object and invoke a method using reflection?eed3si9n2009-09-24T05:51:41Z2009-09-24T12:54:09Z
<p>In Scala, what's the best way to dynamically instantiate an object and invoke a method using reflection?</p>
<p>I would like to do Scala-equivalent of the following Java code:</p>
<pre><code>Class class = Class.forName("Foo");
Object foo = class.newInstance();
Method method = class.getMethod("hello", null);
method.invoke(foo, null);
</code></pre>
<p>In the above code, both the class name and the method name are passed in dynamically. The above Java mechanism could probably be used for <code>Foo</code> and <code>hello()</code>, but the Scala types don't match one-to-one with that of Java. For example, a class may be declared implicitly for a singleton object. Also Scala method allows all sorts of symbols to be its name. Both are resolved by name mangling. See <a href="http://www.codecommit.com/blog/java/interop-between-java-and-scala" rel="nofollow">Interop Between Java and Scala</a>.</p>
<p>Another issue seems to be the matching of parameters by resolving overloads and autoboxing, described in <a href="http://www.familie-kneissl.org/Members/martin/blog/reflection-from-scala-heaven-and-hell" rel="nofollow">Reflection from Scala - Heaven and Hell</a>. </p>
http://stackoverflow.com/questions/1469785/how-to-retreive-data-stored-in-a-webserver-db-using-windows-application-in-local/1469803#14698030Answer by eed3si9n for How to retreive data stored in a webserver DB using windows application in local machineeed3si9n2009-09-24T04:38:40Z2009-09-24T04:38:40Z<p>What problem are you having or concerned? Are you concerned about the concurrent use of the database and date entry, or are you concerned about possible duplication of work?</p>
<p>Also, why do you need a Windows application when you already have a web app? What platform is the Windows application written in (.NET, Win32)?</p>
http://stackoverflow.com/questions/1734015/what-to-do-when-co-workers-code-badlyComment by eed3si9n on What to do when co-workers code badly?eed3si9n2009-11-14T12:13:29Z2009-11-14T12:13:29ZDupe of <a href="http://stackoverflow.com/questions/206286/how-do-you-tell-someone-theyre-writing-bad-code" rel="nofollow" title="how do you tell someone theyre writing bad code">stackoverflow.com/questions/206286/…</a>http://stackoverflow.com/questions/1733994/onscreen-keyboardComment by eed3si9n on onscreen keyboardeed3si9n2009-11-14T11:54:59Z2009-11-14T11:54:59ZThis is a dupe of <a href="http://stackoverflow.com/questions/156912/sending-a-keyboard-event-from-java-to-any-application-on-screen-keyboard" rel="nofollow" title="sending a keyboard event from java to any application on screen keyboard">stackoverflow.com/questions/156912/…</a>http://stackoverflow.com/questions/460198/best-free-3-way-merge-tool-for-windows/460365#460365Comment by eed3si9n on Best free 3-Way Merge Tool for Windows.eed3si9n2009-11-13T22:33:41Z2009-11-13T22:33:41ZI didn't downvote, but WinMerge is not a 3-way merge tool.http://stackoverflow.com/questions/460198/best-free-3-way-merge-tool-for-windows/460348#460348Comment by eed3si9n on Best free 3-Way Merge Tool for Windows.eed3si9n2009-11-13T22:31:41Z2009-11-13T22:31:41ZTortoiseMerge is a 2-way merge tool, so you can't compare base revision in trunk, revision y in branch, and revision y-1 in branch. Having revision y-1 allows you to prevent unwanted changes to merge into trunk. See <a href="http://stackoverflow.com/questions/326937/" rel="nofollow">stackoverflow.com/questions/326937</a>http://stackoverflow.com/questions/1623197/receiving-data-in-tcp/1623210#1623210Comment by eed3si9n on Receiving data in TCPeed3si9n2009-10-26T05:35:29Z2009-10-26T05:35:29Z@Matthew Scharley, from the TCP client's point of view, TCP does guarantee that it delivers the datagram in order. The underlying IP doesn't so it might re-order them, but that's internal details of TCP. http://stackoverflow.com/questions/1611366/cross-browser-strechable-round-corner-with-semantic-code-and-minimal-use-of-image/1611380#1611380Comment by eed3si9n on cross browser strechable round corner with semantic code and minimal use of images. is it possible ?eed3si9n2009-10-23T04:59:02Z2009-10-23T04:59:02ZIf you don't specify the width for the top div, the box seems to stretch up until certain point. See the credit box on the ThrashBox page.http://stackoverflow.com/questions/1598765/file-download-time-in-php-mysql/1598793#1598793Comment by eed3si9n on File download time in PHP/MySQLeed3si9n2009-10-21T05:27:22Z2009-10-21T05:27:22Z@Lavanya ks, just to clarify, you are asking for the time at which a user downloaded a given file, not how long it took for the user to download the file, correct?http://stackoverflow.com/questions/1591249/programming-to-interfaces-and-synchronized-collections/1591286#1591286Comment by eed3si9n on Programming to interfaces and synchronized collectionseed3si9n2009-10-19T21:54:10Z2009-10-19T21:54:10Z@araqnid, the way of "Java approach" is painted with blood and scars of performance, concurrency, etc from over the years. Especially since it took off in the server-side use, the scale has tipped towards dependency-injecting, code-to-interface, architecture astronaut way, compared to simple "new Vector();"http://stackoverflow.com/questions/1525429/cloning-a-tstringgrid-component/1525458#1525458Comment by eed3si9n on Cloning a TStringGrid Componenteed3si9n2009-10-07T12:45:51Z2009-10-07T12:45:51Z@Biolyzer, according to Wikipedia "a subclass is a class that inherits some properties from its superclass. [...] Subclasses and superclasses are often referred to as derived and base classes, respectively, terms coined by C++ creator Bjarne Stroustrup."http://stackoverflow.com/questions/498512/how-to-be-an-eco-friendly-programmer/499270#499270Comment by eed3si9n on How to be an eco-friendly programmer?eed3si9n2009-10-06T20:11:56Z2009-10-06T20:11:56ZAs of 2009, United Nations Intergovernmental Panel on Climate Change (IPCC) thinks "warming of the climate system is unequivocal" and "most of the observed increase in global average temperatures since the mid-20th century is very likely due to the observed increase in anthropogenic greenhouse gas concentrations." I don't think there's much room for mythology or theology here.http://stackoverflow.com/questions/1521277/benefits-to-switching-from-classic-asmx-to-wcf/1521298#1521298Comment by eed3si9n on Benefits to switching from classic asmx to wcf. eed3si9n2009-10-05T17:24:38Z2009-10-05T17:24:38ZI actually do use a service that acts both as REST and SOAP. There's varying degree of support for WS-* stack on different platforms, so I find REST (hardcoding to HTTPS for security, reliability, etc) to be more pragmatic cross-platform solution.http://stackoverflow.com/questions/1511399/creating-two-different-types-of-users-scala-lift/1512592#1512592Comment by eed3si9n on Creating two different types of Users (Scala, Lift)eed3si9n2009-10-05T12:38:07Z2009-10-05T12:38:07Z@Dave, see the last part of my post on shared base traits for Models, esp the quoted code. 1. trait Posting[MyType <: Mapper[MyType]]. 2. object creator extends MappedLongForeignKey(this, User).http://stackoverflow.com/questions/1469958/scala-how-do-i-dynamically-instantiate-an-object-and-invoke-a-method-using-refle/1471507#1471507Comment by eed3si9n on Scala: How do I dynamically instantiate an object and invoke a method using reflection?eed3si9n2009-09-26T23:12:08Z2009-09-26T23:12:08ZThis is kind of what I had in mind from the linked blog article. Another piece of the puzzle is the name mangling service.http://stackoverflow.com/questions/367482/what-is-a-good-undergrad-gpa-when-applying-for-programming-jobs/367498#367498Comment by eed3si9n on What is a good undergrad GPA when applying for programming jobs?eed3si9n2009-09-25T05:27:58Z2009-09-25T05:27:58Z@BryanH, dude.. read what I wrote: "I tend to focus more on actual details of project participation and what languages the person is comfortable with, and how much they know about it. Edit: I have turned down high GPA students to invite other candidates with more interest in programming (made game in VB) or better handle of concepts..."http://stackoverflow.com/questions/1469958/scala-how-do-i-dynamically-instantiate-an-object-and-invoke-a-method-using-refle/1470190#1470190Comment by eed3si9n on Scala: How do I dynamically instantiate an object and invoke a method using reflection?eed3si9n2009-09-24T12:26:59Z2009-09-24T12:26:59ZStructural Type won't help me if I don't know the method name at the compile time.