User corymathews - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T17:02:43Z http://stackoverflow.com/feeds/user/1925 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/253834/convert-doc-to-html-in-php 2 Convert .doc to html in php corymathews 2008-10-31T15:02:59Z 2009-11-25T23:48:57Z <p>Has anyone found a good class, or other file that will convert a .doc file into html or something that I can read and turn into html? </p> <p>I have been looking around for a couple hours now and have only found ones that require msword on the server in order to convert the file. I am pretty sure that is not an option but I have not actually talked to my hosting provider about it.</p> <p>The goal is for a user to be able to upload the file to my server and the server handle the conversion and then display it as html, much like googles view as html feature.</p> http://stackoverflow.com/questions/1797845/why-is-the-rendering-of-this-css-such-a-problem-for-ie-6/1797966#1797966 1 Answer by corymathews for Why is the rendering of this CSS such a problem for IE 6? corymathews 2009-11-25T16:03:29Z 2009-11-25T16:03:29Z <blockquote> <p>z-index only works on positioned elements (position:absolute, position:relative, or position:fixed).</p> </blockquote> <p>You do not have these on Div.XHeader thus that z-index is being ignored completely. </p> <p>Read more about z-index on <a href="http://www.w3schools.com/Css/pr%5Fpos%5Fz-index.asp" rel="nofollow">w3schools</a></p> http://stackoverflow.com/questions/1773275/how-do-you-globally-modify-page-output-sent-from-iis-without-modifying-the-page-s 3 How do you globally modify page output sent from IIS without modifying the page source? corymathews 2009-11-20T21:13:14Z 2009-11-25T15:57:29Z <p>A couple sites of mine recently got "hacked". Someone was able to add a line of JavaScript to the bottom of every page on the site. </p> <p>The server is a Windows Server 2003, and has Cold Fusion 8 and MySQL 5.x installed and running.</p> <p>Looking into the code on each page shows that none of the pages were modified. The JavaScript is not in the code files themselves. This leads me to believe it is an IIS problem, but I am unsure and cannot find anything that would be able to do this within IIS. </p> <p>The JavaScript being added redirects a user to another page only when they come from Google, or at least it appears to work this way.</p> <p>Any help on how someone was able to accomplish this as well as removing it would be greatly appreciated. </p> <p>Another way to word the question thanks to @Jeffrey Hantin</p> <p><strong>How do you systematically modify output from IIS without modifying individual pages?</strong></p> <p><hr></p> <p><strong>EDIT</strong>: A bit more testing has shown that only the .cfm pages add the extra javascript. Added a new .cfm and the js was there but a .html did not have it. </p> <p><hr></p> <p>Edit2: Turns out to have been a coldfusion problem after all. Somehow the pages OnRequestEnd.cfm were created on the sites and added that js.</p> http://stackoverflow.com/questions/242059/opengl-with-python 1 OpenGl with Python corymathews 2008-10-28T02:29:24Z 2009-11-22T13:16:15Z <p>I am currently in a course that is using OpenGL and I have been using C for all the programs so far. I have Python installed on Fedora as well as OpenGL however the minute I call an OpenGL command in my Python code I get a <strong>segmentation fault</strong>. I have no idea why this is.</p> <p>Just to avoid the "just use C" comments heres why I want to use Python.</p> <p>There are a couple reasons I am wanting to switch from C to Python, but the main one is because we are about to start writing a raytracer and I would like to use classes to make it easier on me. Since I hate classes in C++ and structs in C seems a little crazy, I thought I would give Python a try at it. I have also been looking for a reason to use Python again as it has been a while.</p> <p>Thanks for any help.</p> http://stackoverflow.com/questions/1772069/best-practices-for-how-to-layer-a-asp-net-c-web-app 0 Best practices for how to Layer a ASP.NET/C# web app corymathews 2009-11-20T17:30:41Z 2009-11-21T04:28:30Z <p>I have been working on an ASP.NET/C# web app for some time and its size has gotten way to large for how it is being programmed. It has become very hard to maintain and getting harder quickly, something that used to take an 1hr to update now takes about 3-4hrs. </p> <p>I believe that reworking the app to use different layers would help solve many of these problems. However the more I read the more it seems that everyone does it differently, but achieve mostly the same goals.</p> <p>I have seen layers such as Presentation/UI, DB, Business, Services, ect. It appears that a 3 layer may be the best but I am unsure.</p> <p><strong>What layers should I have in a web app and what should each include or be limited to?</strong></p> <p>Words from previous experience are most appreciated. </p> http://stackoverflow.com/questions/1773275/how-do-you-globally-modify-page-output-sent-from-iis-without-modifying-the-page-s/1773681#1773681 2 Answer by corymathews for How do you globally modify page output sent from IIS without modifying the page source? corymathews 2009-11-20T22:43:37Z 2009-11-20T22:43:37Z <p>Turns out to have been a coldfusion problem after all. The page OnRequestEnd.cfm were created on the sites and added that js.</p> http://stackoverflow.com/questions/1180257/best-practice-handling-multiple-fields-user-roles-and-one-stored-procedure/1765759#1765759 0 Answer by corymathews for Best Practice - Handling multiple fields, user roles, and one stored procedure corymathews 2009-11-19T19:05:41Z 2009-11-19T19:05:41Z <p>Generally to overcome this in my update function </p> <ol> <li>I would load the current values for the user</li> <li>Replacing any loaded values with the newly changed values from the form</li> <li>Update in db.</li> </ol> <p>This way I have all the current plus everything that has been changed will get changed. </p> <p>This logic will also work for an add form because all the fields would be null then get replaced with a new value before being sent to the db. You would of course just have to check whether to do an insert or update.</p> http://stackoverflow.com/questions/1716799/where-can-i-get-some-good-hands-on-development-design-training-that-wont-break-t/1716895#1716895 0 Answer by corymathews for Where can I get some good hands-on development/design training that won't break the bank? corymathews 2009-11-11T17:45:55Z 2009-11-11T17:45:55Z <p>Just start writing a program for yourself. You can read all you want but without ever doing anything you will never get any better. By writing a sizable program on your own you will face problems that you must then figure out. Thus learning...</p> http://stackoverflow.com/questions/1716230/space-code-in-c/1716369#1716369 1 Answer by corymathews for Space code in C# corymathews 2009-11-11T16:31:09Z 2009-11-11T16:31:09Z <p>I think you are taking OO way to far.. A simple addition of a space does not need an entire class.</p> <pre><code>tabs += new String(' '); </code></pre> <p>or </p> <pre><code>tabs += " "; </code></pre> <p>is just fine.</p> http://stackoverflow.com/questions/1668475/is-it-possible-to-style-a-checkbox-using-css/1668651#1668651 0 Answer by corymathews for Is it possible to style a checkbox using CSS? corymathews 2009-11-03T16:53:47Z 2009-11-03T16:53:47Z <p>There was a pretty good way posted by filament group</p> <p><a href="http://www.filamentgroup.com/lab/accessible%5Fcustom%5Fdesigned%5Fcheckbox%5Fradio%5Fbutton%5Finputs%5Fstyled%5Fcss%5Fjquery/" rel="nofollow">Accessible, Custom Designed Checkbox and Radio Button Inputs Styled with CSS (and a dash of jQuery)</a></p> <p>As the title says it uses a bit of jQuery but degrades very nicely. You could combine this with the other answers that state to use the css</p> <pre><code>input[type='checkbox']{ } </code></pre> <p>And only run this javascript when the user comes in an browser that does not support this css such as ie6.</p> http://stackoverflow.com/questions/1667757/alert-box-running-first 1 Alert Box Running First? corymathews 2009-11-03T14:41:31Z 2009-11-03T14:54:52Z <p>This seems like is a weird case to me. I hava some jQuery/JS below. The first thing to run is the alert box at the end. </p> <pre><code>$(document).ready(function() { $("#id1 img , .msg").stop().animate( { width: '300px', height: '300px'}, { duration: 'slow', easing: 'easeInSine' }).pause(3000); $(".msg").animate( { width: '50px', height: '50px' }, { duration: 498, easing: 'easeOutSine' }); $("#id1 img").animate( { width: '50px', height: '50px' }, { duration: 500, easing: 'easeOutSine' }); $("#id1 img , .msg").animate( { width: '300px',height: '300px'}, { duration: 'slow', easing: 'easeInSine' }).pause(3000); alert('wtf?'); }); </code></pre> <p><em>I do have a <a href="http://blog.mythin.net/file%5Fdownload/5" rel="nofollow">pause</a> plugin and <a href="http://gsgd.co.uk/sandbox/jquery/easing/" rel="nofollow">easing</a> plugin.</em></p> <p>If I run this the alert will show, and then the first animate will happen in the background but not be shown. It will just appear at the final size.</p> <p>Shouldn't the alert run at the end of all the animation? </p> <p>Can anyone explain why this is happening?</p> http://stackoverflow.com/questions/1600822/tool-for-webpage-ui-design/1602275#1602275 0 Answer by corymathews for Tool for Webpage UI design corymathews 2009-10-21T17:20:23Z 2009-10-21T17:20:23Z <p>I always use photoshop, but any image editor would be just as good. gimp, paint.net, ect..</p> <p>I would never start the design of the UI in html. Its far to slow in comparison.</p> http://stackoverflow.com/questions/1594579/sql-full-text-search-with-foreign-key-columns/1594614#1594614 0 Answer by corymathews for SQL Full text search with foreign key columns corymathews 2009-10-20T13:29:47Z 2009-10-20T14:31:26Z <p><strong>You need to create a view and index that</strong></p> <p>I spent a lot of time on this a while back and the view was the only way I was able to do this. </p> <p>I also ended up putting everything in 1 column. By this I mean that I added all the text from each column into one column. For example you have a simple table with ID, first, middle, last name columns. In my view I would condense them to 1 column in my view. So for a row of</p> <blockquote> <p>ID:1 - First Name: Joe - Middle Name: Bob - Last Name: Joe</p> </blockquote> <p>In the view you would see one column with</p> <blockquote> <p>1 Joe Bob Joe</p> </blockquote> <p>This was because I found that some records were not being returned if they were not in ALL columns. Thus by condensing it down to 1 column this problem was eliminated.</p> http://stackoverflow.com/questions/1561555/c-creating-a-log-system/1561788#1561788 0 Answer by corymathews for C# Creating a log system corymathews 2009-10-13T17:39:06Z 2009-10-13T17:39:06Z <p>For my apps I have chosen to write to db. Its easier (for me) to read the logs this way. However I do not go log crazy as some people do, I only log what I need to log and nothing else.</p> <p>I gave log4net a shot not to long ago and did not like it at all. It was a whole lot of junk to just write to a db and send an email. I ended up writing a custom logging class and it was a whole ~200 lines and took just a few hours. It works great, I don't have another dependency, and it can be easily changed.</p> http://stackoverflow.com/questions/1555399/which-css-techniques-for-solving-cross-browser-problems-are-guaranteed-to-always/1555412#1555412 0 Answer by corymathews for Which CSS techniques for solving cross-browser problems are guaranteed to always work ? corymathews 2009-10-12T16:02:31Z 2009-10-12T16:02:31Z <p>Its a hack, its not supposed to be bulletproof. </p> <p>Your best best is always alternate stylesheets.</p> http://stackoverflow.com/questions/1534525/xsl-parsing-is-shortening-script-tag-causing-issues-in-ie/1534531#1534531 2 Answer by corymathews for XSL parsing is shortening script tag causing issues in IE corymathews 2009-10-07T22:11:29Z 2009-10-07T22:11:29Z <p>Just Missing the closing <code>&lt;/script&gt;.</code></p> http://stackoverflow.com/questions/1510024/problem-with-setting-a-session-with-data-from-an-xml-file-in-php/1510145#1510145 1 Answer by corymathews for Problem with setting a session with data from an xml file in PHP corymathews 2009-10-02T15:10:17Z 2009-10-02T15:10:17Z <p>I Don't think you can have the : in php. </p> <p>its on the else: and the end of the if: </p> http://stackoverflow.com/questions/1510011/how-does-ajax-work/1510073#1510073 -3 Answer by corymathews for How does AJAX work? corymathews 2009-10-02T15:00:02Z 2009-10-02T15:00:02Z <p><a href="http://w3schools.com/ajax/default.asp" rel="nofollow">w3Schools</a> says it better then I could.</p> http://stackoverflow.com/questions/1500784/how-many-programming-books-do-you-read-each-year/1500876#1500876 4 Answer by corymathews for How many Programming Books do you read each year? corymathews 2009-09-30T21:55:14Z 2009-09-30T21:55:14Z <p>0</p> <p>well.. since college. I stick to blogs and forums mainly. These keep me up to date with new techniques and technologies. They are generally shorter, more up to date, to the point. I don't have the time or desire to site down and read an entire chapter that some blogger could have summed up in a couple paragraphs.</p> <p>If I have to open a book its only because I could not find anything on that specific topic in a blog. </p> http://stackoverflow.com/questions/1486097/i-want-to-make-a-simple-3d-game-using-opengl-where-should-i-start/1494852#1494852 2 Answer by corymathews for I want to make a simple 3D game using openGL, where should I start? corymathews 2009-09-29T20:47:47Z 2009-09-29T20:47:47Z <p><a href="http://nehe.gamedev.net/" rel="nofollow">NeHe</a></p> <p>This site helped more then anything when I was learning opengl. </p> http://stackoverflow.com/questions/1462360/css-hover-one-element-effect-for-multiple-elements/1462568#1462568 3 Answer by corymathews for CSS: Hover one element, effect for multiple elements?? corymathews 2009-09-22T20:58:17Z 2009-09-22T20:58:17Z <p>You dont need javascript for this...</p> <p>some css would do it. Here is an example</p> <pre><code>&lt;html&gt; &lt;style type="text/css"&gt; .section { background:#ccc; } .section { background:#ddd; } .section:hover img { border:2px solid #333; } .section:hover .layer { border:2px solid #F90; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div class="section"&gt; &lt;img src="myImage.jpg" /&gt; &lt;div class="layer"&gt;Lorem Ipsum&lt;/div&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/813104/uploading-pdf-v1-3-to-db 1 Uploading PDF v1.3 to DB corymathews 2009-05-01T20:23:14Z 2009-09-21T21:44:14Z <p>I have some C# code that will upload images and files into a db. Currently I thought It working for all documents that fit a list of mimetypes. However It fails on some pdf's.</p> <p>I have narrowed the problem down to the fact that some pdf's are in the 1.3 format and some are in the 1.4 format. The 1.4 works and is properly uploaded, however 1.3 does not upload and it does not generate any runtime errors it just fails to be added.</p> <p>Some of the current code for uploading the pdf is </p> <pre><code>Checks for valid MIME Type ... byte[] fileData = new byte[uploadFile.ContentLength]; uploadFile.InputStream.Read(fileData, 0, uploadFile.ContentLength); ... Continues on to Uploads to db. </code></pre> <p>For pdf's it is looking for "application/pdf" as the mime type. I don't think there is another type for pdfs in the 1.3 format, but maybe I am wrong.</p> <p>Anyone else ever have this problem before and any advice on how to correct it?</p> http://stackoverflow.com/questions/813104/uploading-pdf-v1-3-to-db/1457048#1457048 0 Answer by corymathews for Uploading PDF v1.3 to DB corymathews 2009-09-21T21:44:14Z 2009-09-21T21:44:14Z <p>It seems that it was just a stupid mistake. The file had a .PDF extension unlike the rest with a .pdf. Stupid caps got me. A bit of extra debug statements did the trick.</p> http://stackoverflow.com/questions/1456967/why-would-you-need-a-slash-at-the-end-of-a-url/1457030#1457030 1 Answer by corymathews for Why would you need a slash at the end of a URL? corymathews 2009-09-21T21:38:08Z 2009-09-21T21:38:08Z <p>Just a side note that search engines view these as 2 different pages. Thus hurting your seo.</p> http://stackoverflow.com/questions/1457001/convert-kilobytes-to-bytes-in-php/1457018#1457018 3 Answer by corymathews for Convert kilobytes to bytes in PHP corymathews 2009-09-21T21:36:16Z 2009-09-21T21:36:16Z <p>multiply by 1024</p> http://stackoverflow.com/questions/1435700/securly-transferring-data-from-server-to-external-database 1 Securly transferring data from server to external database corymathews 2009-09-16T21:53:24Z 2009-09-16T22:04:39Z <p><strong>Reason:</strong> We have a new client that wishes for the database containing all their info to be stored on their own personal database server. However the web server will be located at another location. </p> <p><strong>Question</strong> How can you secure the data from the time it is inputed until the time an external database saves it?</p> <p>Through some reading it seems that SSL will only cover so much and that some sort of a secure connection must be set up between the two. Or does the SSL cover this connection as well? It somewhat seems that it should.</p> http://stackoverflow.com/questions/1434378/how-to-prevent-the-contents-of-a-div-from-beaking-its-parents-dimensions-in-ie6/1434659#1434659 0 Answer by corymathews for How to prevent the contents of a div from beaking its parents dimensions in ie6 corymathews 2009-09-16T18:20:16Z 2009-09-16T18:20:16Z <p>the css property </p> <p>overflow:hidden </p> <p>will solve this problem. It will just not show any image, text, ect that goes outside the div.</p> http://stackoverflow.com/questions/1434622/customer-management-what-database-is-recommend/1434640#1434640 0 Answer by corymathews for Customer management / What database is recommend? corymathews 2009-09-16T18:16:57Z 2009-09-16T18:16:57Z <p>I would agree that Oracle is probably a bit much, however since you gave so little details I cannot really say. I would recommend MySQL and it would probably work well and be nice to the budget however you need to give more information.</p> http://stackoverflow.com/questions/1433971/select-from-table-or-select-id-field1-field2-field3-from-table-best-practic/1434012#1434012 0 Answer by corymathews for Select * from table OR select id,field1, field2, field3 from table - best practice? corymathews 2009-09-16T16:17:33Z 2009-09-16T16:17:33Z <p>Always specify the columns you want and only the ones you want. Returning extra data will slow down the queries. Even if you want every column you should specify every column never use * as it is slower.</p> http://stackoverflow.com/questions/1433768/why-does-floated-div-sometimes-inherit-the-margin-of-the-following-element/1433898#1433898 0 Answer by corymathews for Why does floated div sometimes inherit the margin of the following element? corymathews 2009-09-16T16:00:09Z 2009-09-16T16:00:09Z <p>Not sure as to why a browser would render like this. I gave it a couple tries and found that Opera and FF both render it wrong. While IE7 render it correctly.</p> <p>My knowledge of CSS would say that the div should float to the left and the second div just be 200px below the top basically ignoring that the first div even exists. </p> <p>By adding a clear:left to the second div giving you</p> <pre><code>&lt;div style="margin-top: 200px; clear:both;"&gt;div with big top margin&lt;/div&gt; </code></pre> <p>It would render correctly in Opera and FF however now its wrong in IE7. IE7 adds extra space now. It displays it 200px below the box instead of from the top.</p> http://stackoverflow.com/questions/1561555/c-creating-a-log-system/1561788#1561788 Comment by corymathews on C# Creating a log system corymathews 2009-11-30T14:47:06Z 2009-11-30T14:47:06Z It will not tell me the error given however it will tell me the query crashed and I log what the values given to the query were. I have never had one that could not be reproduced. http://stackoverflow.com/questions/1773275/how-do-you-globally-modify-page-output-sent-from-iis-without-modifying-the-page-s/1775161#1775161 Comment by corymathews on How do you globally modify page output sent from IIS without modifying the page source? corymathews 2009-11-23T17:18:01Z 2009-11-23T17:18:01Z Interesting stuff here, reading into it more. Thanks. http://stackoverflow.com/questions/1773275/how-do-you-globally-modify-page-output-sent-from-iis-without-modifying-the-page-s/1773291#1773291 Comment by corymathews on How do you globally modify page output sent from IIS without modifying the page source? corymathews 2009-11-20T21:18:22Z 2009-11-20T21:18:22Z just did this a few weeks back. It was something pretty basic before but the one now is much more difficult but worth trying. http://stackoverflow.com/questions/1772069/best-practices-for-how-to-layer-a-asp-net-c-web-app/1772076#1772076 Comment by corymathews on Best practices for how to Layer a ASP.NET/C# web app corymathews 2009-11-20T17:37:16Z 2009-11-20T17:37:16Z &quot;lures developers into creating monster pages that talk to all layers and services simultaneously&quot; Thats one of the problems I am trying to solve here. http://stackoverflow.com/questions/1149597/best-practices-for-using-in-c/1149631#1149631 Comment by corymathews on Best practices for using @ in C# corymathews 2009-11-19T18:56:02Z 2009-11-19T18:56:02Z I tend to use this all the time. Much easier then escaping the characters. http://stackoverflow.com/questions/1315275/how-to-get-round-corner-textbox-using-jquery-without-images/1315307#1315307 Comment by corymathews on How to get round corner textbox using jquery without images corymathews 2009-11-18T19:13:26Z 2009-11-18T19:13:26Z I really hate seeing these &quot;pure css&quot; crap. Using -moz or -webkit is not &quot;pure&quot; css. Its crap. http://stackoverflow.com/questions/1675689/what-c-features-would-be-removed-if-backwards-compatibility-were-not-an-issue/1675905#1675905 Comment by corymathews on What C# features would be removed if backwards compatibility were not an issue? corymathews 2009-11-17T14:21:14Z 2009-11-17T14:21:14Z source or article on this? http://stackoverflow.com/questions/1725067/error-session-state-can-only-be-used-when-enablesessionstate-is-set-to-true/1725177#1725177 Comment by corymathews on Error "Session state can only be used when enableSessionState is set to true" corymathews 2009-11-12T20:39:45Z 2009-11-12T20:39:45Z I did try this one of the previous times it happened and there was no change. same error http://stackoverflow.com/questions/1725067/error-session-state-can-only-be-used-when-enablesessionstate-is-set-to-true Comment by corymathews on Error "Session state can only be used when enableSessionState is set to true" corymathews 2009-11-12T20:28:36Z 2009-11-12T20:28:36Z @David lol ye did that after the first time 100 were sent. @irishCieftain will have that up soon. http://stackoverflow.com/questions/1675317/visual-defects-on-scrolling-to-div Comment by corymathews on Visual Defects on Scrolling to Div corymathews 2009-11-11T16:35:50Z 2009-11-11T16:35:50Z just fyi your buttons have a scrollbar in opera. http://stackoverflow.com/questions/1716266/javascript-document-getelementbyid-slow-performance/1716327#1716327 Comment by corymathews on JavaScript: document.getElementById slow performance? corymathews 2009-11-11T16:34:16Z 2009-11-11T16:34:16Z this is still a good point. For whatever reason I had always used classes but I had not thought about this performance penalty before. Good to know. http://stackoverflow.com/questions/1716266/javascript-document-getelementbyid-slow-performance Comment by corymathews on JavaScript: document.getElementById slow performance? corymathews 2009-11-11T16:32:14Z 2009-11-11T16:32:14Z @fahad jQuery is slower if he is worried about speed then that would not be a good choice. http://stackoverflow.com/questions/9033/hidden-features-of-c/9581#9581 Comment by corymathews on Hidden Features of C#? corymathews 2009-11-04T19:44:05Z 2009-11-04T19:44:05Z &quot;things you didn't know about C# until recently despite thinking you already knew everything&quot; +1 http://stackoverflow.com/questions/1645615/what-is-the-use-of-brainfuck/1645660#1645660 Comment by corymathews on What Is The Use Of Brainfuck corymathews 2009-10-29T21:51:40Z 2009-10-29T21:51:40Z I was going to say to fuck with your brain, but close enough. http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185181#185181 Comment by corymathews on What is the best comment in source code you have ever encountered? corymathews 2009-10-22T21:03:29Z 2009-10-22T21:03:29Z Dammit Guilty..