Guest User

Untitled

a guest
Mar 9th, 2018
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. From - Sat Oct 20 20:36:42 2007
  2. X-Account-Key: account2
  3. X-UIDL: GmailId115c06490b9ab9d8
  4. X-Mozilla-Status: 0001
  5. X-Mozilla-Status2: 00000000
  6. X-Mozilla-Keys:
  7. Delivered-To: djberg96@gmail.com
  8. Received: by 10.78.81.6 with SMTP id e6cs174310hub;
  9. Sat, 20 Oct 2007 19:29:19 -0700 (PDT)
  10. Received: by 10.141.34.12 with SMTP id m12mr1709715rvj.1192933757015;
  11. Sat, 20 Oct 2007 19:29:17 -0700 (PDT)
  12. Return-Path: <ruby-talk-admin@ruby-lang.org>
  13. Received: from carbon.ruby-lang.org (carbon.ruby-lang.org [221.186.184.68])
  14. by mx.google.com with ESMTP id l17si6750227rvb.2007.10.20.19.28.48;
  15. Sat, 20 Oct 2007 19:29:17 -0700 (PDT)
  16. Received-SPF: pass (google.com: best guess record for domain of ruby-talk-admin@ruby-lang.org designates 221.186.184.68 as permitted sender) client-ip=221.186.184.68;
  17. Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of ruby-talk-admin@ruby-lang.org designates 221.186.184.68 as permitted sender) smtp.mail=ruby-talk-admin@ruby-lang.org
  18. Date: Sat, 20 Oct 2007 19:29:17 -0700 (PDT)
  19. Message-Id: <471ab97d.11588c0a.26bc.fffff718SMTPIN_ADDED@mx.google.com>
  20. Received: from carbon.ruby-lang.org (beryllium.ruby-lang.org [127.0.0.1])
  21. by carbon.ruby-lang.org (Postfix) with ESMTP id 3FBF73C227273;
  22. Sun, 21 Oct 2007 11:27:08 +0900 (JST)
  23. Received: from polis.nbtsc.org (albireo.theinternetco.net [204.10.126.251])
  24. by carbon.ruby-lang.org (Postfix) with ESMTP id 2B2063C227269
  25. for <ruby-talk@ruby-lang.org>; Sun, 21 Oct 2007 11:27:04 +0900 (JST)
  26. Received: from [2001:5c0:954a:2:230:abff:fe02:8d24] (helo=[?X
  27.  
  28. >
  29. > My question is this: Is ruby for me? Moreover, can I develop
  30. > traditional as well as database driven "GUI" apps such as I would in
  31. > Delphi or Visual Studio for that matter? Or is it geared for a
  32. > "Browser" based interface?
  33.  
  34. I write some GUI apps in Ruby. There's some caveats, but nothing I
  35. couldn't work around.
  36.  
  37. Its core is to me at heart unixy -- anything that can be bound in C
  38. is a decent candidate for working with in Ruby. I do so.
  39.  
  40. IDE integration is weak at best. Being a VIM user, this doesn't bug
  41. me at all. I write in GTK with quite a bit of Glade when I'm writing,
  42. so I do a bit of visual UI design, and integrate purely in code. No
  43. click-to-stub-event-handlers for me.
  44.  
  45. Ruby's threading is sometimes uncomfortable to use with GUI toolkits.
  46. It's not pthreaded.
  47.  
  48. I do a lot of web coding. A lot more unix-style shell scripts and
  49. such in ruby. And last, GUIs. But it's a very general language, and
  50. only slightly less general runtime.
  51.  
  52. Then go JRuby, and you have full access to the Java goodness, and the
  53. threading there is much better, though of course you lose a lot of
  54. the unixyness.
  55.  
  56. Aria
Add Comment
Please, Sign In to add comment