Search results

  1. I

    changing priorities

    Do you have any examples for us? :) I'd love to be able to use these classes but can't find decent Java-style docs on them. What I've found looks like it's geared toward the Obj-C guys and requires too much reading. :) As for the interface for Nicer...I know. The scrollbars are kinda whacky...
  2. I

    changing priorities

    Thanks! I love being able to help. I'm hoping I can get Nicer's source up sometime soon. I've got a bit more optimizing and cleaning up to do but it's about as done as I can get it alone. So, anyone think we should start a free-for-all Java thread? I'd love to continue this but I don't...
  3. I

    changing priorities

    I'm assuming it worked or you haven't had time to post back..either way..that's cool. I'm workin' on a new way to display the data so it doesn't "cost" so much. I'm hoping I can ditch the JTable display and go with a JList and custom renderer...we'll see. well, questions or comments are...
  4. I

    changing priorities

    It's here. I haven't downloaded it using a different account so it may or may not work...let me know? see ya :)
  5. I

    changing priorities

    It's too hard to explain...I'll add an example of both to my Project Builder example. :D I'll have it up shortly :)
  6. I

    changing priorities

    I changed the permissions, tar.gzed it and it's up. (thanks!) I'll see if I can't get the Project Builder example up later.
  7. I

    changing priorities

    yeah? oh well, I got OmniWeb and took a look. Nicer is here! (finally!) :D It should work if you use Classic Expander but will not if you use OSX's. I'll tar.gz it and put that up instead when I get a chance. (what were the commands again?) If you like what you see(GUI wise at least) I...
  8. I

    changing priorities

    your page keeps crashing iCab! I disabled Javascript and everything. not even http://www.crashme.com (<-- Caution!) killed iCab...maybe it's just some stupid iCab bug. I'll go download OmniWeb so I can check it out. :)
  9. I

    changing priorities

    Thanks but I've tried it. It uses Apple's NSxxx classes. The documentation on those classes leaves plenty to be desired. Apple made it harder to use by making them(NSxxx) 'start' at java.lang.Object and by giving you no way to mix with awt or swing. In short: not very easy to get into if...
  10. I

    changing priorities

    I'm having serious problems with Swing. I'm attempting to make my program look as "Aquafied" as possible and am suffering for it. I haven't found a good way to give it the stripped look. I've got all these repaint problems and I'm ready to write Apple to tell them where to stick the...
  11. I

    changing priorities

    Okay, I just realized..I did the same exact thing as you're doing now. I started with TextEdit and the command line and my code was kind of messed up because I was trial&error coding...but it worked. Then, I got the dev tools and rewrote the entire thing from almost-scratch and am still at...
  12. I

    Chat Software?

    write your own chat system that works with the boards. If someone asks, "how do I [...]?", the chat software should be able to offer up links to previous posts on the boards. Otherwise you will get people in chat that will spam a question or 3, 6 or 100 people could ask the same question...
  13. I

    changing priorities

    Okay, I don't exactly agree with your style but I must say your code is nice. Comments aplenty and formatted well.. very readable. should be: public class ShellAccess { Process copy; //for a handle. ShellAccess() {} public IOClass startProcess(String command) { try { Runtime r =...
  14. I

    changing priorities

    Glad I could help! Just curious, what are you using to do this?
  15. I

    nice, renice...

    I'm almost done with it. I'm trying to work around a repaint bug(?) and the server I'm using now won't let me upload anything...looking for a new host. Some info can be had at http://www.1avenue.com/thenamethief/ I hope to add more to it in the next couple weeks. Things that *need* to be...
  16. I

    Fetch carbonized

    I hate those unexpected silent quits. I picked up Fetch and it looks great! I'm just hoping it'll be more stable in the next release.
  17. I

    changing priorities

    I'm not sure I understand what you mean and for which set of code you're talking about. While it is true that I don't stick to Java guidelines my code usually works. I'm bad at throwing exceptions. If there's nothing you can do to recover from the exception I return null or false(if return...
  18. I

    changing priorities

    for what you're doing...how 'bout: import java.io.*; public class ShellAccess { Process p; ShellAccess() {} public IOClass startProcess(String command) { //for the initail call. try { Runtime r = Runtime.getRuntime(); p = r.exec(command); p.waitFor(); BufferedReader in...
  19. I

    changing priorities

    I guess it depends on the langauge you want to use. Since I'm using Java I use a simple class to call the commands... import java.io.*; public class ShellAccess { public static String doCommand(String command) { try { Runtime r = Runtime.getRuntime(); String msg = "", emsg =...
  20. I

    changing priorities

    I had considered BeNice but that sounds like it would be a BeOS app. I'm going with Nicer, I think. There should be an update sometime soon now that have I have the dev tools. l8r.
Back
Top