User Magsol - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T05:52:37Zhttp://stackoverflow.com/feeds/user/13604http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1885132/how-is-httpsession-implemented6How is HttpSession implemented?Magsol2009-12-11T00:43:30Z2009-12-11T00:48:45Z
<p>I just finished taking a final exam on web applications. Capping off what had been a rather easy (albeit lengthy - 12 pages) exam was a question asking us to code an implementation of sessions, similar to that done by javax.http.HttpSession. </p>
<p>I hate to admit, it stumped me. I cranked out a rather BS implemetation using a HashMap and did some craziness with a random cookie string mapping to a serialized HashMap on the server, but I'm pretty sure it's bogus...and now I'm dying to know how it's actually done. </p>
<p>Particularly as someone who has used PHP extensively but for whatever reason never bothered to learn the magic behind the convenience, I'm very interested to learn more about the underlying implementations of sessions. J2EE and PHP for sure, but any other languages/frameworks are great, too. Thanks!</p>
http://stackoverflow.com/questions/1753752/arrayindexoutofboundsexception-not-being-caught-and-ignored/1753902#17539023Answer by Magsol for ArrayIndexOutOfBoundsException not being caught and ignoredMagsol2009-11-18T05:45:31Z2009-11-18T05:45:31Z<p>Maybe this is a no-brainer (after all, I'm running on 3 hours of sleep in the last 36 hours), but along the lines of what digiarnie and Ankur mentioned: have you tried simply <code>catch (Exception e)</code>?</p>
<p>It's definitely not ideal, since obviously it (along with the <code>Throwable t</code> suggestion) will catch every exception under the sun, not limited to <code>ArrayOutOfBoundsException</code>. Just thought idea out there if you haven't tried it yet.</p>
http://stackoverflow.com/questions/1663545/find-buy-sell-prices-in-array-of-stock-values-to-maximize-positive-difference6Find buy/sell prices in array of stock values to maximize positive differenceMagsol2009-11-02T20:38:30Z2009-11-09T18:10:21Z
<p>Got this question in an interview today, and its optimized solution stopped me cold (which blows, because I really wanted to work for this company...)</p>
<p><b>Given a single array of real values, each of which represents the stock value of a company after an arbitrary period of time, find the best buy price and its corresponding best sell price (buy low, sell high).</b></p>
<p>To illustrate with an example, let's take the stock ticker of Company Z:</p>
<pre><code>55.39 109.23 48.29 81.59 105.53 94.45 12.24
</code></pre>
<p>Important to note is the fact that the array is "sorted" temporally - i.e. as time passes, values are appended to the right end of the array. Thus, our buy value will be (has to be) to the left of our sell value.</p>
<p>(in the above example, the ideal solution is to buy at <code>48.29</code> and sell at <code>105.53</code>)</p>
<p>I came up with the naive solution easily enough with O(n<sup>2</sup>) complexity (implemented in java):</p>
<pre><code>// returns a 2-element array: first element is the index in the argument array
// of the best buying price, and the second element is the index of the best
// selling price which, collectively, maximize the trading return
//
// if there is no favorable trading (e.g. prices monotonically fall), null is returned
public int[] maximizeReturn(ArrayList<Double> prices) {
int [] retval = new int[2];
int BUY = 0, SELL = 1;
retval[BUY] = retval[SELL] = -1; // indices of buy and sell prices, respectively
for (int i = 0; i < prices.size(); i++) {
for (int j = i + 1; j < prices.size(); j++) {
double difference = prices.get(j).doubleValue() -
prices.get(i).doubleValue();
if (difference > 0.0) {
if (retval[BUY] < 0 || difference > prices.get(retval[SELL]).doubleValue() -
prices.get(retval[BUY]).doubleValue()) {
retval[BUY] = i;
retval[SELL] = j;
}
}
}
}
return (retval[BUY] > 0 ? retval : null);
}
</code></pre>
<p>Here's where I screwed up: there's a <b>linear time O(n) solution</b>, and I completely bombed in trying to figure it out (yeah, I know, FAIL). Does anyone know how to implement the linear time solution? (any language you're comfortable with) Thanks!</p>
<p><b>Edit</b></p>
<p>I suppose, for anyone interested, I just received word today that I didn't get the job for which I interviewed where they asked me this question. :(</p>
http://stackoverflow.com/questions/1653406/automate-database-table-creation-from-within-cakephp-framework0Automate database table creation from within CakePHP frameworkMagsol2009-10-31T04:26:46Z2009-11-01T03:55:35Z
<p>I'm trying to write a webapp with CakePHP, and like most webapps I would like to create an installer that detects whether the database has been initialized and, if not, executes the installation process.</p>
<p>This process will be entirely automated (it assumes the database itself already exists, and that it is granted full administrative access through the anonymous account with no password...this is for a sandbox environment, so no worries about security), so it needs to be able to detect (regardless of the request!) if the database tables have been created and initialized, and if not, to perform that initialization transparently and then still serve up the user's original request.</p>
<p>I considered writing a sort of Bootstrap controller through which all requests are routed, and a single SQL query is run to determine if the database tables exist, but this seemed cumbersome (and the controller requires a corresponding model, which needn't be the case here). The other possibility is was to override AppModel and place within it the same test, but I was unsure how to do this, as there isn't any documentation along these lines.</p>
<p>Thanks in advance!</p>
<p><b>tl;dr version</b>: What is the CakePHP equivalent (or how can the equivalent be written for CakePHP) of a J2EE servlet's "init()" method?</p>
http://stackoverflow.com/questions/1656113/hibernate-many-to-many-association-with-the-same-entity1Hibernate many-to-many association with the same entityMagsol2009-11-01T01:33:38Z2009-11-01T02:57:34Z
<p>Another Hibernate question... :P</p>
<p>Using Hibernate's Annotations framework, I have a <code>User</code> entity. Each <code>User</code> can have a collection of friends: a Collection of other <code>User</code>s. However, I have not been able to figure out how to create a Many-to-Many association within the <code>User</code> class consisting of a list of <code>User</code>s (using a user-friends intermediate table).</p>
<p>Here's the User class and its annotations:</p>
<pre><code>@Entity
@Table(name="tbl_users")
public class User {
@Id
@GeneratedValue
@Column(name="uid")
private Integer uid;
...
@ManyToMany(
cascade={CascadeType.PERSIST, CascadeType.MERGE},
targetEntity=org.beans.User.class
)
@JoinTable(
name="tbl_friends",
joinColumns=@JoinColumn(name="personId"),
inverseJoinColumns=@JoinColumn(name="friendId")
)
private List<User> friends;
}
</code></pre>
<p>The user-friend mapping table has only two columns, both of which are foreign keys to the <code>uid</code> column of the <code>tbl_users</code> table. The two columns are <code>personId</code> (which should map to the current user), and <code>friendId</code> (which specifies the id of the current user's friend).</p>
<p>The problem is, the "friends" field keeps coming out null, even though I've pre-populated the friends table such that all the users in the system are friends with all the other users. I've even tried switching the relationship to <code>@OneToMany</code>, and it still comes out null (though the Hibernate debug output shows a <code>SELECT * FROM tbl_friends WHERE personId = ? AND friendId = ?</code> query, but nothing else).</p>
<p>Any ideas as to how to populate this list? Thank you!</p>
http://stackoverflow.com/questions/1647869/regex-to-split-on-punctuation-excluding-urls0Regex to split on punctuation excluding URLsMagsol2009-10-30T03:27:31Z2009-10-30T05:08:33Z
<p>I'm trying to split a string on its punctuation, but the string may contain URLs (which conveniently has all the typical punctuation marks).</p>
<p>I have a basic working knowledge of RegEx, but not enough to help me out here. This is what I was using when I discovered the problem:</p>
<pre><code>$text[$i] = preg_split('/[\.\?!\-]+/', $post->text);
</code></pre>
<p>(this also accounts for multiple consecutive punctuation characters - ellipses, !!!!, ????, ?!?, etc)</p>
<p>How would I split a string on the punctuation while maintaining the integrity of URLs? Thanks!</p>
<p><b>Edit:</b></p>
<p>My apologies...an example would be something along the lines of a tweet:</p>
<pre><code>"Blah blah blah? A sentence. Here's a link: http://somelink.com?key=value ."
</code></pre>
<p>The results should look something like this:</p>
<pre><code>[0] => "Blah blah blah?"
[1] => "A sentence."
[2] => "Here's a link: http://somelink.com?key=value ."
</code></pre>
http://stackoverflow.com/questions/1604799/opensocial-authentication-from-external-application2OpenSocial authentication from external applicationMagsol2009-10-22T03:02:41Z2009-10-28T23:04:51Z
<p>I'm working on a web project that isn't all that dissimilar in principal to <a href="http://power.com" rel="nofollow">power.com</a>, where I am attempting to unify several different social networking sites under a single website, allowing users to register once with the system, and then add as many of their individual social networking accounts (Facebook, MySpace, Orkut, etc) as the system is built to handle, allowing them to browse their respective profile information in a single place.</p>
<p><strong>Simply put, I can't seem to find a way to authenticate arbitrary users into their social network accounts.</strong></p>
<p>I've been poring over the OpenSocial specifications, as well as the <a href="http://code.google.com/p/opensocial-php-client/" rel="nofollow">OpenSocial PHP client</a> project, but I seem to be missing something, as everything is appearing to be circularly dependent.</p>
<p>My first problem is that, for testing purposes, I have a MySpace consumer key and consumer secret, but whenever I attempt to perform a 3-legged authentication with MySpace, there's no option for logging in as <i>someone else</i>. Plus, it performs an external redirect, which is somewhat undesirable (as a user of this eventual social networking "portal", I'd rather not have to go through that redirection process every time I add a new account).</p>
<p>How would I programmatically authenticate an arbitrary user and allow them access to their account information (preferably without the external redirection)?</p>
<p>Second, the 2-legged authentication requires a <code>userId</code> (usually an arbitrary integer) that identifies the arbitrary user to retrieve information for. However, when I enter my MySpace OpenSocial ID, along with the given consumer key and consumer secret, I am given a 401 Access Denied error. Furthermore, in order to use this ID in the future, it seems that I would need to authenticate the user first...but that authentication appears to require the ID.</p>
<p>I'm pretty convinced that I'm missing something trivial, but for the life of me can't figure out what it is. Help is greatly appreciated!</p>
http://stackoverflow.com/questions/1627018/most-difficult-programming-explanation/1627293#16272939Answer by Magsol for Most difficult programming explanationMagsol2009-10-26T20:56:07Z2009-10-26T20:56:07Z<p>My most difficult question began innocently enough: my girlfriend asked how text is rendered in Firefox. I answered simply with something along the lines of "rendering engine, Gecko, HTML parser, blah blah blah."</p>
<p>Then it went downhill. "Well how does Gecko know what to display then?"</p>
<p>It spiraled from there quite literally down to the graphics drivers, operating system, compilers, hardware archiectures, and the raw 1s and 0s. I not only realized there were significant gaps in my own knowledge of the layering hierarchy, but also how, in the end, I had left her (and me!) more confused than when I began.</p>
<p>I should've initially answered "turtles all the way down" and stuck with that. :P</p>
http://stackoverflow.com/questions/1604799/opensocial-authentication-from-external-application/1626768#16267682Answer by Magsol for OpenSocial authentication from external applicationMagsol2009-10-26T19:13:14Z2009-10-26T19:13:14Z<p>Technically this isn't my answer, but the developers at OpenSocial have provided me with the following information regarding my question (emphasis mine):</p>
<blockquote>
<p><strong>3-legged OAuth is built around the
redirect back to the site you're
authenticating with, and there's no
way to avoid it.</strong> It's not the most
convenient experience, but allows
users to share their data with your
website while keeping their passwords
private. <strong>Any design which requires
users to enter their MySpace password
into a form on your website is
considered an anti-pattern and should
be avoided.</strong> You could potentially
attempt the redirect in a popup window
in order to make the experience a bit
less jarring for the user (currently
the PHP client doesn't make this that
easy, but if you followed up at
opensocial-client-libraries@googlegroups.com
someone could help you work through
that process).</p>
<p><strong>With regard to not being able to
change the user, what I believe
MySpace is doing in your case is
checking for a MySpace cookie and
pre-populating your account
information.</strong> If you were a user
visiting the site and not logged into
MySpace, you should get a full
username/login box combination. There
should also be a button or link
somewhere to say "I'm not this user"
and log in with other credentials.</p>
<p><strong>As for 2-legged, you would need to
have the application associated with
the consumer key/secret installed on
the profile of any user whose data you
wish to access. 2-legged is mostly
intended for developers who are
currently running a social gadget on a
container and wish to access social
data for their application users out
of band with a gadget render.</strong> In this
case, the application server would
already have the user's OpenSocial ID
(from a signed makeRequest) and the
user would already have the app
installed on their MySpace profile).</p>
<p>Most of this is covered
in <a href="http://wiki.opensocial.org/index.php?title=OAuth%5FUse%5FCasesif" rel="nofollow">http://wiki.opensocial.org/index.php?title=OAuth_Use_Casesif</a>
you want more information.</p>
</blockquote>
<p>Essentially, this makes any use of 2-legged authentication on an external application impossible; 2-legged was explicitly designed not to be used in this sort of situation. Furthermore, it seems that power.com is indeed employing the anti-pattern of having users supply their actual Orkut/MySpace/etc credentials, so that explains that bit.</p>
<p>Clearing out my cookies worked to authenticate me through MySpace. However, I followed up with another question about how Orkut authentication would work, since it doesn't seem to support 3-legged auth. Here was the response I received:</p>
<blockquote>
<p><strong>Orkut is interested in supporting
this</strong>, so you'll be able to allow users
to share their information with your
application "correctly" in the future.</p>
<p>The corresponding two-legged app would
need to forward the current viewer's
OpenSocial ID back to your server,
probably along with an authorization
token you generate yourself so that
you can link a user's session on orkut
with a session on your own server.
<strong>Honestly, it's probably not usable
enough to support a standalone login
system.</strong></p>
</blockquote>
<p>Essentially, no, Orkut really can't be hooked into an external app (at least, not yet) without resorting to the anti-pattern.</p>
<p>If anyone has any further information on this topic, please feel free to share!</p>
http://stackoverflow.com/questions/1580907/hibernate-annotations-generating-query-that-produces-sqlgrammarexception1Hibernate Annotations generating query that produces SQLGrammarExceptionMagsol2009-10-16T23:34:23Z2009-10-16T23:44:33Z
<p>Still duking it out with Hibernate...</p>
<p>I'm using Hibernate-Annotations instead of hbm.xml files for my beans, but I'm currently running into a problem where the SQL that Hibernate is generating references nonexistent database columns.</p>
<p>For instance, here is the code:</p>
<pre><code>Query q = session.createQuery("FROM Status ORDER BY post_date DESC");
</code></pre>
<p>(it is retrieving a list of <code>Status</code> objects, ordered from most recent to least recent, and each <code>Status</code> object contains its own list of <code>Comment</code> objects...yes, think Facebook posts)</p>
<p>And here is the query it generates:</p>
<pre><code>Hibernate: select status0_.pid as pid1_, status0_.content as content1_, status0_.owner_uid as owner5_1_, status0_.parent_pid as parent6_1_, status0_.post_date as post4_1_, status0_.type as type1_ from POSTS status0_ order by post_date DESC limit ?
</code></pre>
<p>The problem is, within that query, it references <code>status0_.owner_uid</code> and <code>status0_.parent_pid</code>, but those fields do not exist in the database. When I change the query manually to use <code>status0_.owner</code> and <code>status0_.parent</code>, respectively, and feed it to MySQL, it works perfectly.</p>
<p>There are four classes involved.</p>
<p>A <code>User</code>, which has no concept of anything else in the system (relevant fields below):</p>
<pre><code>@Entity
@Embeddable
@Table(name="USERS")
public class User {
@Id
@GeneratedValue
@Column(name="uid")
private Integer uid;
...
}
</code></pre>
<p>A <code>Post</code>, an abstract superclass for <code>Comment</code> and <code>Status</code> that are stored in the same table and differentiated via a column <code>type</code> (relevant fields below):</p>
<pre><code>@Inheritance(strategy=InheritanceType.SINGLE_TABLE)
@DiscriminatorColumn(
name="type",
discriminatorType=DiscriminatorType.STRING
)
@MappedSuperclass
@Entity
@Embeddable
@Table(name="POSTS")
public abstract class Post {
@Id
@GeneratedValue
@Column(name="pid")
private Integer pid;
@ManyToOne
@Embedded
private Post parent;
@ManyToOne
@Embedded
private User owner;
@Column(name="post_date")
private Timestamp postDate;
@Column(name="content")
private String content;
@Column(name="type", updatable=false)
private String type;
...
}
</code></pre>
<p>A <code>Status</code> class, subclassing <code>Post</code>; sets <code>parent</code> to null and also contains a list of <code>Comment</code>s (relevant fields below):</p>
<pre><code>@Entity
@Table(name="POSTS")
@DiscriminatorValue("status")
public class Status extends Post {
@OneToMany(mappedBy="parent")
@OrderBy("postDate asc")
private List<Comment> children;
...
}
</code></pre>
<p>A <code>Comment</code> class, subclassing <code>Post</code>; has a non-null <code>parent</code> (entire class posted below):</p>
<pre><code>@Entity
@DiscriminatorValue("comment")
@Table(name="shannonq_posts")
public class Comment extends Post {
// this class is literally empty
}
</code></pre>
<p>In summary: I have no idea why Hibernate is appending the embedded class' IDs into the query, resulting in a non-existent column. Ideally I would have liked to have added the <code>@Column(name="parent")</code> annotation to these fields, but it seems that Hibernate doesn't allow this particular annotation to fields labeled with <code>@ManyToOne</code>.</p>
<p>Any help is appreciated! Thank you!</p>
<p><b>Edit</b>: FYI, if I manually change the columns in my database to match what Hibernate is generating, I get another error: <code>Cannot instantiate abstract class or interface: Post</code>. Obviously my configuration is incorrect. :P</p>
http://stackoverflow.com/questions/1564273/hibernate-unmapped-class-association-exception1Hibernate: unmapped class association exceptionMagsol2009-10-14T04:40:54Z2009-10-14T05:40:17Z
<p>I know this should be a pretty elementary issue to fix, but 1) I'm relatively new to Hibernate, and 2) the fixes I've found don't (seem to) apply here.</p>
<p>Here is the exception I am getting:</p>
<pre>org.hibernate.MappingException: An association from the table POSTS refers to
an unmapped class: com.beans.User at
org.hibernate.cfg.Configuration.secondPassCompileForeignKeys(Configuration.java:1285)</pre>
<p>This occurs when Hibernate attempts to configure itself.</p>
<p>The objects I'm working with are Users, Posts (abstract superclass), Statuses and Comments (concrete subclasses of Post). Each is bean from one of two tables: USERS and POSTS. The User objects are pretty vanilla: lots of bland fields describing the user. In addition to similarly boring fields, a Status and a Comment both have owners (User that posted it). What differentiates a Status from a Comment is that a Status can have a list of Comments attached to it but no parent, while a Comment has no children posts, but has a parent (yes, this is basically Facebook).</p>
<p>From what I've read, the problem seems to be in the many-to-one mappings, but I can't seem to find anything wrong. Here are the three configuration files I'm using.</p>
<p>hibernate.cfg.xml:</p>
<pre>
<hibernate-configuration>
<session-factory>
...
<!-- mapped persistence classes -->
<mapping resource="User.hbm.xml" />
<mapping resource="Post.hbm.xml" />
</session-factory>
</hibernate-configuration></pre>
<p>User.hbm.xml:</p>
<pre>
<hibernate-mapping>
<class name="com.beans.User" entity-name="User" table="USERS" proxy="User">
<id name="uid" type="java.lang.Integer">
<column name="uid" />
<generator class="assigned" />
</id>
...
</class>
</hibernate-mapping></pre>
<p>Post.hbm.xml:</p>
<pre><code><hibernate-mapping>
<class name="com.beans.Post" entity-name="Post" table="POSTS" proxy="Post" abstract="true">
<id name="pid" type="java.lang.Integer">
<column name="pid" />
<generator class="assigned" />
</id>
<discriminator column="type" />
<one-to-one name="parent" class="com.beans.Post"></one-to-one>
<many-to-one name="owner" class="com.beans.User" update="false" fetch="select">
<column name="owner" />
</many-to-one>
<property name="postDate" type="java.sql.Timestamp" update="false">
<column name="post_date" />
</property>
<property name="content" type="java.lang.String" update="false">
<column name="content" />
</property>
<property name="type" type="string" update="false">
<column name="type" />
</property>
<subclass name="com.beans.Status" discriminator-value="status">
<list name="children" inverse="false" table="POSTS" lazy="true">
<key column="pid" />
<index />
<one-to-many class="com.beans.Comment" />
</list>
</subclass>
<subclass name="com.beans.Comment" discriminator-value="comment"></subclass>
</class>
</hibernate-mapping>
</code></pre>
<p>I get the feeling I need to specify somewhere the fact that a Status contains an ArrayList of Comment's, but isn't that done implicitly through the "list" construct in the Post.hbm.xml file?</p>
<p>The xml files exist in my classpath (WEB-INF/classes), and the .java files themselves are visible to the application as well. Insights would be appreciated!</p>
http://stackoverflow.com/questions/1495228/exclusive-url-patterns-in-tomcat-web-xml-descriptor1Exclusive url-patterns in Tomcat web.xml descriptorMagsol2009-09-29T22:12:09Z2009-09-29T22:19:57Z
<p>I am trying to redirect erroneous page requests - 404 errors - to a custom error page. In order for my servlet, instead of the root servlet, to handle these requests, I entered the following url-pattern:</p>
<pre><code><url-pattern>/</url-pattern>
</code></pre>
<p>Unfortunately, this also catches embedded requests for files like *.js, *.css, *.png, *.jpg, and other such files. Is there a way in the deployment descriptor to specify an exclusive pattern? Say, "everything EXCEPT requests with x extension"?</p>
<p>Or is there another way around this that I'm not seeing?</p>
http://stackoverflow.com/questions/731117/error-using-php-curl-with-ssl-certificates0Error using PHP cURL with SSL certificatesMagsol2009-04-08T18:00:50Z2009-05-04T03:08:03Z
<p>I'm trying to write a PHP script using cURL that can authorize a user through a page that uses an SSL certificate, in addition to username and password, and I can't seem to get past the SSL cert stage.</p>
<p>In this case, <code>curl_setopt($handle, CURLOPT_VERIFYPEER, 0)</code> unfortunately isn't an option. The certificate is a required part of authentication, otherwise I get the error mentioned in <a href="http://stackoverflow.com/questions/521418/reading-ssl-page-with-curl-php">this other similar SO post</a>.</p>
<p>I've tried a few command-line runs with cURL:</p>
<p><code>> curl --url https://website</code></p>
<p>This returns the <code>(60) SLL certificate problem</code> error. If I adjust the command to include the <code>--cacert</code> option:</p>
<p><code>> curl --url https://website --cacert /path/to/servercert.cer</code></p>
<p>It works just fine; the auth website is returned.</p>
<p>However, I've tried the following PHP code:</p>
<pre><code>$handle = curl_init();
$options = array(
CURLOPT_RETURNTRANSFER => false,
CURLOPT_HEADER => true,
CURLOPT_FOLLOWLOCATION => false,
CURLOPT_SSL_VERIFYHOST => '0',
CURLOPT_SSL_VERIFYPEER => '1',
CURLOPT_CAINFO => '/path/to/servercert.cer',
CURLOPT_USERAGENT => 'Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)',
CURLOPT_VERBOSE => true,
CURLOPT_URL => 'https://website'
);
curl_setopt_array($handle, $options);
curl_exec($handle);
if (curl_errno($handle)) {
echo 'Error: ' . curl_error($handle);
}
curl_close($handle);
</code></pre>
<p>I would have thought the code was essentially analogous to the shell commands, but instead I'm greeted with the following error message:</p>
<blockquote>
<p>Error: error setting certificate verify locations: CAfile: /path/to/servercert.cer CApath: none </p>
</blockquote>
<p>I've read all the literature I can find (particularly on php.net and curl.haxx) and can't seem to find anything that fixes this problem. Any suggestions?</p>
<p><b>EDIT</b>: I have tried <code>chmod 777 servercert.cer</code> with no success. However, in executing the PHP script with the above code from the command line instead of the browser via <code>php test.php</code>, it works perfectly. Any explanation for why it doesn't work in the browser?</p>
http://stackoverflow.com/questions/731117/error-using-php-curl-with-ssl-certificates/818668#8186680Answer by Magsol for Error using PHP cURL with SSL certificatesMagsol2009-05-04T03:08:03Z2009-05-04T03:08:03Z<p>Oddly enough, this problem vanished entirely when I set both <code>CURLOPT_SSL_VERIFYHOST</code> and <code>CURLOPT_SSL_VERIFYPEER</code> to <code>0</code>. I left the path to the CA cert intact, and the web application found it without a problem. I'm not sure why all this is the case (worked with the previous configuration from the command line, and works from the browser only with this particular configuration), so if anyone knows and wishes to enumerate, that'd be great. But in terms of a fix, this is it.</p>
http://stackoverflow.com/questions/476168/how-do-you-post-the-contents-of-form-to-the-page-in-which-it-is/476237#4762370Answer by Magsol for How do you post the contents of form to the page in which it is?Magsol2009-01-24T16:18:22Z2009-01-24T16:18:22Z<p>If you're using a template or framework system (I've incorporated the Smarty engine into several projects of mine), you can usually tweak the templates so they automatically fill fields with values if they detect that the <code>$_POST[$variable]</code> value corresponding to their field is set.</p>
<p>As for the passwords, as far as I understand it (I could be wrong): it's a convention that minimizes the amount of time that password is being sent over the wire, hence shrinking the window for anyone who may be sniffing to pick up on the text. It's just good practice to leave password fields blank, is all.</p>
http://stackoverflow.com/questions/406053/in-java-why-do-people-prepend-fields-with-this/406088#4060880Answer by Magsol for In Java, why do people prepend fields with `this`?Magsol2009-01-02T05:14:25Z2009-01-02T05:14:25Z<p>Something else to keep in mind is the language itself. You didn't mention Java specifically (though I'm assuming you didn't really have anything else in mind, so this comment is more FYI), but as the previous posters have mentioned already it is an excellent way of making code self-documenting to prevent mix-ups down the road when someone else starts modifying your code base.</p>
<p>If you take PHP, though, the use of <code>$this</code> is typically <em>required</em> when referencing class variables. With differing rules between languages, it is often easiest to stick with the pattern that is common between them, a pattern which just so happens to be a very solid coding style throughout. It's easier for me to simply prepend <code>this</code> to everything than try to remember what language requires it and what language simply "prefers" it.</p>
http://stackoverflow.com/questions/399066/finding-characters-in-a-string-that-occur-only-once3Finding characters in a string that occur only onceMagsol2008-12-29T23:25:44Z2008-12-31T08:53:35Z
<p>I'm writing an algorithm in PHP to solve a given Sudoku puzzle. I've set up a somewhat object-oriented implementation with two classes: a <code>Square</code> class for each individual tile on the 9x9 board, and a <code>Sudoku</code> class, which has a matrix of <code>Square</code>s to represent the board.</p>
<p>The implementation of the algorithm I'm using is a sort of triple-tier approach. The first step, which will solve only the most basic puzzles (but is the most efficient), is to fill in any squares which can only take a single value based on the board's initial setup, and to adjust the constraints accordingly on the rest of the unsolved squares.</p>
<p>Usually, this process of "constant propagation" doesn't solve the board entirely, but it does solve a sizable chunk. The second tier will then kick in. This parses each unit (or 9 squares which must all have unique number assignments, e.g. a row or column) for the "possible" values of each unsolved square. This list of possible values is represented as a string in the <code>Square</code> class:</p>
<pre><code>class Square {
private $name; // 00, 01, 02, ... , 86, 87, 88
private $peers; // All squares in same row, col, and box
private $number; // Assigned value (0 if not assigned)
private $possibles; // String of possible numbers (1-9)
public function __construct($name, $p = 0) {
$this->name = $name;
$this->setNumber($p);
if ($p == 0) {
$this->possibles = "123456789";
}
}
// ... other functions
</code></pre>
<p>Given a whole array of unsolved squares in a unit (as described in the second tier above), the second tier will concatenate all the strings of "possibles" into a single string. It will then search through that single string for any unique character values - values which do not repeat themselves. This will indicate that, within the unit of squares, there is only one square that can take on that particular value.</p>
<p>My question is: for implementing this second tier, how can I parse this string of all the possible values in a unit and easily detect the unique value(s)? I know I could create an array where each index is represented by the numbers 1-9, and I could increment the value at the corresponding index by 1 for each possible-value of that number that I find, then scan the array again for any values of 1, but this seems extremely inefficient, requiring two linear scans of an array for each unit, and in a Sudoku puzzle there are 27 units.</p>
http://stackoverflow.com/questions/102093/wordpress-xmlrpc-expat-reports-error-code-50WordPress XMLRPC: Expat reports error code 5Magsol2008-09-19T14:08:11Z2008-12-03T21:11:24Z
<p>I wrote a small PHP application several months ago that uses the WordPress XMLRPC library to synchronize two separate WordPress blogs. I have a general "RPCRequest" function that packages the request, sends it, and returns the server response, and I have several more specific functions that customize the type of request that is sent.</p>
<p>In this particular case, I am calling "getPostIDs" to retrieve the number of posts on the remote server and their respective postids. Here is the code:</p>
<pre><code>$rpc = new WordRPC('http://mywordpressurl.com/xmlrpc.php', 'username', 'password');
$rpc->getPostIDs();
</code></pre>
<p>I'm receiving the following error message:</p>
<pre><code>expat reports error code 5
description: Invalid document end
line: 1
column: 1
byte index: 0
total bytes: 0
data beginning 0 before byte index:
</code></pre>
<p>Kind of a cliffhanger ending, which is also strange. But since the error message isn't formatted in XML, my intuition is that it's the local XMLRPC library that is generating the error, not the remote server.</p>
<p>Even stranger, if I change the "getPostIDs()" call to "getPostIDs(1)" or any other integer, it works just fine.</p>
<p>Here is the code for the WordRPC class:</p>
<pre><code>public function __construct($url, $user, $pass) {
$this->url = $url;
$this->username = $user;
$this->password = $pass;
$id = $this->RPCRequest("blogger.getUserInfo",
array("null", $this->username, $this->password));
$this->blogID = $id['userid'];
}
public function RPCRequest($method, $params) {
$request = xmlrpc_encode_request($method, $params);
$context = stream_context_create(array('http' => array(
'method' => "POST",
'header' => "Content-Type: text/xml",
'content' => $request
)));
$file = file_get_contents($this->url, false, $context);
return xmlrpc_decode($file);
}
public function getPostIDs($num_posts = 0) {
return $this->RPCRequest("mt.getRecentPostTitles",
array($this->blogID, $this->username,
$this->password, $num_posts));
}
</code></pre>
<p>As I mentioned, it works fine if "getPostIDs" is given a positive integer argument. Furthermore, this used to work perfectly well as is; the default parameter of 0 simply indicates to the RPC server that it should retrieve <em>all</em> posts, not just the most recent <code>$num_posts</code> posts. Only recently has this error started showing up.</p>
<p>I've tried googling the error without much luck. My question, then, is <strong>what exactly does "expat reports error code 5" mean, and who is generating the error?</strong> Any details/suggestions/insights beyond that are welcome, too!</p>
http://stackoverflow.com/questions/321864/java-dynamic-binding-and-method-overriding17Java dynamic binding and method overridingMagsol2008-11-26T19:26:21Z2008-11-27T08:15:03Z
<p>Yesterday I had a two-hour technical phone interview (which I passed, woohoo!), but I completely muffed up the following question regarding dynamic binding in Java. And it's doubly puzzling because I use to teach this concept to undergraduates when I was a TA a few years ago, so the prospect that I gave them misinformation is a little disturbing...</p>
<p>Here's the problem I was given:</p>
<pre><code>/* What is the output of the following program? */
public class Test {
public boolean equals( Test other ) {
System.out.println( "Inside of Test.equals" );
return false;
}
public static void main( String [] args ) {
Object t1 = new Test();
Object t2 = new Test();
Test t3 = new Test();
Object o1 = new Object();
int count = 0;
System.out.println( count++ );// prints 0
t1.equals( t2 ) ;
System.out.println( count++ );// prints 1
t1.equals( t3 );
System.out.println( count++ );// prints 2
t3.equals( o1 );
System.out.println( count++ );// prints 3
t3.equals(t3);
System.out.println( count++ );// prints 4
t3.equals(t2);
}
}
</code></pre>
<p>I asserted that the output should have been two separate print statements from within the overridden <code>equals()</code> method: at <code>t1.equals(t3)</code> and <code>t3.equals(t3)</code>. The latter case is obvious enough, and with the former case, even though <code>t1</code> has a reference of type Object, it is instantiated as type Test, so dynamic binding should call the overridden form of the method.</p>
<p>Apparently not. My interviewer encouraged me to run the program myself, and lo and behold, there was only a single output from the overridden method: at the line <code>t3.equals(t3)</code>.</p>
<p>My question then is, why? As I mentioned already, even though <code>t1</code> is a reference of type Object (so static binding would invoke Object's <code>equals()</code> method), dynamic binding <em>should</em> take care of invoking the most specific version of the method based on the instantiated type of the reference. What am I missing?</p>
http://stackoverflow.com/questions/276400/multi-file-upload-with-php-javascript-and-no-flash/276428#2764280Answer by Magsol for Multi file upload with PHP/Javascript and no flashMagsol2008-11-09T20:23:17Z2008-11-09T20:23:17Z<p>In using JavaScript to add new upload fields, you could also have JavaScript update some "hidden" input field with the number of upload fields in the form. That way, once you click Submit, that hidden value should be submitted and it will be trivial to parse out the $_FILES array for all the uploaded files.</p>
http://stackoverflow.com/questions/275251/whats-the-program-youve-really-wanted-to-write-but-never-found-the-time/275408#27540814Answer by Magsol for What's the program you've really wanted to write but never found the time?Magsol2008-11-09T00:19:09Z2008-11-09T00:19:09Z<p>I'd love to design and implement a real-time strategy video game. It's a good way of drawing quite a few computer science concepts into one neat, vast project. Plus, it's really easy to see the entire project come together, and you can celebrate by having a LAN party. :)</p>
http://stackoverflow.com/questions/258548/what-is-the-most-important-thing-you-werent-taught-in-school/259970#2599700Answer by Magsol for What is the most important thing you weren't taught in school?Magsol2008-11-03T21:10:26Z2008-11-03T21:10:26Z<p>This may seem picky and trite, but a very overlooked skill that would have come in SO much handy was a solid teaching on how to properly construct Makefiles, including and certainly not limited to setting the include and link paths. I cannot begin to describe just how painful an iterated HTTP server development was in C without solid Makefile knowledge. Same for C++, same for Java Ant files, and so on.</p>
http://stackoverflow.com/questions/185203/php-5-x-syncronized-file-access-no-database/185237#1852374Answer by Magsol for PHP 5.x syncronized file access (no database)Magsol2008-10-08T22:51:57Z2008-10-08T22:51:57Z<p>PHP's flock() function is the route to go. However, you have to make sure that <em>all</em> accesses to the file are protected by a call to flock() first. PHP won't check if the file is locked unless you explicitly make the call to do so.</p>
<p>The concept is virtually identical as with mutexes (protecting shared resources, et al), but it's important enough to bear special emphasis.</p>
http://stackoverflow.com/questions/102093/wordpress-xmlrpc-expat-reports-error-code-5/123182#1231821Answer by Magsol for WordPress XMLRPC: Expat reports error code 5Magsol2008-09-23T19:20:34Z2008-09-23T19:20:34Z<p>@<a href="#104047" rel="nofollow">Novak</a>: Thanks for your suggestion. The problem turned out to be a memory issue; by retrieving all the posts from the remote location, the response exceeded the amount of memory PHP was allowed to utilize, hence the unclosed token error.</p>
<p>The problem with the cryptic and incomplete error message was due to an outdated version of the XML-RPC library being used. Once I'd upgraded the version of WordPress, it provided me with the complete error output, including the memory error.</p>
http://stackoverflow.com/questions/115428/how-do-i-convert-between-time-formats/115514#1155140Answer by Magsol for How do I convert between time formats?Magsol2008-09-22T15:27:57Z2008-09-22T15:27:57Z<p>From MySQL timestamp to epoch seconds:</p>
<pre><code>strtotime($mysql_timestamp);
</code></pre>
<p>From epoch seconds to MySQL timestamp:</p>
<pre><code>$mysql_timestamp = date('Y-m-d H:i:s', time());
</code></pre>
http://stackoverflow.com/questions/102785/what-single-url-should-every-web-developer-have-bookmarked/102904#1029045Answer by Magsol for What single URL should every web developer have bookmarked?Magsol2008-09-19T15:31:14Z2008-09-19T15:31:14Z<p>I've actually found the <a href="http://developer.mozilla.org/en/Main_Page" rel="nofollow">Mozilla Dev Page</a> to be an incredibly useful resource for anything web-related: standards, CSS, HTML, JavaScript, XML, etc.</p>
http://stackoverflow.com/questions/98903/what-can-a-coder-at-heart-do-to-survive-earning-a-computer-science-degree/99008#990082Answer by Magsol for What can a coder-at-heart do to survive earning a Computer Science degree?Magsol2008-09-19T02:35:38Z2008-09-19T02:35:38Z<p>To echo what a lot of comments have already said, it does indeed sound more like Computer Engineering than Computer Science. I just got my CS degree from Georgia Tech this past August (it was a great 5.5 year run :P), and the most CE-related stuff I did was summed up in the bulleted list of your question.</p>
<p>As for pearls of wisdom, I've found the CS degree by itself is incredibly vague. There are so many different areas you can go into, and because of this, the curriculum itself varies extensively from university to university. The pattern at the higher-tier CS schools is pretty clear, though: they focus on theory to prepare you for an MS program in a specialized field of CS research.</p>
<p>If nothing else, though, what I got most of it was <strong>how to learn</strong>. Yes, CS by itself is broad and only broadening as the months - to say nothing of years - go by. It is an incredibly fast-paced field and those who are on top today may very well not even be in the tabloids tomorrow. Yes, linear algebra is great. Yes, algorithm analysis is great. Yes, programming in x86 assembly is great. All of these are classics that form a solid foundation for just about anything. But the technology that utilizes these classics is changing more rapidly than a politician's platform, so the ability to learn new materials and concepts is absolutely crucial. And I think a CS degree does that to the point of absurdity.</p>
<p>It would have indeed been nice to know all that earlier, back when I still believed Computer Science = Software Engineering.</p>
http://stackoverflow.com/questions/98650/what-is-the-strict-aliasing-rule/98675#986750Answer by Magsol for What is the strict aliasing rule?Magsol2008-09-19T01:34:38Z2008-09-19T01:34:38Z<p>In particular: avoiding the void pointer.</p>
http://stackoverflow.com/questions/98593/restrict-apache-to-only-allow-access-using-ssl-for-some-directories/98635#986350Answer by Magsol for Restrict Apache to only allow access using SSL for some directoriesMagsol2008-09-19T01:27:18Z2008-09-19T01:27:18Z<p>Alternatively, you could use the server-side language to do the processing for you, rather than using Apache's configuration options (if, perhaps, you don't have access to the server's configuration).</p>
<p>For example, with PHP:</p>
<pre><code>if (!isset($_SERVER['HTTPS'])) {
// put your redirect here
header('Location: http://myserver.com/public');
}
</code></pre>
<p>(though just be aware - if you're using ISAPI on Microsoft IIS, if the request is <em>not</em> being routed through HTTPS, then the value of the $_SERVER['HTTPS'] variable will be "off")</p>
http://stackoverflow.com/questions/95055/java-best-place-to-begin-learning-basic-networking/95088#950881Answer by Magsol for Java: Best Place to Begin Learning Basic NetworkingMagsol2008-09-18T18:07:31Z2008-09-18T18:07:31Z<p>Sun's Java API and <a href="http://java.sun.com/docs/books/tutorial/networking/index.html" rel="nofollow">official tutorials</a> are probably the best place to get your feet wet.</p>
http://stackoverflow.com/questions/1743532/why-is-everyone-choosing-json-over-xml-for-jquery/1743573#1743573Comment by Magsol on Why is Everyone Choosing JSON Over XML for jQuery?Magsol2009-11-16T17:50:59Z2009-11-16T17:50:59Z+1, especially since JSON parsing is unbelievably more efficient compared to XML parsing, even piecewise. Once the datasets you care about exceed a certain (and frighteningly small) threshold, the performance difference is noticeable.http://stackoverflow.com/questions/1671016/whats-the-most-impressive-thing-youve-seen-done-with-javascript/1671025#1671025Comment by Magsol on Whats the most impressive thing you've seen done with JavaScript?Magsol2009-11-04T01:57:12Z2009-11-04T01:57:12ZjQuery and Dojo alike, two phenomenal JavaScript libraries.http://stackoverflow.com/questions/1663545/find-buy-sell-prices-in-array-of-stock-values-to-maximize-positive-difference/1663998#1663998Comment by Magsol on Find buy/sell prices in array of stock values to maximize positive differenceMagsol2009-11-02T22:09:53Z2009-11-02T22:09:53Z"The fact you solved it in O(N^2) vs O(N) should be irrelevant." - I really hope you are right on this one :)http://stackoverflow.com/questions/1663545/find-buy-sell-prices-in-array-of-stock-values-to-maximize-positive-difference/1663605#1663605Comment by Magsol on Find buy/sell prices in array of stock values to maximize positive differenceMagsol2009-11-02T21:09:59Z2009-11-02T21:09:59ZI was inching close to a solution like this one as I bumbled along; I had five variables set up exactly as you do. Unfortunately I started doing some crazy value swapping and pretty much went off the deep end from there. =/http://stackoverflow.com/questions/1663545/find-buy-sell-prices-in-array-of-stock-values-to-maximize-positive-difference/1663625#1663625Comment by Magsol on Find buy/sell prices in array of stock values to maximize positive differenceMagsol2009-11-02T21:07:42Z2009-11-02T21:07:42ZI really like this; the idea of incrementing the differential hadn't occurred to me. Very elegant!http://stackoverflow.com/questions/1656113/hibernate-many-to-many-association-with-the-same-entity/1656261#1656261Comment by Magsol on Hibernate many-to-many association with the same entityMagsol2009-11-01T03:53:40Z2009-11-01T03:53:40ZI was hoping you'd come to my rescue for the third time :) It worked perfectly, and your explanation clears up my understanding of E-R significantly. Thank you very much, once again! :)http://stackoverflow.com/questions/1653406/automate-database-table-creation-from-within-cakephp-framework/1653440#1653440Comment by Magsol on Automate database table creation from within CakePHP frameworkMagsol2009-11-01T01:20:55Z2009-11-01T01:20:55ZWould've helped if I had explained it more clearly to begin with :P Thanks for sticking it out, I appreciate it!http://stackoverflow.com/questions/1653406/automate-database-table-creation-from-within-cakephp-framework/1653440#1653440Comment by Magsol on Automate database table creation from within CakePHP frameworkMagsol2009-11-01T00:13:59Z2009-11-01T00:13:59ZThat looks extremely useful; that's exactly what I need. Thank you!http://stackoverflow.com/questions/1653406/automate-database-table-creation-from-within-cakephp-framework/1655591#1655591Comment by Magsol on Automate database table creation from within CakePHP frameworkMagsol2009-10-31T20:52:24Z2009-10-31T20:52:24ZThat's actually precisely what I was looking into - either providing a link in the error page to a script that will automatically populate the tables, or simply doing it within the error class if that is the error that is generated. Thanks!http://stackoverflow.com/questions/1653406/automate-database-table-creation-from-within-cakephp-framework/1653440#1653440Comment by Magsol on Automate database table creation from within CakePHP frameworkMagsol2009-10-31T20:34:03Z2009-10-31T20:34:03ZThe point here is to develop a database initialization process that can run transparently from the perspective of the user, i.e. the user extracts the gzip/zip/tar/etc archive in their PHP-enabled webserver docroot, and provided the database with the right name already exists, and the anonymous MySQL account has full administrative access, the application will simply work.http://stackoverflow.com/questions/1653406/automate-database-table-creation-from-within-cakephp-framework/1653440#1653440Comment by Magsol on Automate database table creation from within CakePHP frameworkMagsol2009-10-31T18:26:24Z2009-10-31T18:26:24ZYeah, I took a look at that article, but I'd still have to make the Bake process into a batch process that runs only once, and I'm still uncertain how to do that within the CakePHP framework (as there doesn't seem to be any documentation along those lines).http://stackoverflow.com/questions/1653406/automate-database-table-creation-from-within-cakephp-framework/1653440#1653440Comment by Magsol on Automate database table creation from within CakePHP frameworkMagsol2009-10-31T14:40:31Z2009-10-31T14:40:31ZLook, my whole point here is that I'm not familiar with the CakePHP framework. I understand the principles and paradigms of web programming; I'm simply unsure how to implement them within the CakePHP environment. Any advice in that regard is what I'm looking for.http://stackoverflow.com/questions/1653406/automate-database-table-creation-from-within-cakephp-framework/1653440#1653440Comment by Magsol on Automate database table creation from within CakePHP frameworkMagsol2009-10-31T04:55:50Z2009-10-31T04:55:50ZI would very much prefer that; I suppose I'm looking for the CakePHP equivalent of a J2EE servlet's "init()" method, if such a thing exists or can be written. Though a separate script would work as well, but there would still need to be checks in place in the main application for whether or not the database tables exist and, if not, to advise the user to run the script.http://stackoverflow.com/questions/1647869/regex-to-split-on-punctuation-excluding-urls/1647898#1647898Comment by Magsol on Regex to split on punctuation excluding URLsMagsol2009-10-30T16:51:17Z2009-10-30T16:51:17Z@warren: Another very good point. I suppose titles could be accounted for, but it wouldn't be pretty (or easy), and it also highlights other ambiguous uses of punctuation...such as ellipses within a single sentence. Oy.http://stackoverflow.com/questions/1647869/regex-to-split-on-punctuation-excluding-urls/1648101#1648101Comment by Magsol on Regex to split on punctuation excluding URLsMagsol2009-10-30T14:57:09Z2009-10-30T14:57:09ZI agree there are still fringe cases that would be difficult to capture 100% of the time. But you raise a very valid point regarding punctuation just after the URL; that wasn't something I'd considered, nor am I sure how to deal with that.