User rip747 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T04:01:33Z http://stackoverflow.com/feeds/user/31278 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/697122/adding-a-dynamic-image-to-a-pdf-using-coldfusion-and-itext 0 Adding a dynamic image to a PDF using ColdFusion and iText rip747 2009-03-30T13:08:53Z 2009-11-10T20:00:12Z <p>I pieced together some code to insert a dynamic image into a PDF using both <a href="http://www.adobe.com/products/coldfusion/" rel="nofollow">ColdFusion</a> and <a href="http://www.lowagie.com/iText/" rel="nofollow">iText</a>, while filling in some form fields as well. After I got it working and blogged about it, I couldn't help but think that there might be a better way to accomplish this. I'm using the basic idea of this in a production app right now so any comments or suggestion would be most welcomed.</p> <pre><code>&lt;cfscript&gt; // full path to PDF you want to add image to readPDF = expandpath(”your.pdf”); // full path to the PDF we will output. Using creatUUID() to create // a unique file name so we can delete it afterwards writePDF = expandpath(”#createUUID()#.pdf”); // full path to the image you want to add yourimage = expandpath(”dynamic_image.jpg”); // JAVA STUFF!!! // output buffer to write PDF fileIO = createObject(”java”,”java.io.FileOutputStream”).init(writePDF); // reader to read our PDF reader = createObject(”java”,”com.lowagie.text.pdf.PdfReader”).init(readPDF); // stamper so we can modify our existing PDF stamper = createObject(”java”,”com.lowagie.text.pdf.PdfStamper”).init(reader, fileIO); // get the content of our existing PDF content = stamper.getOverContent(reader.getNumberOfPages()); // create an image object so we can add our dynamic image to our PDF image = createobject(”java”, “com.lowagie.text.Image”); // get the form fields pdfForm = stamper.getAcroFields(); // setting a value to our form field pdfForm.setField(”our_field”, “whatever you want to put here”); // initalize our image img = image.getInstance(yourimage); // centering our image top center of our existing PDF with a little margin from the top x = (reader.getPageSize(1).width() - img.scaledWidth()) - 50; y = (reader.getPageSize(1).height() - img.scaledHeight()) / 2 ; // now we assign the position to our image img.setAbsolutePosition(javacast(”float”, y),javacast(”float”, x)); // add our image to the existing PDF content.addImage(img); // flattern our form so our values show stamper.setFormFlattening(true); // close the stamper and output our new PDF stamper.close(); // close the reader reader.close(); &lt;/cfscript&gt; &lt;!— write out new PDF to the browser —&gt; &lt;cfcontent type=”application/pdf” file = “#writePDF#” deleteFile = “yes”&gt; </code></pre> http://stackoverflow.com/questions/1683745/how-does-activerecord-know-to-perform-an-insert-or-update 4 how does activerecord know to perform an insert or update? rip747 2009-11-05T21:27:02Z 2009-11-06T23:38:07Z <p>maybe some ruby experts out there can shed some light on how activerecord know to do an insert or update when calling save(). what is the logic behind it? does it check to see if the primary key is blank or something and if so does an insert, if not an update?</p> http://stackoverflow.com/questions/1684389/whats-the-best-way-to-write-engine-specific-cfml-code/1688573#1688573 1 Answer by rip747 for What's the best way to write engine-specific CFML code? rip747 2009-11-06T16:10:41Z 2009-11-06T16:10:41Z <p>i think a better way to handle this would be to create a cfc for each engine and a matching method name in each cfc. then what you could do is invoke that cfc and run the method depending on the engine. you can use your switch statement in the onapplicationstart() event to set an application wide variable to initialize and store the engine specific cfc. a small example would be:</p> <pre><code>&lt;cfset loc.engine = "adobe"&gt; &lt;cfswitch expression="#Server.ColdFusion.ProductName#"&gt; &lt;cfcase value="Railo"&gt; &lt;cfset loc.engine = "railo"&gt; &lt;/cfcase&gt; &lt;cfcase value="BlueDragon"&gt; &lt;cfset loc.engine = "openbd"&gt; &lt;/cfcase&gt; &lt;/cfswitch&gt; &lt;cfset application.engine = createobject("component", "engines.#loc.engine#").init()&gt; </code></pre> <p>then in your code all you would have to do:</p> <pre><code>&lt;cfset myvar = application.engine.somemethod(arguments)&gt; </code></pre> <p>granted it's still not the prettiest solution, but at least you will be containing all the engine specific code in one place and not littering your codebase with switch logic.</p> http://stackoverflow.com/questions/1675085/coldfusion-scheduled-tasks-how-to-secure-when-using-cflogin/1675807#1675807 3 Answer by rip747 for ColdFusion scheduled tasks - how to secure when using <cflogin>? rip747 2009-11-04T18:42:08Z 2009-11-05T20:26:35Z <p>leave the schedule tasks in their own folder like you currently have it off the root of the site.</p> <p>create an application.cfc in the scheduletasks folder that extends the one in the apps directory like so:</p> <pre><code>&lt;cfcomponent extends="/.apps/application"&gt; </code></pre> <p>overload the onrequeststart method and put in your authentication like so:</p> <pre><code>&lt;cffunction name="onRequestStart" returntype="void" access="public" output="false"&gt; &lt;cfargument name="targetPage" type="any" required="true"&gt; &lt;cfif not structkeyexists(url, "access") or not url.access eq application.ApplicationName&gt; &lt;cflocation url="/" addtoken="false"&gt; &lt;/cfif&gt; &lt;/cffunction&gt; </code></pre> <p>this is VERY basic security but will get the job done. customize to your liking.</p> http://stackoverflow.com/questions/1661332/coldfusion-crud/1662396#1662396 1 Answer by rip747 for ColdFusion CRUD rip747 2009-11-02T16:50:18Z 2009-11-02T16:50:18Z <p>i would strongly suggest you check out <a href="http://cfwheels.org" rel="nofollow">cfwheels</a>. read the documentation, it's built for doing such crud applications and has an amazing set of features and will save you a lot of time. as for the interface, there are many jquery plugins out there that can handle this. i suggest looking at <a href="http://www.ajaxrain.com" rel="nofollow">ajaxrain</a> and find a plugin you like</p> http://stackoverflow.com/questions/1419397/rubyodbc-cannot-allocate-sqlhenv 0 RubyODBC Cannot allocate SQLHENV rip747 2009-09-14T02:01:04Z 2009-11-02T13:56:35Z <p>I'm trying to connect to SQL Server on Ubuntu 9.04 using Ruby. I translated and followed all the steps outlined in getting OSX talking to SQL Server from here:</p> <p><a href="http://toolmantim.com/articles/getting%5Frails%5Ftalking%5Fto%5Fsqlserver%5Fon%5Fosx%5Fvia%5Fodbc" rel="nofollow">http://toolmantim.com/articles/getting_rails_talking_to_sqlserver_on_osx_via_odbc</a></p> <p>Everything is working on the FreeTDS and unixODBC end. I can see and query the database using tsql.</p> <p>When I try to access the database from Ruby using IRB I get the following error:</p> <p>DBI::DatabaseError : INTERN (0) [RubyODBC] Cannot allocate SQLHENV</p> <p>Has anyone run into this and what can I do to solve this?</p> http://stackoverflow.com/questions/1640380/is-coldfusion-more-than-a-presentation-technology/1643410#1643410 0 Answer by rip747 for Is Coldfusion more than a presentation technology? rip747 2009-10-29T12:34:38Z 2009-10-29T12:34:38Z <p>Riding on Antony's suggestions, he forgot to mention another MVC framework, <a href="http://cfwheels.org" rel="nofollow">ColdFusion on Wheels!</a> We're rapidly approaching a 1.0 release by next month and have an active community developing a slew of plugins. With built a ORM that follows Rails' design, it's easy to pick up. Check it out and give us some feedback.</p> http://stackoverflow.com/questions/1423811/register-new-mime-type-in-coldfusion-java 1 Register new mime-type in ColdFusion (Java) rip747 2009-09-14T20:42:34Z 2009-09-15T13:10:56Z <p>My users are going to be uploading files with a .EXP extension. In ColdFusion on Windows 2003 I'm using getPageContext().getServletContext().getMimeType() to make sure that the file that they upload is of the correct mime-type, which will be text/plain. The issue I'm having is that no matter where I register the mime-type on the server, getPageContext().getServletContext().getMimeType() will return blank since it doesn't know about the .EXP file extension. What is the trick to get ColdFusion to see this file extension.</p> http://stackoverflow.com/questions/1423811/register-new-mime-type-in-coldfusion-java/1427025#1427025 1 Answer by rip747 for Register new mime-type in ColdFusion (Java) rip747 2009-09-15T12:56:28Z 2009-09-15T12:56:28Z <p>FINALLY!!!!</p> <p>In order for getPageContext().getServletContext().getMimeType() to recognize the new filetype, you must edit the file:</p> <pre><code>&lt;ColdFusion-home&gt;\runtime\lib\mime.types </code></pre> <p>In my case this file was located at:</p> <pre><code>C:\ColdFusion8\runtime\lib\mime.type </code></pre> <p>I opened file file and found this line:</p> <pre><code>text/plain asc txt </code></pre> <p>All I had to do was add my extension to the end like so:</p> <pre><code>text/plain asc txt exp </code></pre> <p>Then I restart the ColdFusion service and invoking getPageContext().getServletContext().getMimeType() return text/plain.</p> http://stackoverflow.com/questions/1419397/rubyodbc-cannot-allocate-sqlhenv/1419451#1419451 0 Answer by rip747 for RubyODBC Cannot allocate SQLHENV rip747 2009-09-14T02:29:44Z 2009-09-14T02:29:44Z <p>Go fig that I actually got this working after submitting my question. What I ended up doing was uninstall libdbd-odbc-ruby and libdbi-ruby and then reinstalling them by installing libdbi-ruby first and then installing libdbd-odbc-ruby. I guess when I installed them before, something must of messed up.</p> http://stackoverflow.com/questions/1344430/create-a-mock-request-that-cffile-actionupload-will-process 3 Create a mock request that cffile action=upload will process rip747 2009-08-28T00:23:55Z 2009-08-30T03:16:49Z <p>I'm writing an upload function for <a href="http://cfwheels.org" rel="nofollow">ColdFusion of Wheels</a> and need to unit test it once it's finished. The problem I'm having though is that I have no idea on how to create a mock multi-part form post in ColdFusion that I can use in my unit tests.</p> <p>What I would like to be able to do is create the mock request simulating a file being uploaded that cffile could then process and I could check against.</p> <p>I saw in the <a href="http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags%5Fg-h%5F10.html#3989813" rel="nofollow">online ColdFusion help</a>, an example of creating such a request using cfhttp, however it has to post to another page which kind of defeats that whole purpose.</p> http://stackoverflow.com/questions/1235551/how-can-i-tell-if-a-user-belongs-to-an-role-in-active-directory-using-coldfusio/1239926#1239926 5 Answer by rip747 for How can I tell if a user belongs to an role in active directory - using ColdFusion rip747 2009-08-06T16:09:16Z 2009-08-06T16:09:16Z <p>the only way to do this is to use cflap and query the active directory server to get a list of groups. after you've gotten the list, you will need to parse it to see if that user belongs to the group in question. below is some code i wrote with some comments for the people at work. values have been changed to protect the innocent.</p> <pre><code>&lt;!--- getting the user login id ---&gt; &lt;cfset variables.thisuser = ListLast(cgi.AUTH_USER, "\")&gt; &lt;!--- this is the group they must be a memberof ---&gt; &lt;cfset variables.groupname = "CN=&lt;the group to search for&gt;"&gt; &lt;!--- list of all groups that the user belongs to, will be populated later ---&gt; &lt;cfset variables.grouplist = ""&gt; &lt;cftry&gt; &lt;cfldap action="query" name="myldap" attributes="memberOf" start="OU=&lt;your ou&gt;,DC=&lt;your dc&gt;,DC=&lt;your dc&gt;" scope="subtree" filter="(sAMAccountName=#variables.thisuser#)" server="&lt;your AD server ip&gt;" port="&lt;your AD server port&gt;" username="&lt;network login if required&gt;" password="&lt;network password if required&gt;"&gt; &lt;cfset variables.grouplist = myldap.memberOf&gt; &lt;cfcatch&gt; &lt;/cfcatch&gt; &lt;/cftry&gt; &lt;cfif FindNoCase(variables.groupname, variables.grouplist)&gt; &lt;cfcookie name="SecurityCookieName" value=""&gt; &lt;/cfif&gt; </code></pre> http://stackoverflow.com/questions/1086994/instructions-for-setting-up-iis-and-jruby 3 Instructions for setting up IIS and jRuby rip747 2009-07-06T13:34:06Z 2009-07-22T15:53:42Z <p>Does anyone have clear instruction for setting up jRuby to work with IIS.</p> <p>Edit:</p> <p>What I'm looking for is step by step instructions for getting a Ruby on Rails application working on Windows using IIS and jRuby. The reason being is because I can't find anything other then "use Linux" when asking the question out in the wild. For most people Windows is the primary development and deployment environment so using a Linux based server is out of the question. Also IIS is included with Windows and provide superior integration with Active Directory so using Apache is out of the question also.</p> <p>Last thing is using war files is a nightmare, please include instructions on how to deploy a rails apps by just copying the files or anything other then using war files.</p> http://stackoverflow.com/questions/1089121/is-it-possible-somehow-to-exclude-files-with-cfdirectory/1091866#1091866 4 Answer by rip747 for Is it possible somehow to exclude files with cfdirectory? rip747 2009-07-07T11:45:20Z 2009-07-07T11:45:20Z <p>The filter attribute is useless if you're trying to do a an exclusion. Case in point: Just yesterday I wanted to use cfdirectory to grab all the subdirectories but <strong>EXLCUDE</strong> any directory that started with a period "." so that I could exclude things like ".svn" and ".git". Needless to say I searched all over the place and couldn't find an answer.</p> <p>In the end I ended up just using some conditional logic in my loop:</p> <pre><code>&lt;cfloop query="mydir"&gt; &lt;cfif left(name, 1) neq "."&gt; &lt;!--- do some code ---&gt; &lt;/cfif&gt; &lt;/cfloop&gt; </code></pre> <p>Which got the job done. Of course I could of used a QoQ, but to me adding all that overhead to filter out directories that began with a period seemed silly.</p> <p>Bottom line is that, yes, we're screwed when it comes to exclusion filtering with cfdirectory, but there's no reason you can't use your imagination and a little bit of code to get the results that you want.</p> http://stackoverflow.com/questions/1065757/using-different-version-of-itext-with-coldfusion/1069814#1069814 0 Answer by rip747 for Using different version of iText with ColdFusion rip747 2009-07-01T15:28:22Z 2009-07-01T15:28:22Z <p>if what you want is the cf8 functionality of cfdocument, then there might be an easier way. remember that <a href="http://www.getrailo.org/" rel="nofollow">railo</a> and <a href="http://www.openbluedragon.org/" rel="nofollow">openbd</a> both have cfdocument functionality that is on par with cf8 and both are free engines. what you could do is download and install one of these engines onto the same server or a different one if desired. then write a webservice within railo or openbd that wraps the cfdocument functionality and returns the pdf to you.</p> <p>it's not the prettiest solution, but neither is refactoring itext or hacking the itext version that came with cf.</p> http://stackoverflow.com/questions/357212/rails-convert-html-to-pdf 7 Rails: Convert HTML to PDF? rip747 2008-12-10T19:12:55Z 2009-06-30T10:14:27Z <p>What is the best and easiest way of taking HTML and converting it into a PDF, similar to use CFDOCUMENT on ColdFusion?</p> <p><strong>UPDATE:</strong> I really appreciate all the comments and suggestions that people have given so far, however I feel that people leaving their answers are missing the point.</p> <p>1) the solution has to be free or open sourced. one person suggested using pricexml and the other pd4ml. both of these solutions costs money (pricexml costing an arm and a leg) which i'm not about the fork over.</p> <p>2) they must be able to take in html (either from a file, url or a string variable) and then produce the pdf. libraries like prawn, rprf, rtex are produced using their own methods and not taking in html.</p> <p>please don't think i'm ungrateful for the suggestions, it's just that pdf generation seems like a really problem for people like me who use ColdFusion but want to convert to Rails.</p> http://stackoverflow.com/questions/977915/how-to-get-css-property-of-a-dom-element-server-side/987564#987564 1 Answer by rip747 for How to get css property of a DOM element server-side? rip747 2009-06-12T16:10:48Z 2009-06-16T12:28:35Z <p>your answer is extremely general and it's very hard to understand what exactly you want to do. could you possibly provide a code example.</p> <p>if all you want to do is add a class to an element based off of some server side logic, then just do:</p> <pre><code>&lt;a href="" style="&lt;cfif a eq a&gt;myclass&lt;/cfif&gt;"&gt;&lt;/a&gt; </code></pre> <p><strong>EDIT:</strong></p> <p>Henry would like to determine that the color of an element (eg: #title) and then run some coldfusion based on what the color is:</p> <p>The best way I could figure on doing this would be on the client end you would use jQuery to determine the color and call an ajax request based on it:</p> <pre><code>$(function(){ var color = $("#title").css("color"); if(color == "blue") { $("#my-code-container").load("my-logic.cfm"); } }); </code></pre> http://stackoverflow.com/questions/1000639/coldfusion-class-definition-error-where-is-the-problem/1001093#1001093 0 Answer by rip747 for Coldfusion Class definition error. Where is the problem? rip747 2009-06-16T12:14:27Z 2009-06-16T12:14:27Z <pre><code>&lt;cffunction name="init" access="public" hint="constructor" output="false" returntype="UserGateway"&gt; </code></pre> <p>should be:</p> <pre><code>&lt;cffunction name="init" access="public" hint="constructor" output="false" returntype="Any"&gt; </code></pre> http://stackoverflow.com/questions/950563/how-to-find-detect-any-textarea-in-page-using-jquery/950768#950768 3 Answer by rip747 for How to find/detect any textarea in page using jQuery? rip747 2009-06-04T14:00:00Z 2009-06-11T12:12:57Z <p>To expand on karim79 answer.</p> <p>From the <a href="http://docs.jquery.com/Frequently%5FAsked%5FQuestions#How%5Fdo%5FI%5Ftest%5Fwhether%5Fan%5Felement%5Fexists.3F" rel="nofollow">jQuery docs page</a>: Note: It isn't always necessary to test whether an element exists. The following code would show the item if it exists, and do nothing (no errors) if it did not.</p> <p>Which that means is that you can just do:</p> <pre><code>$(function(){ $("textarea").each(function(i){ this.enableTinyMCE(); }) }) </code></pre> <p><strong>Edit:</strong></p> <p>There is actually a jQuery plugin being developed for this purpose. I would download and try out the plugin and contribute to it's development if you can.</p> <p><a href="http://dev.jquery.com/wiki/Plugins/tinyMCE" rel="nofollow">jq-tinyMCE</a></p> http://stackoverflow.com/questions/970817/how-can-i-clean-html-tags-out-of-a-coldfusion-string/977035#977035 0 Answer by rip747 for How can I clean HTML tags out of a ColdFusion string? rip747 2009-06-10T17:29:11Z 2009-06-10T17:29:11Z <p><a href="http://www.cflib.org" rel="nofollow">cflib</a> is your friend: <a href="http://www.cflib.org/udf/stripHTML" rel="nofollow">stripHTML</a></p> http://stackoverflow.com/questions/946533/replacing-a-substring-using-regular-expressions/947154#947154 1 Answer by rip747 for Replacing a substring using regular expressions rip747 2009-06-03T20:49:16Z 2009-06-03T20:49:16Z <p>Why wouldn't you do this on the frontend with a library like <a href="http://jquery.com/" rel="nofollow">jQuery</a>?</p> <pre><code>$(function(){ $("a[href^=mailto]").click(function(){ // place the code you want to execute here }) }); </code></pre> http://stackoverflow.com/questions/942664/model-glue-and-railo-application-cfc/944375#944375 0 Answer by rip747 for Model Glue and Railo Application.cfc rip747 2009-06-03T12:10:14Z 2009-06-03T12:10:14Z <p>I would log this as a bug in the <a href="https://jira.jboss.org/jira/browse/RAILO" rel="nofollow">railo bug tracker</a>. They are usually pretty good at getting these bugs resolved so that popular coldfusion frameworks work on their platform.</p> http://stackoverflow.com/questions/887078/coldfusion-8-scheduler-not-rescheduling-task/887964#887964 3 Answer by rip747 for Coldfusion 8 scheduler not rescheduling task rip747 2009-05-20T13:39:26Z 2009-06-01T15:00:25Z <p>not for nothing, but i've never seen anything like this with cf8. are you sure that you have the latest hotfix and jvm installed? this might have been something in cf8 that was fixed in 8.01.</p> <p><a href="http://kb2.adobe.com/cps/403/kb403781.html" rel="nofollow">hotfix 2 for cf8.01</a></p> <p><a href="http://kb2.adobe.com/cps/402/kb402604.html#CF801" rel="nofollow">list of all hotfixes and updates for cf8.01</a></p> <p><a href="http://kb2.adobe.com/cps/403/kb403070.html" rel="nofollow">hotfix 3 for cf8</a></p> <p><a href="http://kb2.adobe.com/cps/402/kb402604.html#CF8" rel="nofollow">list of all hotfixes and updates for cf8</a></p> <p><a href="http://java.sun.com/javase/downloads/index.jsp" rel="nofollow">latest jvm</a></p> <p><a href="http://stackoverflow.com/questions/798491/upgrading-the-jre-used-by-coldfusion/798852#798852">upgrade instruction for jvm</a></p> <p>If you suspect that it's an uncaught exception causing the issue, then might I suggest logging portions of the process. Case in point, I had a similar problem with a scheduled task where it would just bottom out for no reason (never had the reschedule problem though). What I ended up doing to diagnose the problem was use cflog to write out portions of the process as they completed. This particular task too about 4 minutes to complete but ran through about 200 portions (it was a mass emailer for a bunch of clients).</p> <p>I logged the when the portion started and completed along with how log it took. By doing so, i could see what portion would trip up the whole process and knew where to focus my attention.</p> http://stackoverflow.com/questions/889272/how-do-you-use-cfqueryparam-in-the-order-by-clause/892806#892806 3 Answer by rip747 for How do you use cfqueryparam in the ORDER BY clause? rip747 2009-05-21T12:57:48Z 2009-05-21T13:22:08Z <p>I'll just expand on Aaron's answer. One of the things that I do is to use listfindnocase() to make sure that the arguments passed to the order by clause are valid:</p> <pre><code>&lt;cfset variables.safeSortColumn = "name"&gt; &lt;cfset variables.safeSortOrder = "desc"&gt; &lt;cfparam name="url.sortcolumn" type="string" default="#variables.safeSortColumn#"&gt; &lt;cfparam name="url.sortorder" type="string" default="#variables.safeSortOrder#"&gt; &lt;cfif listfindnocase("name,age,address", url.sortcolumn)&gt; &lt;cfset variables.safeSortColumn = url.sortcolumn&gt; &lt;/cfif&gt; &lt;cfif listfindnocase("desc,asc", url.sortorder)&gt; &lt;cfset variables.safeSortOrder = url.sortorder&gt; &lt;/cfif&gt; &lt;cfquery&gt; select * from mytable order by #variables.safeSortcolumn# #variables.safeSortorder# &lt;/cfquery&gt; </code></pre> http://stackoverflow.com/questions/889968/preserving-input-value-of-typefile-in-coldfusion-on-postback/892706#892706 4 Answer by rip747 for Preserving input value of type="file" in Coldfusion on postback rip747 2009-05-21T12:33:06Z 2009-05-21T13:08:16Z <p>This is by design in all browsers for security reasons. They is no way for your to insert the value for a file field. </p> http://stackoverflow.com/questions/855066/is-there-a-solution-to-this-cfqueryparam-memory-leak/858210#858210 0 Answer by rip747 for Is there a solution to this cfqueryparam memory leak? rip747 2009-05-13T14:16:32Z 2009-05-13T14:16:32Z <p>It's been well documented all over the community that CF will not release memory until after the request is finished. Even calling the GC directly has no effect on freeing up memory during a running request. Don't know if this is by design or a bug.</p> <p>I haven't a clue why you would even want to do something like this in CF anyways. There is no reason for you to be inserting 80K rows into a database using CF, no matter which database engine you're using.</p> <p>Now, if there is a reason that you need to do this, such as you're getting the data from say an uploaded CSV or XML file; MSSQL has a TON of better ways to do this and workarounds.</p> <p>One approach that I have done over the years is to create a stored procedure in MSSQL that calls <a href="http://msdn.microsoft.com/en-us/library/aa174646.aspx" rel="nofollow">BCP</a> or <a href="http://msdn.microsoft.com/en-us/library/aa225968.aspx" rel="nofollow">BULK INSERT</a> to read a file that contains the data to insert.</p> <p>The best thing about this approach is that the only thing CF is doing is handling the file upload and MMSQL is doing all the work processing the file. MSSQL has no problems inserting millions of rows using BCP or BULK INSERT and will be <strong>INFINITELY</strong> faster then anything CF can process.</p> http://stackoverflow.com/questions/845762/query-of-queries-outside-coldfusion/845821#845821 2 Answer by rip747 for Query of queries outside ColdFusion rip747 2009-05-10T18:31:37Z 2009-05-10T18:31:37Z <p>i can't for python, ruby, perl, php. however .Net has something called <a href="http://msdn.microsoft.com/en-us/netframework/aa904594.aspx" rel="nofollow">LINQ</a> which is essentially QoQ on steroids.</p> http://stackoverflow.com/questions/746151/add-svn-repo-to-existing-git-repo 0 Add svn repo to existing git repo? rip747 2009-04-14T02:38:59Z 2009-05-08T15:30:12Z <p>I know you can track a svn repo with git by using git svn init, however that is for if you want to create a brand new repo.</p> <p>My situation is that I currently already have an existing git repo and want to track the trunk of a svn repo by making it a remote branch in my current git repo.</p> <p>Any suggestions?</p> <p><strong>UPDATE:</strong></p> <p>After searching last night, I have finally found the answer:</p> <p><a href="http://i-nz.net/2009/01/15/selective-import-of-svn-branches-into-a-gitgit-svn-repository/" rel="nofollow">http://i-nz.net/2009/01/15/selective-import-of-svn-branches-into-a-gitgit-svn-repository/</a></p> <p>It seems that you have to actually go in and manually edit the .git/config file in order to add an svn branch to an existing git repo. So according to these instructions I would have to add an entry for each branch. </p> http://stackoverflow.com/questions/746151/add-svn-repo-to-existing-git-repo/840411#840411 1 Answer by rip747 for Add svn repo to existing git repo? rip747 2009-05-08T15:30:12Z 2009-05-08T15:30:12Z <p>After searching last night, I have finally found the answer:</p> <p><a href="http://i-nz.net/2009/01/15/selective-import-of-svn-branches-into-a-gitgit-svn-repository/" rel="nofollow">http://i-nz.net/2009/01/15/selective-import-of-svn-branches-into-a-gitgit-svn-repository/</a></p> <p>It seems that you have to actually go in and manually edit the .git/config file in order to add an svn branch to an existing git repo. So according to these instructions I would have to add an entry for each branch. </p> http://stackoverflow.com/questions/839971/coldfusion-inserting-form-field-into-sql-server-money/840316#840316 2 Answer by rip747 for ColdFusion - Inserting form field into SQL Server MONEY rip747 2009-05-08T15:14:25Z 2009-05-08T15:14:25Z <pre><code>&lt;cfqueryparam value="#theamount#" cfsqltype="cf_sql_money"&gt; </code></pre> <p>that's what I use and I've never had a problem. if you can post your query and some stub data, it would help to determine the cause better.</p> http://stackoverflow.com/questions/1683745/how-does-activerecord-know-to-perform-an-insert-or-update/1685243#1685243 Comment by rip747 on how does activerecord know to perform an insert or update? rip747 2009-11-06T15:52:58Z 2009-11-06T15:52:58Z very nice answer and i think you for the time to took for you to write it. i'm also interested in knowing what would set @nw_record to false? would performing a find do that if it pulls a record from the database? http://stackoverflow.com/questions/1683745/how-does-activerecord-know-to-perform-an-insert-or-update/1683785#1683785 Comment by rip747 on how does activerecord know to perform an insert or update? rip747 2009-11-05T21:54:17Z 2009-11-05T21:54:17Z i have been reading through the docs and code and can't wrap my head around it. http://stackoverflow.com/questions/1675085/coldfusion-scheduled-tasks-how-to-secure-when-using-cflogin/1675807#1675807 Comment by rip747 on ColdFusion scheduled tasks - how to secure when using <cflogin>? rip747 2009-11-05T20:26:08Z 2009-11-05T20:26:08Z good catch henry. i screwed up. it should be &lt;cfcomponent extends=&quot;/.app.application&quot;&gt; i will update my answer http://stackoverflow.com/questions/1661332/coldfusion-crud/1662396#1662396 Comment by rip747 on ColdFusion CRUD rip747 2009-11-02T21:38:28Z 2009-11-02T21:38:28Z cfwheels was designed to work in all types of environments, especially shared hosting. heck, one of the core members of our group owns Alurium hosting. http://stackoverflow.com/questions/1524029/socket-connection-with-coldfusion Comment by rip747 on Socket connection with coldfusion rip747 2009-10-06T15:41:55Z 2009-10-06T15:41:55Z not to sound like a jerk, but first off we're going to need some information. what version of coldfusion are you using? where did you get this function? can we see the source? what version of the jvm are you using with coldfusion? http://stackoverflow.com/questions/1467931/can-cf-session-management-be-enabled-only-in-certain-subfolders/1468129#1468129 Comment by rip747 on Can CF session management be enabled only in certain subfolders? rip747 2009-10-01T17:55:51Z 2009-10-01T17:55:51Z you don't need to use an applicationproxy. to extend the application.cfc in root directory from an application.cfc in a subfolder, you just have to do extend=&quot;./application&quot;&gt; http://stackoverflow.com/questions/1436476/internship-in-coldfusion/1437234#1437234 Comment by rip747 on Internship in ColdFusion? rip747 2009-09-23T00:35:33Z 2009-09-23T00:35:33Z give CFWheels some love :) http://stackoverflow.com/questions/1423811/register-new-mime-type-in-coldfusion-java/1427025#1427025 Comment by rip747 on Register new mime-type in ColdFusion (Java) rip747 2009-09-15T13:11:22Z 2009-09-15T13:11:22Z if anyone knows of a way to register a new mime type by using java and not editing the file directly, PLEASE let me know. while this is a fix, it won't be possible to do this on a shared server. http://stackoverflow.com/questions/1423811/register-new-mime-type-in-coldfusion-java/1426230#1426230 Comment by rip747 on Register new mime-type in ColdFusion (Java) rip747 2009-09-15T12:57:08Z 2009-09-15T12:57:08Z trying to invoke GetRequestData() returned and error stating that it was a valid function. http://stackoverflow.com/questions/1423811/register-new-mime-type-in-coldfusion-java/1424089#1424089 Comment by rip747 on Register new mime-type in ColdFusion (Java) rip747 2009-09-14T22:08:12Z 2009-09-14T22:08:12Z i've actually tried that it still doesn't pick it up. http://stackoverflow.com/questions/1344430/create-a-mock-request-that-cffile-actionupload-will-process/1347222#1347222 Comment by rip747 on Create a mock request that cffile action=upload will process rip747 2009-08-28T14:51:59Z 2009-08-28T14:51:59Z thank you for the reference. need to think about this a little more. http://stackoverflow.com/questions/791904/cfinvoke-vs-java-lang-outofmemoryerror-in-coldfusion/1044149#1044149 Comment by rip747 on CFINVOKE vs java.lang.OutOfMemoryError in ColdFusion rip747 2009-08-28T00:36:02Z 2009-08-28T00:36:02Z your post is correct in that force the garbage collector, however it still doesn't help the heap issue when creating many objects since they will not be flagged for garbage collection until after the request is finished. http://stackoverflow.com/questions/1086994/instructions-for-setting-up-iis-and-jruby/1155291#1155291 Comment by rip747 on Instructions for setting up IIS and jRuby rip747 2009-07-27T01:27:38Z 2009-07-27T01:27:38Z another thing to make sure is that the sqlite gem is installed, otherwise you will be casing your tail with errors. issue this command right after installing rails: jruby -S gem install activerecord-jdbcsqlite3-adapter http://stackoverflow.com/questions/1086994/instructions-for-setting-up-iis-and-jruby/1155291#1155291 Comment by rip747 on Instructions for setting up IIS and jRuby rip747 2009-07-24T19:27:24Z 2009-07-24T19:27:24Z make sure that JAVA_HOME is also in your path or will get &quot;The system cannot find the path specified&quot; when trying to run jruby http://stackoverflow.com/questions/1086994/instructions-for-setting-up-iis-and-jruby/1155291#1155291 Comment by rip747 on Instructions for setting up IIS and jRuby rip747 2009-07-22T12:09:35Z 2009-07-22T12:09:35Z ok. i'll forget the war file thing. if you post instructions for getting jruby connected to iis using glassfish, i will accept your answer and give you the bounty. sorry i'm being such a pain about this, but i want a place for people to find these instruction in one place.