Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: jstreich
  • Content: Threads
  • Order by date
  1. jstreich

    JQuery add an element 1/2 opacity

    I have: $(".dragable").draggable({cancel: "a.ui-icon", revert: "invalid", containment: $("#content"), helper: "clone", cursor: "move" }); $(".album, .photos").droppable({ accept: ".dragable", activeClass: "ui-state-highlight", drop: function( event, ui ) { if($(this) !=...
  2. jstreich

    XSLT just sort the XML

    I have a atom file file that looks like <?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <title>Zimbra CIE_Events</title> <generator>Zimbra Atom Feed Servlet</generator> <updated>2009-04-16T15:41:55-05:00</updated> <entry> <title>Culture Cafe...
  3. jstreich

    linking virtual class

    I'm compiling with g++, and I have a abstract class: class listener { public: listener(){} virtual ~listener(){}; virtual void actionPerformed(void* event,void* actor)=0; private: listener(const listener& l){} }; when I try to compile it into a project I get an object...
  4. jstreich

    Batch nae change name

    I have a program (lilypond) that outputs files with names like: joy-parts.midi joy-parts.ps joy-parts.pdf joy-parts-1.midi joy-parts-1.ps joy-parts-1.pdf joy-parts-2.midi ... What I would like to do is write a script to run after running lilypond that would rename (mv) them in mass to be a bit...
  5. jstreich

    Passing in name of FLV

    I'm creating a simple Flash FLV player for a bunch of videos. It been far too long since I've touched Flash, and I can't seem to let the HTML document pass in the contentPath. My actionsctipt (version 3): var passed:String = video == undefined ? "Nothing Passed" : video...
  6. jstreich

    Access Denied

    I've created a user by a grant statement, but when I try to login as the new user I get "ERROR 1045 (28000): Access denied for user " Any ideas what I might have forgoten? http://game-master.us/phpx-3.4.0/
  7. jstreich

    Querying on a long

    I'm working on a CMS, among a lot of other things, but one thing that I want to do is to query the database content of "pages" for links to a specific page. The content is stored in a long, and contains HTML. So, would like to do something like: select pageid from page where content like '%<a...
  8. jstreich

    Top Navagation Bar wandering.

    I have a page, that at last check was xHTML strict (and the CSS validates as well), and shows properly in FF and Opera. I know that IE6 is missing the drop downs, and has PNG issues, but those are small fixes. The issue I can't understand is in IE (even in 7) the menu bad is not where is...
  9. jstreich

    Combine a lot of

    I'm looking to improve the queries I have in a statistics page from a survey. I have a lot of queries that look like: select case when(stream=0) then 'Do not Use, Not Interested' when(stream=1) then 'Do not User, Would Like To' when(stream=2) then 'Use in Some Courses'...
  10. jstreich

    cfcontent image/jpeg not working in img tags

    I have the following code in image.cfm ... If I go to image.cfm I'm served the jpeg file perfectly. If I use it in an image tag it doesn't show up. <cfsilent> ... <cffile action="readbinary" file="C:\CFusionMX7\wwwroot\superman.jpg" variable="binData" /> </cfsilent> <cfcontent...
  11. jstreich

    w3c and cfform

    cf's cfform is generating a xhtml form tag that has an added attribute so that my site doesn't validate. It's really quite a pain, and I was wondering if there was a way around it adding extra attributes that violate the standards, or do I have to re-write the forms as forms and give up the...
  12. jstreich

    Multipule Check Boxes for dynamic records.

    I have a database that is being populated by people filling out a public form. The admin screen will list rows of forms filled out with a check-box before each one. What I want to happen is the admin-user to be able to select multipule records using the check boxes and then click on a button...
  13. jstreich

    Thunderbird MoveMail empties the spool

    I have setup fetchmail to grab e-mail from a few of my addresses, and set ThundBird to use movemail to grab the mail from the spool. Only pet peeve is that it doesn't stay if I set Thunder Bird to auto move - I don't care if the read stuff is moved, but I need the new mail to stay in the spool...
  14. jstreich

    Zip size...

    I've got 3 files that define a 2D map with several layers. The files are simple ASCII text, and they are being zipped together while being output via a ZipOutputStream. The resulting zip is larger than the 3 files would be otherwise for smaller files. I haven't used my program enough to see...
  15. jstreich

    Text and background

    I have a page that has cryptograms on it, and the solutions to the cryptograms are the same color as background so that people who wish to solve the cryptograms can check their answers. Its not ranking as well as I'd think it should. I'm worried that this page might be penalized by search...
  16. jstreich

    Scripting language

    I'm working on a graphical MUD, and I'm thinking about making a scripting (or other meta-) language that will allow a super user/world builder to create a script to attach to an item. When a user uses the item the script is "run". I think I know how I'm going "run them" and I have an idea...
  17. jstreich

    cron opening windows

    How can I get cron to open windows... Typically, all I/O cron does is either piped to a location, piped to dev null or mailed (the typical default) which means that it can't actually launch a window. I want to open a window at a given time to a given display that I have permission to. In...
  18. jstreich

    catching PIDs and killing proper processes

    I just got a video capture card, and am running linux. I want to add cronjobs that record shows, and I like to record as I watch (so I can pause live TV and stuff)... Now the hard part of getting my Linux box up and running with the card is over, but I want to write a couple of scripts and I...
  19. jstreich

    Getting the TTY of a new xterm

    Is there a nice way of getting the TTY of a new xterm on it's creation semi-auto-magically and suppressing the xterms initial prompts? I am trying to write to the window from C/C++, but I need the pts number of the TTY... So how do I find out what TTY is the new one?
  20. jstreich

    Strip HTLM

    Is there a premade Java function that can strip HTML from a string? Or do I have to use regular expressions?

Part and Inventory Search

Back
Top