User epochwolf - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T08:54:16Z http://stackoverflow.com/feeds/user/16204 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/800548/ankhsvn-error-client-too-old-to-work-with-working-copy 4 Ankhsvn Error: Client too old to work with working copy epochwolf 2009-04-29T01:44:28Z 2009-12-01T03:34:59Z <p>I am using Ankhsvn 2.0.6347.433 with Visual Studio 2005 and it's reporting that Ankhsvn's subversion client is too old for the working copy. The given error links to <a href="http://subversion.tigris.org/faq.html#working-copy-format-change" rel="nofollow">http://subversion.tigris.org/faq.html#working-copy-format-change</a> which talks about using a 1.4.4 subversion client on a subversion 1.5 formated checkout.</p> <p>Ankhsvn's <a href="http://ankhsvn.open.collab.net/servlets/ProjectProcess?pageID=3794" rel="nofollow">home page</a> says that Ankhsvn 2.0 and above uses subversion 1.5 internally. The link doesn't mention anything about 1.5 clients having issues.</p> <p>My own limited troubleshooting hasn't turned up anything I can directly point to but I do have TortoiseSVN 1.6.1 installed which uses Subversion 1.6.1 internally. I have a habit of using TortoiseSVN to commit stuff in my project folder which would bypass anything Ankhsvn is doing. Would this be causing a similar problem that trying to use 1.4.4 and 1.5 clients would cause or is something else happening?</p> <p><strong>Edit: Okay, I shouldn't mix 1.6 and 1.5 clients.</strong></p> <p>How do I fix this? I would like to use AnkhSVN if possible.</p> http://stackoverflow.com/questions/1757689/load-ruby-on-rails-models-without-loading-the-entire-framework 0 Load Ruby on Rails models without loading the entire framework epochwolf 2009-11-18T17:26:59Z 2009-11-18T20:50:15Z <p>I'm looking to create a custom daemon that will run various database tasks such as delaying mailings and user notifications (each notice is a separate row in the notifications table). I don't want to use <code>script/runner</code> or <code>rake</code> to do these tasks because it is possible that some of the tasks only require the create of one or two database rows or thousands of rows depending on the task. I don't want the overhead of launching a ruby process or loading the entire rails framework for each operation. I plan to keep this daemon in memory full time.</p> <p>To create this daemon I would like to use my models from my ruby on rails application. I have a number of rails plugins such as <code>acts_as_tree</code> and <code>AASM</code> that I will need loaded if I where to use the models. Some of the plugins I need to load are custom hacks on ActiveRecord::Base that I've created. (I am willing to accept removing or recoding some of the plugins if they need components from other parts of rails.)</p> <p>My questions are </p> <ul> <li>Is this a good idea?</li> <li>And - Is this possible to do in a way that doesn't have me manually including each file in my models and plugins?</li> </ul> <p>If not a good idea</p> <ul> <li>What is a good alternative?</li> </ul> <p>(I am not apposed to doing writing my own SQL queries but I would have to add database constraints and a separate user for the daemon to prevent any stupid accidents. Given my lack of familiarity with configuring a database, I would like to use active record as a crutch.)</p> http://stackoverflow.com/questions/1010778/rails-error-using-actionview-method-sanitize-in-lib 0 Rails: Error using ActionView method sanitize in Lib epochwolf 2009-06-18T04:27:10Z 2009-11-18T17:50:45Z <p>I am attempting to use the Sanitize method from ActionView.</p> <p>The line <code>r_str = Helper.instance.sanitize(r_str, :tags =&gt; @@allowed_tags, :attributes =&gt; @@allowed_attribs)</code> is giving me the error</p> <pre><code>undefined method `white_list_sanitizer' for Parsers::HTML::Helper:Class </code></pre> <p>This is my code in <code>lib/parsers.rb</code></p> <pre><code>module Parsers module HTML @@allowed_tags = %w(--snip--) @@allowed_attribs = %w(--snip--) class Helper include Singleton include ActionView::Helpers::SanitizeHelper end #Use built-in santizer and the Hpricot plugin def self.clean(str) rgx = /&lt;code&gt;(.*?)&lt;\/code&gt;/ #All html within a code tag should be escaped. r_str = str.gsub(rgx) { |match| "&lt;code&gt;" + CGI.escapeHTML(match[5..-7]) + "&lt;/code&gt;" } # TODO: test this. r_str = Helper.instance.sanitize(r_str, :tags =&gt; @@allowed_tags, :attributes =&gt; @@allowed_attribs) Hpricot(r_str) end end --snip-- end </code></pre> <p>What am I doing wrong? </p> <p>(Please do not comment on the dangers of allowing user submitted HTML, I know the risks) </p> http://stackoverflow.com/questions/1010778/rails-error-using-actionview-method-sanitize-in-lib/1757837#1757837 0 Answer by epochwolf for Rails: Error using ActionView method sanitize in Lib epochwolf 2009-11-18T17:50:45Z 2009-11-18T17:50:45Z <p>The proper class in rails is <code>HTML::Sanitizer</code></p> http://stackoverflow.com/questions/1735617/datagridview-inserts-primary-key 1 DataGridView inserts primary key epochwolf 2009-11-14T21:13:50Z 2009-11-18T17:36:07Z <p>I'm trying to get a basic DataGridView to insert new rows into a table. The table has an auto incrementing primary key (Identity 1,1) I'm having two problems with this. </p> <p>The first problem is the DataSet which the DataGridView is populated from complains with the the primary key in the row is null. (I hide the primary key field from the DataGridView) </p> <p>This problem disappears when I disable constrain checking or modify the DataSet to ignore the primary key being null.</p> <p>The next problem is SQL Server complains about the DataSet trying to insert a value into the primary key field. It doesn't like it when the DataSet specifies the value for the primary key.</p> <p>I'm very new to using C# and I've never used a DataGrid before.</p> http://stackoverflow.com/questions/1735617/datagridview-inserts-primary-key/1757741#1757741 1 Answer by epochwolf for DataGridView inserts primary key epochwolf 2009-11-18T17:36:07Z 2009-11-18T17:36:07Z <p>The problem was the queries in the dataset were not being updated when I changed the properties of elements in the dataset. All I had to do was reconfigure the dataset. </p> http://stackoverflow.com/questions/670909/multiple-wmd-editors-so-forked-version-on-one-page/1739797#1739797 0 Answer by epochwolf for Multiple WMD editors (SO forked version) on one page? epochwolf 2009-11-16T02:49:10Z 2009-11-16T02:49:10Z <p><a href="http://github.com/leotiger/wmd" rel="nofollow">This</a> project may be a good start. </p> http://stackoverflow.com/questions/1537949/storing-openid-information-in-database 0 Storing OpenID information in database. epochwolf 2009-10-08T13:54:23Z 2009-11-03T20:03:35Z <p>This is a database question. I have an openid library already installed and working.</p> <p>I want to use OpenID on a website I'm working on. There are three types of users.</p> <ol> <li>Named accounts using email/password to authenticate</li> <li>Named accounts using OpenID to authenticate</li> <li>Anonymous account using OpenID to authenticate</li> </ol> <p>All of these users are stored in the same table to simply the comments table. Named accounts are linked to a blog that the account can manage. Anonymous users can comment on articles on the blog but they can't do anything else. If an anonymous user signs up for an account I want to automatically transfer that user's old comments to the named account. I'm currently doing this by having the users fill out a form with a unique name and a valid email. </p> <p>Currently both sets of accounts are stored in the same table using the following schema. (Yes it's a rails migration)</p> <pre><code>create_table :users do |t| t.string :name #unique because it maps to a subdomain t.string :openid_url #unique t.string :email #unique t.string :password_hash t.string :password_salt t.boolean :guest #Anonymous user flag t.timestamps end </code></pre> <p>(<code>openid_url</code> is unique to prevent multiple accounts from being attached to the same openid. <code>email</code> is unique because users login with email/password)</p> <p>I'm using this setup I've run into a problem with Google's OpenID implementation. Every user that uses Google for OpenID has the same url: <a href="https://www.google.com/accounts/o8/ud" rel="nofollow">https://www.google.com/accounts/o8/ud</a>.</p> <p>How do I support using google as an openid provider since it's urls are not unique for each user? (Please remember the constraints that exist) </p> <p>Note: Google Accounts can use any valid email address on the internet so I can't just store person@google.com in the openid_url field because the email could be person@example.com or worse person@yahoo.com! Yahoo also uses this single url method so I have to support them too.</p> http://stackoverflow.com/questions/151595/jruby-on-rails-vs-ruby-on-rails-whats-difference 14 JRuby on Rails vs. Ruby on Rails, what's difference? epochwolf 2008-09-30T03:00:17Z 2009-10-19T18:40:07Z <p>I'm looking to try out JRuby and JRuby on Rails. I'm having trouble finding information on what's difference between JRuby on Rails and Ruby on Rails. </p> <p>What's the differences I need to look out for?</p> http://stackoverflow.com/questions/709456/mediawiki-documentation-with-external-user-access-control/709587#709587 2 Answer by epochwolf for MediaWiki documentation with external user access control epochwolf 2009-04-02T12:53:47Z 2009-10-03T20:54:22Z <p>MediaWiki is not really designed for disabling viewing of pages by registered users. I don't think you can do this without some pain.</p> <p>From the <a href="http://www.mediawiki.org/wiki/Manual%3APreventing%5Faccess#Restrict%5Fviewing%5Fof%5Fall%5Fpages" rel="nofollow">docs</a> (reformated)</p> <p>To have a page act normally for some users but be invisible to others, as is possible for instance in most forum software, is a very different matter. MediaWiki is designed for two basic access modes:</p> <ul> <li>Everyone can view every single page on the wiki (with the possible exception of a few special pages). This is the mode used by Wikipedia and its sister projects.</li> <li>Anonymous users can only view the Main Page and login page, and cannot edit any page. This is basically the same as the above, in terms of technical implementation (just an extra check for every page view), which is why it exists. This is the mode of operation used by certain private wikis such as those used by various Wikimedia committees.</li> </ul> <p>My school uses wikis the way you want to. A friend of mine set them up. He had to hack the software extensively to get it to work. From my experience in digging around in mediawiki, you're in for a fun time trying to get this working. </p> <p>You have four options</p> <ul> <li>Get a mediawiki plugin and have upgrades break it. </li> <li>Hack it yourself and redo the work each time you upgrade.</li> <li>Use different wiki software. </li> <li>Setup a new private wiki as described above.</li> </ul> http://stackoverflow.com/questions/1396066/bash-detect-if-users-path-has-a-specific-directory-in-it 1 Bash: Detect if user's path has a specific directory in it epochwolf 2009-09-08T20:08:23Z 2009-09-10T00:51:13Z <p>With <code>/bin/bash</code>, how would I detect if a user has a specific directory in their $PATH variable?</p> <p>For example</p> <pre><code>if [ -p "$HOME/bin" ]; then echo "Your path is missing ~/bin, you might want to add it." else echo "Your path is correctly set" fi </code></pre> http://stackoverflow.com/questions/145828/including-relevant-boost-libraries-with-c-source-using-visual-studio 3 Including Relevant Boost Libraries with C++ Source (Using Visual Studio) epochwolf 2008-09-28T13:26:19Z 2009-08-21T13:37:59Z <p>I have a project I'm working on (for school) that I'm digging into the Boost libraries for the solutions. I need some way to distribute the required Boost source code with my application so that it can be compiled without the libraries being installed on the system doing the compiling. (School computers lack just about anything you can mention. The school just installed CVS last year. But they do have VS2005)</p> <p>Note: I'm using Visual Studio 2005 on Vista. I have Boost 1.34.1 on my system I used the <a href="http://www.boostpro.com/products/free" rel="nofollow">automatic installer</a>. The documentation I've come across says something about using BCP command but that command doesn't seem to copy anything. (I'm using absolute path to call BCP so I don't end up calling the wrong command.)</p> <p>Edit: I am trying to use the RegEx libraries.</p> <p>Edit: The command I'm using for BCP is: <code>"c:\Program Files\boost\boost_1_34_1\bin\bcp.exe" boost/regex.hpp regex\</code></p> <p>And it returns: <code>no errors detected</code></p> http://stackoverflow.com/questions/1240674/regex-match-a-string-containing-numbers-and-letters-but-not-a-string-of-just-num 2 Regex: Match a string containing numbers and letters but not a string of just numbers. epochwolf 2009-08-06T18:44:45Z 2009-08-07T16:32:58Z <h2>Question</h2> <p>I would like to be able to use a single regex (if possible) to require that a string fits <code>[A-Za-z0-9_]</code> but doesn't allow:</p> <ul> <li>Strings containing just numbers or/and symbols.</li> <li>Strings starting or ending with symbols</li> <li>Multiple symbols next to eachother</li> </ul> <p><strong>Valid</strong></p> <ul> <li><code>test_0123</code></li> <li><code>t0e1s2t3</code></li> <li><code>0123_test</code></li> <li><code>te0_s1t23</code></li> <li><code>t_t</code></li> </ul> <p><strong>Invalid</strong></p> <ul> <li><code>t__t</code></li> <li><code>____</code></li> <li><code>01230123</code></li> <li><code>_0123</code></li> <li><code>_test</code></li> <li><code>_test123</code></li> <li><code>test_</code></li> <li><code>test123_</code></li> </ul> <h2>Reasons for the Rules</h2> <p>The purpose of this is to filter usernames for a website I'm working on. I've arrived at the rules for specific reasons.</p> <ul> <li><p>Usernames with only numbers and/or symbols could cause problems with routing and database lookups. The route for <code>/users/#{id}</code> allows <code>id</code> to be either the user's id or user's name. So names and ids shouldn't be able to collide.</p></li> <li><p><code>_test</code> looks wierd and I don't believe it's valid subdomain i.e. <code>_test.example.com</code></p></li> <li><p>I don't like the look of <code>t__t</code> as a subdomain. i.e. <code>t__t.example.com</code></p></li> </ul> http://stackoverflow.com/questions/890603/how-to-implement-complex-security-rules-in-ruby-on-rails 1 How to implement complex security rules in Ruby on Rails. epochwolf 2009-05-20T22:40:55Z 2009-05-20T22:58:44Z <p>I have a system I'm building that seems to call for some complex rules and rather than have a mess of rules through out the system. I was looking to centralize the process. (Which may not be the smartest idea I've had)</p> <p>My most (perhaps least) brilliant idea was to use a seperate class to check any objects before being saved to the database against a list of allowed values in various fields. It's extremely tightly bound to the database structure but rather easily testable and easy to maintain. </p> <p>Examples of rules:</p> <ul> <li>Moderators can submit comments with moderator status but not admin status. <ul> <li><em>Comments.status can only be normal or moderator (admin is reserved for administrators)</em></li> </ul></li> <li>Users can not modify moderator value on comments <ul> <li><em>Comments.status can only be normal, Comments.display can only be normal</em></li> </ul></li> <li>Only moderators can suspend user accounts <ul> <li><em>list of numerous fields</em></li> </ul></li> <li>Only moderators can modify other user accounts <ul> <li><em>restriction on which fields with logic to determine if the current user owns the row</em></li> </ul></li> <li>Only users with paid accounts can do X, Y, and Z.</li> </ul> <p>The problem I'm having is where do I put this logic. It's getting far too complex for rails validations. Implementing some of these rules is difficult or impossible if I only look at the logged in user's status. The current solution is to create a Security class that will accept a database object and a user and either allow or disallow the action to take place.</p> <p>If I follow this course of action the implementation is going to be nasty. Right now I'm looking at something like this</p> <pre><code>#For every field on an object passed to Security::allow?(user, object), call this private method def allow_helper?(user, object, field) perm = permissions[user.rank][object.class.name][field] if perm.is_a? Array perm.include? object.send(field) else perm </code></pre> <p>Which is going to very quickly become a nightmare to maintain. There has got to be an alternative to this nightmare I've dreamed up. I stopped myself before I coded this. </p> http://stackoverflow.com/questions/866679/using-opengl-glut-how-would-i-detect-if-two-keys-are-held-down-at-the-same-time 0 Using OpenGL /GLUT how would I detect if two keys are held down at the same time? epochwolf 2009-05-15T01:43:07Z 2009-05-15T02:05:49Z <p>Using OpenGL /GLUT how would I detect if two keys, say 'a' and 'j' are held down at the same time?</p> <p>(This program needs to compile with OSX GCC, Windows GCC, Windows VS2005 so no OS dependent hacks please.)</p> http://stackoverflow.com/questions/864124/how-do-i-create-const-arrays-and-calculated-const-values-in-c-class 0 How do I create const arrays and calculated const values in C++ class? epochwolf 2009-05-14T15:44:26Z 2009-05-14T16:09:28Z <p>I'm running into some compiler errors I don't understand. I'm pretty sure I'm doing something very wrong here but I don't know what. I would like all the world constants to be defined as belonging to the class. </p> <p>Notes: </p> <p>I'm only using classes as structs with attached members. I'm not following strict Object-Orriented Design on purpose. Please do not comment the public variables. </p> <p>I'm not concerned very much about the compiler inlining stuff. I'm using this structure because it's easy for me to use. (If it worked)</p> <pre><code>class Board{ public: enum PhysicsResult{ BOUNCE, OUT_OF_BOUNDS_TOP, OUT_OF_BOUNDS_BOTTOM, CONTINUE }; //World constants const static float Height = 500; const static float Width = 300; //ERROR: 'Board::Width' cannot appear in a constant-expression. const static float PaddleWidth = Width/15; const static float BallRadius = 5; const static float BounceDistance = 1.5; //World Objects Ball ball; Paddle paddle1; Paddle paddle2; /* 1---2 | | 0---3 */ //ERROR: a brace-enclosed initalizer is not allowed here before '{' token //ERROR: invalid in-class initalization of static data member of nonintegral type 'const Pair[4]' const static Pair corners[4] = {Pair(0, 0), Pair(0, Height), Pair(Width, Height), Pair(Width, 0)}; //ERROR: a brace-enclosed initalizer is not allowed here before '{' token //ERROR: invalid in-class initalization of static data member of nonintegral type 'const Pair[2]' const static Pair left_wall[2] = {corners[0], corners[1]}; //ERROR: a brace-enclosed initalizer is not allowed here before '{' token //ERROR: invalid in-class initalization of static data member of nonintegral type 'const Pair[2]' const static Pair right_wall[2] = {corners[3], corners[2]}; //ERROR: a brace-enclosed initalizer is not allowed here before '{' token //ERROR: invalid in-class initalization of static data member of nonintegral type 'const Pair[2]' const static Pair top_wall[2] = {corners[1], corners[2]}; //ERROR: a brace-enclosed initalizer is not allowed here before '{' token //ERROR: invalid in-class initalization of static data member of nonintegral type 'const Pair[2]' const static Pair bottom_wall[2] = {corners[0], corners[3]}; </code></pre> <p>If it is possible to do this, what is the proper syntax for doing this? If this is not possible, what alternative should I use?</p> http://stackoverflow.com/questions/861007/how-do-i-bounce-a-point-off-of-a-line 3 How do I bounce a point off of a line? epochwolf 2009-05-13T23:59:43Z 2009-05-14T08:20:02Z <p>I'm working on writing a Pong game for my graphics class final project (I choose to write this, I wasn't assigned Pong) and I've run across a problem that wasn't addressed in either the book or the class. </p> <p>I'm trying to figure out how to bounce a point off of a line. </p> <p>The best method I can figure out to do this with is</p> <ul> <li>Calculate the current and future position of the Ball. <ul> <li>Line Segment: {Ball.location, Ball.location + Ball.direction} (Ball.location and Ball.direction use a custom vector/coordinate class)</li> </ul></li> <li>Calculate if the generated line segment intersects with any of the walls or paddles. <ul> <li>??? Don't know how to do this yet (Will ask in a separate question)</li> </ul></li> <li>At the first intersection found <ul> <li>Bounce the ball off of the line <ul> <li>Create a triangle formed with <ul> <li>a = Ball's current position</li> <li>b = Intersection point of the line.</li> <li>c = Closest point to the Ball's current position on the line.</li> </ul></li> <li>Find the angle that the ball hits the line <ul> <li>angle = cos(distance(b, c) / distance(a, b))</li> </ul></li> <li>Find the angle to rotate the ball's direction <ul> <li>(90 - angle)*2</li> </ul></li> <li>Rotate Ball's direction and move it to it's new position <ul> <li>ignoring distance traveled to hit the line for now, doesn't need to be exactly on the line</li> </ul></li> </ul></li> </ul></li> <li>Else if there is no intersection <ul> <li>Move the ball to it's new position.</li> </ul></li> </ul> <p>Is this an acceptable method or am I missing something? All of the code is going to be written in C++ with OpenGL and I haven't found any OpenGL functions that help with this. (The book's list is far from complete)</p> http://stackoverflow.com/questions/849272/castle-active-record-sql-express-doesnt-work-sql-developer-does 0 Castle Active Record: SQL Express doesn't work. SQL Developer does. epochwolf 2009-05-11T17:59:07Z 2009-05-12T11:39:46Z <p>I've been trying to troubleshoot a Castle ActiveRecord exception for days now. Whenever I attempt to access the database I get an exception with an InnerException value of <code>"An attempt to attach an auto-named database for file database.mdf failed. A database with the same name exists, or specified file cannot be opened, or it is located on UNC share."</code></p> <p>I'm trying to connect to an SQL Server Express 2005 database. I don't have any other database option because the school computers only have SQL Express on them.</p> <p>My connection settings</p> <pre><code>hibernate.connection.driver_class NHibernate.Driver.SqlClientDriver hibernate.dialect NHibernate.Dialect.MsSql2005Dialect hibernate.connection.provider NHibernate.Connection.DriverConnectionProvider hibernate.connection.connection_string Data Source=.\SQLExpress;Integrated Security=True;User Instance=True;AttachDBFilename=database.mdf </code></pre> <p>This fails to work even if I set AttachDBFilename to an absolute path. User Instance has no effect. The database file is currently in the root of the project mixed in with my WinForms classes. </p> <p>When using </p> <pre><code>hibernate.connection.connection_string Data Source=localhost;Initial Catalog=FinalApp;Integrated Security=True;Pooling=False </code></pre> <p>I have no problems doing this on my laptop but I can't use the SQL Server 2005 Developer Edition on the school computers.</p> <p>Full Stack Trace as requested</p> <pre><code>Castle.ActiveRecord.Framework.ActiveRecordException was unhandled Message="Could not perform FindAll for Book" Source="Castle.ActiveRecord" StackTrace: at Castle.ActiveRecord.ActiveRecordBase.FindAll(Type targetType, Order[] orders, ICriterion[] criteria) in c:\dev\castle\svn\branches\1.0.x\ActiveRecord\Castle.ActiveRecord\Framework\ActiveRecordBase.cs:line 1022 at Castle.ActiveRecord.ActiveRecordBase.FindAll(Type targetType) in c:\dev\castle\svn\branches\1.0.x\ActiveRecord\Castle.ActiveRecord\Framework\ActiveRecordBase.cs:line 982 at Castle.ActiveRecord.ActiveRecordBase`1.FindAll() in c:\dev\castle\svn\branches\1.0.x\ActiveRecord\Castle.ActiveRecord\Framework\ActiveRecordBase.Generic.cs:line 333 at CSharpFinal.InventoryMain.InventoryMain_Load(Object sender, EventArgs e) in C:\Documents and Settings\Administrator\My Documents\Visual Studio 2005\Projects\CSharpFinal\InventoryMain.cs:line 36 at System.Windows.Forms.Form.OnLoad(EventArgs e) at System.Windows.Forms.Form.OnCreateControl() at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible) at System.Windows.Forms.Control.CreateControl() at System.Windows.Forms.Control.WmShowWindow(Message&amp; m) at System.Windows.Forms.Control.WndProc(Message&amp; m) at System.Windows.Forms.ScrollableControl.WndProc(Message&amp; m) at System.Windows.Forms.ContainerControl.WndProc(Message&amp; m) at System.Windows.Forms.Form.WmShowWindow(Message&amp; m) at System.Windows.Forms.Form.WndProc(Message&amp; m) at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message&amp; m) at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message&amp; m) at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam) at System.Windows.Forms.SafeNativeMethods.ShowWindow(HandleRef hWnd, Int32 nCmdShow) at System.Windows.Forms.Control.SetVisibleCore(Boolean value) at System.Windows.Forms.Form.SetVisibleCore(Boolean value) at System.Windows.Forms.Control.Show() at CSharpFinal.Form1.inventoryToolStripMenuItem_Click(Object sender, EventArgs e) in C:\Documents and Settings\Administrator\My Documents\Visual Studio 2005\Projects\CSharpFinal\Form1.cs:line 51 at System.Windows.Forms.ToolStripItem.RaiseEvent(Object key, EventArgs e) at System.Windows.Forms.ToolStripMenuItem.OnClick(EventArgs e) at System.Windows.Forms.ToolStripItem.HandleClick(EventArgs e) at System.Windows.Forms.ToolStripItem.HandleMouseUp(MouseEventArgs e) at System.Windows.Forms.ToolStripItem.FireEventInteractive(EventArgs e, ToolStripItemEventType met) at System.Windows.Forms.ToolStripItem.FireEvent(EventArgs e, ToolStripItemEventType met) at System.Windows.Forms.ToolStrip.OnMouseUp(MouseEventArgs mea) at System.Windows.Forms.ToolStripDropDown.OnMouseUp(MouseEventArgs mea) at System.Windows.Forms.Control.WmMouseUp(Message&amp; m, MouseButtons button, Int32 clicks) at System.Windows.Forms.Control.WndProc(Message&amp; m) at System.Windows.Forms.ScrollableControl.WndProc(Message&amp; m) at System.Windows.Forms.ToolStrip.WndProc(Message&amp; m) at System.Windows.Forms.ToolStripDropDown.WndProc(Message&amp; m) at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message&amp; m) at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message&amp; m) at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam) at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG&amp; msg) at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(Int32 dwComponentID, Int32 reason, Int32 pvLoopData) at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context) at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context) at System.Windows.Forms.Application.Run(Form mainForm) at CSharpFinal.Program.Main() in C:\Documents and Settings\Administrator\My Documents\Visual Studio 2005\Projects\CSharpFinal\Program.cs:line 17 at System.AppDomain.nExecuteAssembly(Assembly assembly, String[] args) at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() at System.Threading.ThreadHelper.ThreadStart_Context(Object state) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) at System.Threading.ThreadHelper.ThreadStart() Castle.ActiveRecord.Framework.ActiveRecordException was unhandled Message="Could not create the schema" Source="Castle.ActiveRecord" StackTrace: at Castle.ActiveRecord.ActiveRecordStarter.CreateSchema() in c:\dev\castle\svn\branches\1.0.x\ActiveRecord\Castle.ActiveRecord\Framework\ActiveRecordStarter.cs:line 212 at CSharpFinal.Form1.reInitializeDatabaseToolStripMenuItem_Click(Object sender, EventArgs e) in C:\Documents and Settings\Administrator\My Documents\Visual Studio 2005\Projects\CSharpFinal\Form1.cs:line 65 at System.Windows.Forms.ToolStripItem.RaiseEvent(Object key, EventArgs e) at System.Windows.Forms.ToolStripMenuItem.OnClick(EventArgs e) at System.Windows.Forms.ToolStripItem.HandleClick(EventArgs e) at System.Windows.Forms.ToolStripItem.HandleMouseUp(MouseEventArgs e) at System.Windows.Forms.ToolStripItem.FireEventInteractive(EventArgs e, ToolStripItemEventType met) at System.Windows.Forms.ToolStripItem.FireEvent(EventArgs e, ToolStripItemEventType met) at System.Windows.Forms.ToolStrip.OnMouseUp(MouseEventArgs mea) at System.Windows.Forms.ToolStripDropDown.OnMouseUp(MouseEventArgs mea) at System.Windows.Forms.Control.WmMouseUp(Message&amp; m, MouseButtons button, Int32 clicks) at System.Windows.Forms.Control.WndProc(Message&amp; m) at System.Windows.Forms.ScrollableControl.WndProc(Message&amp; m) at System.Windows.Forms.ToolStrip.WndProc(Message&amp; m) at System.Windows.Forms.ToolStripDropDown.WndProc(Message&amp; m) at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message&amp; m) at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message&amp; m) at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam) at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG&amp; msg) at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(Int32 dwComponentID, Int32 reason, Int32 pvLoopData) at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context) at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context) at System.Windows.Forms.Application.Run(Form mainForm) at CSharpFinal.Program.Main() in C:\Documents and Settings\Administrator\My Documents\Visual Studio 2005\Projects\CSharpFinal\Program.cs:line 17 at System.AppDomain.nExecuteAssembly(Assembly assembly, String[] args) at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() at System.Threading.ThreadHelper.ThreadStart_Context(Object state) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) at System.Threading.ThreadHelper.ThreadStart() </code></pre> <p><code>InnerException.Message</code> is <code>"An attempt to attach an auto-named database for file database.mdf failed. A database with the same name exists, or specified file cannot be opened, or it is located on UNC share."</code></p> http://stackoverflow.com/questions/850502/errors-how-to-save-a-many-to-many-relationship-in-castle-active-record 2 Errors: How to save a many-to-many relationship in Castle Active Record? epochwolf 2009-05-11T23:21:07Z 2009-05-12T00:59:06Z <p>I've been trying for hours to get many-to-many relationship to save with Castle ActiveRecord. What am I doing wrong? I can't find anything in the documentation or on google. There is data in the database.</p> <p>Courses have a many to many relationship with Books.</p> <p>Test code.</p> <pre><code>Database.Course c = new Database.Course(); c.Number = "CS 433"; c.Name = "Databases"; c.Size = 34; c.Books = Database.Book.FindAll(); c.Save(); </code></pre> <p>Also doesn't work</p> <pre><code>foreach(Database.Book b in Database.Book.FindAll()){ c.Books.Add(b); } </code></pre> <p>Database Classes</p> <pre><code>[ActiveRecord] public class Course : ActiveRecordValidationBase&lt;Course&gt; { private int? id; private string number; private string name; private string description; private int size; //number of students in class //references private IList books = new ArrayList(); public override string ToString() { return FormattedName; } public string FormattedName { get { return string.Format("{0} - {1}", Number, Name); } } [PrimaryKey] public int? Id { get { return id; } set { id = value; } } [Property, ValidateNonEmpty] public string Number { get { return number; } set { number = value; } } [Property, ValidateNonEmpty] public string Name { get { return name; } set { name = value; } } [Property(ColumnType="StringClob")] public string Description { get { return description; } set { description = value; } } [Property] public int Size { get { return size; } set { size = value; } } [HasAndBelongsToMany(typeof(Book), Table = "BookCourse", ColumnKey = "course_id", ColumnRef = "book_id", Inverse = true)] public IList Books { get { return books; } set { books = value; } } } [ActiveRecord] public class Book : ActiveRecordValidationBase&lt;Book&gt; { private int? id; private string title; private string edition; private string isbn; private bool is_available_for_order; //relations private IList authors = new ArrayList(); private IList bookordercount = new ArrayList(); private IList courses = new ArrayList(); private Inventory inventory; public override string ToString() { return FormattedName; } public string FormattedName { //* get { string str; if (Edition == null || Edition == "") str = Title; else str = string.Format("{0} ({1})", Title, Edition); if (Authors.Count != 0) { return string.Format("{0} by {1}", str, FormattedAuthors); } else { return str; } } /*/ get { return Title; } //*/ } public string FormattedAuthors { get { if (Authors.Count == 0) return ""; StringBuilder sb = new StringBuilder(); int i = 0, end = Authors.Count; foreach (Author a in Authors) { i++; sb.Append(a.FormattedName); if (i != end) sb.Append("; "); } return sb.ToString(); } } [PrimaryKey] public int? Id { get { return id; } set { id = value; } } [Property, ValidateNonEmpty] public string Title { get { return title; } set { title = value; } } [Property] public string Edition { get { return edition; } set { edition = value; } } [Property, ValidateNonEmpty] public string Isbn { get { return isbn; } set { isbn = value; } } [Property] public bool IsAvailableForOrder { get { return is_available_for_order; } set { is_available_for_order = value; } } //relations [HasAndBelongsToMany(typeof(Author), Table = "BookAuthor", ColumnKey = "book_id", ColumnRef = "author_id")] public IList Authors { get { return authors; } set { authors = value; } } [HasMany(typeof(BookOrderCount), Table = "BookOrderCounts", ColumnKey = "BookId")] public IList BookOrderCount { get { return bookordercount; } set { bookordercount = value; } } [HasAndBelongsToMany(typeof(Course), Table = "BookCourse", ColumnKey = "book_id", ColumnRef = "course_id")] public IList Courses { get { return courses; } set { courses = value; } } [OneToOne] public Inventory Inventory { get { return inventory; } set { inventory = value; } } } </code></pre> http://stackoverflow.com/questions/829496/draw-a-line-of-x-length-given-a-point-in-space-and-a-vector 3 Draw a line of X length given a point in space and a vector. epochwolf 2009-05-06T13:15:24Z 2009-05-06T13:38:28Z <p>Before everyone jumps on me for outsourcing my homework, my question is not a question on my homework. I'm just having a problem getting some stuff to draw properly.</p> <p>I'm trying to draw lines perpendicular to a plane. I know the three points in space the make up the plane. From those coordinates I can calculate vectors and get the normal vector of the plane. Using the coordinates from the center of the three points and the normal vector I can draw a line perpendicular to the plane. </p> <p>My problem is that the length of that line is tied to the normal vector because I'm just adding the vector to the coordinates to get two points to draw a line on. Without using some hideous brute-force code how do I draw a line of fixed length given any point in 3D space and any vector.</p> <p>(I'm asking here because I don't know terms to use to search on google, my textbook doesn't have anything dealing with this, and my professor isn't going to be available before this is due.)</p> http://stackoverflow.com/questions/800900/what-is-joels-two-levels-of-abstraction 7 What is Joel's "two levels of abstraction"? epochwolf 2009-04-29T04:38:17Z 2009-04-29T10:37:32Z <p>I was listening to the Stack Overflow Podcast #34 (59:00 - 1:02:00) and Joel mentioned the difficulty of pointers and recursion. He also mentioned thinking in two levels of abstraction. </p> <p>He also mentions these concepts in his <a href="http://www.joelonsoftware.com/articles/ThePerilsofJavaSchools.html" rel="nofollow">Peril of JavaSchools</a> article.</p> <blockquote> <p>.... But when you struggle with pointers, your program produces the line <strong>Segmentation Fault</strong> and you have no idea what's going on, until you stop and take a deep breath and really try to force your mind to work at two different levels of abstraction simultaneously.</p> </blockquote> <p>I came across this two years ago well before taking the C++ class at the local university. When I took C++ I thought I understood pointers instantly. I started learning programming with PHP. I read almost the entire manual for PHP 5.1.2 before driving in. I learned how php handles variable references in some massive lookup table. Pointers seemed to me to simply work as a big lookup table that points to physical memory. (Which mixes processor instructions with data and makes those enjoyable buffer overflow exploits so easily possible.) My Computer Architecture class stopped just short of writing working assembly but we did get a 2 hour crash course in it. The classes available are an odd mix of hard theory and practical programming. I have not learned anything below C++ in abstraction and I really didn't learn much about assembly.</p> <p>However I still can not understand what Joel is talking about with "two levels of abstraction". </p> <p>I guess I have a number of questions. I don't know if I have a wrong view of pointers. Am I gifted in some bizarre way that I just "get it". Am I hopelessly fooling myself into thinking I actually know something? I've read some of the stuff on <a href="http://stackoverflow.com/questions/5727/understanding-pointers">Understanding Pointers</a> but it hasn't really pointed to anything I don't think I already understand. </p> <p>It's driving me nuts. It all stems from me not understanding what Joel is talking about when he mentions "two levels of abstraction". I feel like I'm missing some important critical concept in computer science.</p> <p>Help me out! What is the "two levels of abstraction" that Joel keeps talking about?</p> http://stackoverflow.com/questions/783090/is-there-a-way-to-replace-127-0-0-1-on-my-local-machine-for-test-purposes/783406#783406 0 Answer by epochwolf for Is there a way to replace 127.0.0.1 on my local machine for test purposes? epochwolf 2009-04-23T20:33:07Z 2009-04-23T20:33:07Z <p>You can always configure webserver to listen on your network ip address and then use that ip. </p> <p>On the other hand if you are looking to get requests from multiple domains like a.localhost, b.localhost, and c.localhost try editing your hosts file to redirect domains to 127.0.0.1</p> http://stackoverflow.com/questions/783362/resources-for-designing-a-social-network 1 Resources for designing a social network? epochwolf 2009-04-23T20:19:30Z 2009-04-23T20:27:25Z <p>I'm working on designing an online art community that's not all that dissimilar from deviantART or other art communities. </p> <p>I'm looking for resources (books, websites, blogs) that would guide me in some of the technical, social, and legal issues I'll need to address in designing the site. </p> <p>I've started with <a href="http://rads.stackoverflow.com/amzn/click/1594201536" rel="nofollow">Here Comes Everybody</a> by Clay Shirky. I just need to know where to go from here.</p> http://stackoverflow.com/questions/765840/mixing-security-logic-with-models-in-ruby-on-rails 3 Mixing security logic with models in Ruby on Rails? epochwolf 2009-04-19T18:22:43Z 2009-04-22T19:16:47Z <p>Is it bad design to mix code that deals with security logic in the model?</p> <p>Example for editing a page in the before_save callback</p> <ul> <li>The current user is grabbed from the <code>current_user</code> method in the Controller layer.</li> <li>Throw exception if <code>current_user.has_permission? :edit_page</code> is false</li> <li>The <code>editor_id</code> is set to <code>current_user.id</code></li> <li>The change is logged in a separate table</li> </ul> <p>The model isn't the only security check in the application. The user interface checks for permission before display editing views. The model acts as a barrier against any bugs in the View/Controller level.</p> <p>Note: The only breach between the Model and Controller levels is the <code>current_user</code> method. The application I'm working on will never allow anonymous users.</p> http://stackoverflow.com/questions/777996/python-subprocess-object-has-no-attribute-fileno-error 1 Python subprocess "object has no attribute 'fileno'" error epochwolf 2009-04-22T16:05:06Z 2009-04-22T18:01:31Z <p>This code generates "AttributeError: 'Popen' object has no attribute 'fileno'" when run with Python 2.5.1 </p> <p>Code:</p> <pre><code>def get_blame(filename): proc = [] proc.append(Popen(['svn', 'blame', shellquote(filename)], stdout=PIPE)) proc.append(Popen(['tr', '-s', r"'\040'"], stdin=proc[-1]), stdout=PIPE) proc.append(Popen(['tr', r"'\040'", r"';'"], stdin=proc[-1]), stdout=PIPE) proc.append(Popen(['cut', r"-d", r"\;", '-f', '3'], stdin=proc[-1]), stdout=PIPE) return proc[-1].stdout.read() </code></pre> <p>Stack:</p> <pre><code>function walk_folder in blame.py at line 55 print_file(os.path.join(os.getcwd(), filename), path) function print_file in blame.py at line 34 users = get_blame(filename) function get_blame in blame.py at line 20 proc.append(Popen(['tr', '-s', r"'\040'"], stdin=proc[-1]), stdout=PIPE) function __init__ in subprocess.py at line 533 (p2cread, p2cwrite, function _get_handles in subprocess.py at line 830 p2cread = stdin.fileno() </code></pre> <p>This code should be working the python docs describe <a href="http://docs.python.org/library/subprocess.html#subprocess-replacements" rel="nofollow">this usage</a>.</p> http://stackoverflow.com/questions/126801/ruby-on-rails-why-use-tests 5 Ruby on Rails - Why use tests? epochwolf 2008-09-24T12:23:45Z 2009-04-22T16:47:44Z <p>I'm confused about what the various testing appliances in Ruby on Rails are for. I have been using the framework for about 6 months but I've never understood the testing part of it. The only testing I've used is JUnit3 in Java and that only briefly.</p> <p>Everything I've read about it just shows testing validations. Shouldn't the validations in rails just work? It seems more like testing the framework than testing the your code. Why would you need to test validations? </p> <p>Furthermore, the tests seem super fragile to any change in your code. So if you change anything in your models, you have to change your tests and fixtures to match. Doesn't this violate the DRY principle?</p> <p>Third, writing test code seems to take alot of time. Is that normal? Wouldn't it just be faster to refresh my browser and see if it worked? I already have to play with my application just to see if it flows correctly and make sure my CSS hasn't exploded. Why wouldn't manual testing be enough?</p> <p>I've asked these questions before and I haven't gotten more than "automated testing is automated". I am smart enough to figure out the advantages of automating a task. My problem is that costs of writing tests seem absurdly high compared to the benefits. That said, any detailed response is welcome because I probably missed a benefit or two.</p> http://stackoverflow.com/questions/777039/subversion-generate-a-full-diff-from-every-checkin-that-includes-username 0 Subversion: Generate a full diff from every checkin that includes username epochwolf 2009-04-22T12:43:39Z 2009-04-22T13:53:12Z <p>I have a professor that doesn't understand source control very well. He asked us to use comments to determine who wrote each line of code. Most of the class is using email as version control and Visual C++ as the language which leads to a mess of comments, carets and generated code. My group is using subversion and C# and I would prefer to get the history from the repository instead of cluttering the code with comments on every line.</p> <p>I need a way to generate a viewable history of all checkins which shows how much of the source each user modified.</p> <p>A format like this would be nice</p> <pre><code>Andy /trunk/doc/file.txt (57%) /trunk/project/app.h (100%) Brian /trunk/doc/file.txt (43%) /trunk/project/app.cpp (60%) Jeff /trunk/project/app.cpp (40%) </code></pre> <p>How would I go about this? Does BASH have enough power to do this or should I use python? (I would generate the diff on a linux system)</p> http://stackoverflow.com/questions/774825/basic-rails-question-one-to-one-relationships/774907#774907 1 Answer by epochwolf for Basic Rails Question: One-to-One relationships epochwolf 2009-04-21T22:22:05Z 2009-04-21T22:22:05Z <p>Why not use a polymorphic relationship that points to either Female_Trait or Male_Trait?</p> <pre><code>class Ood&lt; ActiveRecord::Base belongs_to :trait, :polymorphic =&gt; true end class Female_Trait &lt; ActiveRecord::Base has_one :oods, :as =&gt; :trait end class Male_Trait &lt; ActiveRecord::Base has_one :oods, :as =&gt; :trait end </code></pre> http://stackoverflow.com/questions/761211/how-to-handle-enumerations-without-enum-fields-in-a-database 1 How to handle enumerations without enum fields in a database? epochwolf 2009-04-17T16:46:38Z 2009-04-19T17:29:44Z <p>How would I implement a enumeration field in a database that doesn't support enumerations? (i.e. SQLite) </p> <p>The fields need to be easily searchable with "<code>field</code> = ?" so using any type of data serialization is a bad idea.</p> http://stackoverflow.com/questions/760554/are-boolean-flags-in-a-database-acceptable-for-this-list-of-options 2 Are boolean flags in a database acceptable for this list of options? epochwolf 2009-04-17T14:06:52Z 2009-04-17T15:53:06Z <p>I'm working on adding user submitted comments to a personal project.</p> <p>Comments have a number of flags for special purposes. Comments are also versioned for moderation purposes so timestamps aren't need on specific fields. </p> <p>These are the options I have so far in the functional design. (list not final) This list will change at some point because I know I haven't figured out everything.</p> <ul> <li>Wrapped (The text is hidden behind a javascript link)</li> <li>Hidden (The text of comment is hidden from non-moderators)</li> <li>Locked (Can't be edited)</li> <li>Deleted (Comment deleted)</li> <li>Moderator (hides the name of the poster)</li> <li>Administrator (same as moderator except moderators can't edit)</li> <li>Hellbanned (Acts deleted except for the poster)</li> </ul> <p>There are some rules governing what flags can exist together. (As far as display is concerned.)</p> <ul> <li>Administrator/Moderator comments shouldn't be wrapped, hidden, locked, or hellbanned. (Moderators can't be hellbanned)</li> <li>A comment can't be an Administrator and a Moderator comment at the same time.</li> <li>Hellbanned shouldn't have Deleted. </li> <li>A comment cannot have both Wrapped and Hidden</li> <li>Hidden comments should be Locked.</li> </ul> <p>Are boolean flags enough to implement this in a database? (I'm using Ruby on Rails with SQLite/MySQL so the database can't have triggers/constraints)</p> http://stackoverflow.com/questions/1785572/why-should-one-bother-with-preprocessor-directives Comment by epochwolf on Why should one bother with preprocessor directives? epochwolf 2009-11-23T20:01:58Z 2009-11-23T20:01:58Z This amuses me. :) http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/190515#190515 Comment by epochwolf on What are some funny loading statements to keep users amused? epochwolf 2009-11-22T21:21:59Z 2009-11-22T21:21:59Z It stands for Alternate Storage Disk Format eXecutable http://stackoverflow.com/questions/1735617/datagridview-inserts-primary-key/1735700#1735700 Comment by epochwolf on DataGridView inserts primary key epochwolf 2009-11-14T23:28:31Z 2009-11-14T23:28:31Z Ah! If I can define my own queries I can fix this. http://stackoverflow.com/questions/1735617/datagridview-inserts-primary-key/1735700#1735700 Comment by epochwolf on DataGridView inserts primary key epochwolf 2009-11-14T21:58:53Z 2009-11-14T21:58:53Z I set everything as you suggested. When I try to push the data back into the database, SQL Server is choking on the insert statement the DataSet is generating. http://stackoverflow.com/questions/1735617/datagridview-inserts-primary-key/1735700#1735700 Comment by epochwolf on DataGridView inserts primary key epochwolf 2009-11-14T21:42:13Z 2009-11-14T21:42:13Z I get SQL Exception: Cannot insert explicit value for identity column in table 'Inventory' when IDENTITY_INSERT is set to OFF. http://stackoverflow.com/questions/1711133/ubuntu-vs-centos Comment by epochwolf on Ubuntu Vs. CentOS epochwolf 2009-11-10T20:59:21Z 2009-11-10T20:59:21Z This belongs on serverfault http://stackoverflow.com/questions/80091/diff-a-ruby-string-or-array/1511882#1511882 Comment by epochwolf on diff a ruby string or array epochwolf 2009-10-15T19:15:28Z 2009-10-15T19:15:28Z using temporary files is generally a bad idea when you have an in memory option available. http://stackoverflow.com/questions/1548395/what-attacks-can-be-directed-on-a-registration-page/1548420#1548420 Comment by epochwolf on What attacks can be directed on a registration page epochwolf 2009-10-10T16:52:38Z 2009-10-10T16:52:38Z or just convert &lt; to &amp;tl; and &gt; to &amp;gt; http://stackoverflow.com/questions/1537949/storing-openid-information-in-database Comment by epochwolf on Storing OpenID information in database. epochwolf 2009-10-08T18:32:44Z 2009-10-08T18:32:44Z Email is for named accounts not using openid. I've since changed my application to use openid exclusively. (I think enough people have google/yahoo accounts that I won't have an issue with this.) http://stackoverflow.com/questions/145828/including-relevant-boost-libraries-with-c-source-using-visual-studio/1311997#1311997 Comment by epochwolf on Including Relevant Boost Libraries with C++ Source (Using Visual Studio) epochwolf 2009-08-22T04:42:01Z 2009-08-22T04:42:01Z I actually just dumped the pre-compiled debug libraries into the proper relative folder. http://stackoverflow.com/questions/65800/whats-the-best-html-wysisyg-editor-available-to-web-developers-and-why/66250#66250 Comment by epochwolf on What's the best HTML WYSISYG editor available to web developers and why? epochwolf 2009-08-17T21:51:18Z 2009-08-17T21:51:18Z It's bugging out in Safari. http://stackoverflow.com/questions/154853/how-do-you-remove-subversion-control-for-a-folder/154860#154860 Comment by epochwolf on How do you remove subversion control for a folder? epochwolf 2009-08-10T00:01:32Z 2009-08-10T00:01:32Z Thanks for providing an answer that works with the command line. :) Great for those of us using terminals. http://stackoverflow.com/questions/1240674/regex-match-a-string-containing-numbers-and-letters-but-not-a-string-of-just-num/1245765#1245765 Comment by epochwolf on Regex: Match a string containing numbers and letters but not a string of just numbers. epochwolf 2009-08-09T23:57:19Z 2009-08-09T23:57:19Z This is a very good point. I've actually added my entire question and the response I've accepted into the bottom of the file where the regex appears. There is also a note on the regex to look at the bottom of the file. Because I know I will have fun trying to figure out regex later. http://stackoverflow.com/questions/1240674/regex-match-a-string-containing-numbers-and-letters-but-not-a-string-of-just-num Comment by epochwolf on Regex: Match a string containing numbers and letters but not a string of just numbers. epochwolf 2009-08-06T19:16:34Z 2009-08-06T19:16:34Z @Dav, I rolled back my edits and accepted your answer. http://stackoverflow.com/questions/1240674/regex-match-a-string-containing-numbers-and-letters-but-not-a-string-of-just-num/1240735#1240735 Comment by epochwolf on Regex: Match a string containing numbers and letters but not a string of just numbers. epochwolf 2009-08-06T19:04:52Z 2009-08-06T19:04:52Z Ruby is choking on <code>(?&lt;!&#95;)</code>. It would appear ruby 1.8 doesn't have support for negative lookbehinds which would make this problem much much harder.