home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 15 Message / 15-Message.zip / UU990925.zip / Uh990924.txt < prev    next >
Text File  |  1999-09-26  |  151KB  |  3,918 lines

  1.  
  2.                    comp.os.os2.programmer.misc      (Usenet)
  3.  
  4.                  Saturday, 18-Sep-1999 to Friday, 24-Sep-1999
  5.  
  6. +----------------------------------------------------------------------------+
  7.  
  8. From: nospam@nospam.com                                 17-Sep-99 11:33:06
  9.   To: All                                               18-Sep-99 01:08:04
  10. Subj: Re: PM window resizing/clipping : seems backwards...
  11.  
  12. From: nospam@nospam.com (Bruce LaZerte)
  13.  
  14. On Fri, 17 Sep 1999 10:33:55, Ian Harvey <ian_harvey@do.not.spam.me> wrote:
  15.  
  16. > case WM_CALCVALIDRECTS:
  17. >    return MRFROMLONG(CVR_ALIGNBOTTOM | CVR_ALIGNLEFT);
  18.  
  19. Works perfectly. That's exactly what I was looking for. 
  20. Many thanks!
  21.  
  22. (this is the most useful list ...)
  23.  
  24. ----------------------
  25. Bruce LaZerte     
  26. Muskoka,Ontario,Canada
  27. freshwat at muskoka dot com    
  28.  
  29. --- WtrGate+ v0.93.p7 sn 165
  30.  * Origin: Origin Line 1 Goes Here (1:109/42)
  31.  
  32. +----------------------------------------------------------------------------+
  33.  
  34. From: SkidMARX@att.net                                  17-Sep-99 16:04:09
  35.   To: All                                               18-Sep-99 01:08:05
  36. Subj: Editor to use with Watcom C++ v11
  37.  
  38. From: SkidMARX@att.net
  39.  
  40. Hello,
  41.  
  42. I just picked up from a friend a copy of Watcom C++ version 11.  Since
  43. Sybase has marked the product as dead he's moving on to VisualAge from
  44. IBM ...
  45.  
  46. Anyway, I'm wondering what editor I should buy for use within the IDE?
  47. It defaults to EPM which is nice, but it has some quirks when used 
  48. with my system.  Namely the various WPS addons like NPS Enhancer, 
  49. Styler/2 ...
  50.  
  51. Any ideas?
  52. Kon?
  53. Mr Ed?
  54. Preditor?
  55.  
  56. Thanks for any info ...
  57. Gregory L. Marx
  58. SkidMARX@att.net
  59.  
  60. PS - I'm experienced using Sibyl/2 from SpeedSoft (a Pascal dev tool) 
  61. but I thought it would be best to pickup a good c++ compiler.  I want 
  62. to be able to help in anyway I can should StarDock get the go ahead 
  63. for the new Warp Client.  Brad Wardell has hinted that they would be 
  64. setting up some kind of Linux-like website for programmers to 
  65. help/share/fix/add and I want to be part of that effort.
  66.  
  67. Is Watcom a good way to go?
  68.  
  69. --- WtrGate+ v0.93.p7 sn 165
  70.  * Origin: Usenet: AT&T WorldNet Services (1:109/42)
  71.  
  72. +----------------------------------------------------------------------------+
  73.  
  74. From: mamodeo@stny.rr.com                               17-Sep-99 15:16:24
  75.   To: All                                               18-Sep-99 04:37:14
  76. Subj: Re: EMXBIND earns its name...
  77.  
  78. From: Marty <mamodeo@stny.rr.com>
  79.  
  80. Ilya Zakharevich wrote:
  81. > [A complimentary Cc of this posting was sent to Marty
  82. > <mamodeo@stny.rr.com>],
  83. > who wrote in article <37E16D4C.EC33C70E@stny.rr.com>:
  84. > > One more side issue:
  85. > > Has anyone else noticed that when you run GCC on a file that takes a long
  86. > > time to compile that the VIO window in which you ran it doesn't like to
  87. > > give up the window focus?  Any ideas why this could happen?
  88. > This happens with many compute-intensive applications (but I could not
  89. > reproduce it with small examples).  I think it is a question of wrong
  90. > priority of the PM thread (?) which is responsible for switching
  91. > windows.
  92. > Somehow long-running foreground VIO application without I/O
  93. > "accumulates" (?) higher priority than this thread.  When you click
  94. > outside the VIO window, this thread is ready-to-run, but of too small
  95. > priority, so it goes into "starved" state.  After each MAXWAIT (from
  96. > config.sys) seconds its priority is bumped up one notch, until it is
  97. > above the priiority of the VIO application,
  98. > On my systems MAXWAIT==3, and I usually need to wait circa 6 sec for
  99. > window switch to happen.
  100. > Ilya
  101.  
  102. That sounds about right.  Does this also explain why, while running some
  103. compute-intensive apps I see VIO programs such as TOP (which is not very
  104. compute-intensive itself) executing very slowly when they are in the
  105. background, but when they are brought to the foreground they execute at
  106. normal speed?
  107.  
  108. > P.S.  Aha, maybe it is a thread in some PM enhancer, not PM itself?
  109. >       I'm using NPSWPS.
  110.  
  111. I don't run any such enhancers myself.  It has to be something internal
  112. to the PM or core OS.
  113.  
  114. - Marty
  115.  
  116. --- WtrGate+ v0.93.p7 sn 165
  117.  * Origin: Usenet: IBM Global Services North -- Burlington, Vermont,
  118. (1:109/42)
  119.  
  120. +----------------------------------------------------------------------------+
  121.  
  122. From: ilya@math.ohio-state.edu                          17-Sep-99 18:33:27
  123.   To: All                                               18-Sep-99 04:37:14
  124. Subj: Re: EMXBIND earns its name...
  125.  
  126. From: ilya@math.ohio-state.edu (Ilya Zakharevich)
  127.  
  128. [A complimentary Cc of this posting was sent to Marty 
  129. <mamodeo@stny.rr.com>],
  130. who wrote in article <37E16D4C.EC33C70E@stny.rr.com>:
  131. > One more side issue:
  132. > Has anyone else noticed that when you run GCC on a file that takes a long
  133. > time to compile that the VIO window in which you ran it doesn't like to
  134. > give up the window focus?  Any ideas why this could happen?
  135.  
  136. This happens with many compute-intensive applications (but I could not
  137. reproduce it with small examples).  I think it is a question of wrong
  138. priority of the PM thread (?) which is responsible for switching
  139. windows.
  140.  
  141. Somehow long-running foreground VIO application without I/O
  142. "accumulates" (?) higher priority than this thread.  When you click
  143. outside the VIO window, this thread is ready-to-run, but of too small
  144. priority, so it goes into "starved" state.  After each MAXWAIT (from
  145. config.sys) seconds its priority is bumped up one notch, until it is
  146. above the priiority of the VIO application,
  147.  
  148. On my systems MAXWAIT==3, and I usually need to wait circa 6 sec for
  149. window switch to happen.
  150.  
  151. Ilya
  152.  
  153. P.S.  Aha, maybe it is a thread in some PM enhancer, not PM itself?
  154.       I'm using NPSWPS.
  155.  
  156. --- WtrGate+ v0.93.p7 sn 165
  157.  * Origin: Usenet: Department of Mathematics, The Ohio State Univers
  158. (1:109/42)
  159.  
  160. +----------------------------------------------------------------------------+
  161.  
  162. From: mark@mna.ca                                       17-Sep-99 11:07:18
  163.   To: All                                               18-Sep-99 06:00:27
  164. Subj: IBM Advanced Interface Design Guide-OS2
  165.  
  166. From: "Mark Nicholson" <mark@mna.ca>
  167.  
  168. From the 1989 IBM Systems Application Architecture Library, this mint book
  169. was written for OS2 programmeris in mind, but is an excellent basic manual
  170. for any one involved with building user interfaces. A nice book to add to
  171. you IBM OS2 collection.
  172.  
  173. http://cgi.ebay.com/aw-cgi/eBayISAPI.dll?ViewItem&item=164690812
  174.  
  175. --- WtrGate+ v0.93.p7 sn 165
  176.  * Origin: Usenet: MNA (1:109/42)
  177.  
  178. +----------------------------------------------------------------------------+
  179.  
  180. From: nospam@nospam.com                                 18-Sep-99 12:01:07
  181.   To: All                                               18-Sep-99 11:03:06
  182. Subj: Re: Editor to use with Watcom C++ v11
  183.  
  184. From: nospam@nospam.com (Bruce LaZerte)
  185.  
  186. On Fri, 17 Sep 1999 16:04:18, SkidMARX@att.net wrote:
  187.  
  188. > Anyway, I'm wondering what editor I should buy for use within the IDE?
  189. > Mr Ed?
  190.  
  191. I'm using MrEd but not with Watcom's IDE...
  192. I believe that it's shareware so you can try it out. 
  193. Last time I looked: http://www.utopia-planitia.de/indexus.html
  194.  
  195. ----------------------
  196. Bruce LaZerte     
  197. Muskoka,Ontario,Canada
  198. freshwat at muskoka dot com    
  199.  
  200. --- WtrGate+ v0.93.p7 sn 165
  201.  * Origin: Origin Line 1 Goes Here (1:109/42)
  202.  
  203. +----------------------------------------------------------------------------+
  204.  
  205. From: lifedata@xxvol.com                                18-Sep-99 15:45:25
  206.   To: All                                               19-Sep-99 06:48:22
  207. Subj: Re: Netlabs statement about the future of OS/2
  208.  
  209. From: lifedata@xxvol.com
  210.  
  211. "Adrian Gschwend" <nospam_ktk@netlabs.org> said:
  212.  
  213. >We all heard it, Stardock is not allowed to release a new OS/2 client. I and
  214. >many other OS/2 users are very disapointed about this.
  215.  
  216. I'd like to register my disappointment with something else.
  217.  
  218. Okay, guys, you're having a total blast bashing Stardock.  Have fun.  Have
  219. lots
  220. of fun.  But the IBM message was NOT a Stardock message.  The IBM message was
  221. that no one, not Stardock, not IBM, not anybody would be doing an OS/2 client.
  222.  
  223. I fail to see how this makes either a great villian out of Stardock or a hero
  224. out of IBM.  Let's face it.  IBM doesn't want a popular client; they want a
  225. "tons-of-money" business system.
  226.  
  227. Jim L
  228. Remove XX from address to Email
  229. More gun laws will cure the nations ills - just like drug laws do.
  230.  
  231.  
  232. --- WtrGate+ v0.93.p7 sn 165
  233.  * Origin: Origin Line 1 Goes Here (1:109/42)
  234.  
  235. +----------------------------------------------------------------------------+
  236.  
  237. From: OS2Guy@WarpCity.com                               18-Sep-99 15:08:02
  238.   To: All                                               19-Sep-99 06:48:22
  239. Subj: Re: Netlabs statement about the future of OS/2
  240.  
  241. From: Tim Martin <OS2Guy@WarpCity.com>
  242.  
  243. lifedata@xxvol.com wrote:
  244.  
  245. > "Adrian Gschwend" <nospam_ktk@netlabs.org> said:
  246. >
  247. > >We all heard it, Stardock is not allowed to release a new OS/2 client. I
  248. and
  249. > >many other OS/2 users are very disapointed about this.
  250. >
  251. > I'd like to register my disappointment with something else.
  252. >
  253. > Okay, guys, you're having a total blast bashing Stardock.  Have fun.  Have
  254. lots
  255. > of fun.  But the IBM message was NOT a Stardock message.  The IBM message
  256. was
  257. > that no one, not Stardock, not IBM, not anybody would be doing an OS/2
  258. client.
  259.  
  260. That's bogus.  IBM made no such message at all.  Brad Wardell
  261. made the statement.  No IBM official made any such statement.
  262.  
  263. > I fail to see how this makes either a great villian out of Stardock or a
  264. hero
  265. > out of IBM.  Let's face it.  IBM doesn't want a popular client; they want a
  266. > "tons-of-money" business system.
  267.  
  268. Which is why they showed Brad Wardell the door and continue TODAY
  269. to release updates, applications and drivers for OS/2 for FREE.  They simply
  270. won't play the game you want and for that, you bash IBM.  You don't
  271. appear to be happy with OS/2 but would YOU be happy with any operating
  272. system?  Not likely.
  273.  
  274. > Jim L
  275. > Remove XX from address to Email
  276. > More gun laws will cure the nations ills - just like drug laws do.
  277.  
  278.  
  279.  
  280.  
  281. --- WtrGate+ v0.93.p7 sn 165
  282.  * Origin: Usenet: Warp City (http://warpcity.com) (1:109/42)
  283.  
  284. +----------------------------------------------------------------------------+
  285.  
  286. From: nospam@nospam.com                                 18-Sep-99 21:46:29
  287.   To: All                                               19-Sep-99 06:48:22
  288. Subj: *.c versus *.cpp and libraries - EMX 
  289.  
  290. From: nospam@nospam.com (Bruce LaZerte)
  291.  
  292. I have a C program that links to two third party libraries of functions.
  293. It compiles fine with the EMXGNU compiler whether I use the *.c or *.cpp 
  294. extension. 
  295.  
  296. (I was just playing around to see what different warnings I would get with 
  297. the GNU C versus the C++ compiler. Each has different warnings...)
  298.  
  299. Anyway I noticed that while the *.obj file compiled as a C program links 
  300. fine with both libraries and produces an executable, when compiled as a C++
  301. program the object file would only link with one of the libraries. The 
  302. functions in the other lib could not be found.   
  303.  
  304. The calls to the linker are the same...
  305.  
  306. Any ideas as to why and what?
  307.  
  308. ----------------------
  309. Bruce LaZerte     
  310. Muskoka,Ontario,Canada
  311. freshwat at muskoka dot com    
  312.  
  313. --- WtrGate+ v0.93.p7 sn 165
  314.  * Origin: Origin Line 1 Goes Here (1:109/42)
  315.  
  316. +----------------------------------------------------------------------------+
  317.  
  318. From: Exovede@ImpaleTheSpammers.Com@Vi...               19-Sep-99 01:05:28
  319.   To: All                                               19-Sep-99 06:48:22
  320. Subj: Re: Netlabs statement about the future of OS/2
  321.  
  322. Message sender: Exovede@ImpaleTheSpammers.Com@Videotron.ca
  323.  
  324. From: Exovede@ImpaleTheSpammers.Com@Videotron.ca (Michel A Goyette)
  325.  
  326. Sat, 18 Sep 1999 19:45:51, lifedata@xxvol.com a écrit:
  327.  
  328. > "Adrian Gschwend" <nospam_ktk@netlabs.org> said:
  329. > >We all heard it, Stardock is not allowed to release a new OS/2 client. I
  330. and
  331. > >many other OS/2 users are very disapointed about this.
  332. > I'd like to register my disappointment with something else.
  333. > Okay, guys, you're having a total blast bashing Stardock.  Have fun.  Have
  334. lots
  335. > of fun.  But the IBM message was NOT a Stardock message.  The IBM message
  336. was
  337. > that no one, not Stardock, not IBM, not anybody would be doing an OS/2
  338. client.
  339.  
  340.     I, for my part, haven't seen the IBM message yet, only the one from 
  341. Brad.  From what I read, it only said the IBM wouldn't allow Stardock 
  342. to put out a new client release because that doesn't fit in their 
  343. strategy (for whatever that means).  THAT'S ALL!!!
  344.  
  345.     Now, if you are in the secret of the gods and know what is their 
  346. strategy, please go on and enlighten us.
  347.  
  348. > I fail to see how this makes either a great villian out of Stardock or a
  349. hero
  350. > out of IBM.  Let's face it.  IBM doesn't want a popular client; they want a
  351. > "tons-of-money" business system.
  352.  
  353.     If that goes through a popular client, they'll sure get there.  Now, 
  354. for some crystal ball readings...Windows 2000 isn't recommended by 
  355. high respectable analysis society (IDC and alike) and IT and managers 
  356. are usually following their opinions (that's why a lot of people are, 
  357. in part, stuck with Windows), Linux is going through a push but 
  358. configuration is still not for the faint of heart.  I guess between 
  359. those two, OS/2 can have a really good chance due to some killer apps 
  360. entering the arena (StarOffice and alike).  ;-)
  361.  
  362. Salut,
  363.  
  364.     Michel (sur OS/2 Warp 4.07)
  365.     ICQ #13376913
  366.     http://pages.infinit.net/exovede
  367.  
  368. --- WtrGate+ v0.93.p7 sn 165
  369.  * Origin: Origin Line 1 Goes Here (1:109/42)
  370.  
  371. +----------------------------------------------------------------------------+
  372.  
  373. From: OS2Guy@WarpCity.com                               18-Sep-99 19:23:24
  374.   To: All                                               19-Sep-99 06:48:23
  375. Subj: Re: Netlabs statement about the future of OS/2
  376.  
  377. From: Tim Martin <OS2Guy@WarpCity.com>
  378.  
  379. Michel A Goyette wrote:
  380.  
  381. > Sat, 18 Sep 1999 19:45:51, lifedata@xxvol.com a écrit:
  382. >
  383. > > "Adrian Gschwend" <nospam_ktk@netlabs.org> said:
  384. > >
  385. > > >We all heard it, Stardock is not allowed to release a new OS/2 client. I
  386. and
  387. > > >many other OS/2 users are very disapointed about this.
  388. > >
  389. > > I'd like to register my disappointment with something else.
  390. > >
  391. > > Okay, guys, you're having a total blast bashing Stardock.  Have fun.  Have 
  392. lots
  393. > > of fun.  But the IBM message was NOT a Stardock message.  The IBM message
  394. was
  395. > > that no one, not Stardock, not IBM, not anybody would be doing an OS/2
  396. client.
  397. >
  398. >         I, for my part, haven't seen the IBM message yet, only the one from
  399. > Brad.
  400.  
  401. There is not message from IBM.  NONE.  All this "OS/2 is dead"
  402. information is being generated by no one but Brad Wardell.
  403.  
  404. > From what I read, it only said the IBM wouldn't allow Stardock
  405. > to put out a new client release because that doesn't fit in their
  406. > strategy (for whatever that means).  THAT'S ALL!!!
  407.  
  408. You may have missed it but in Brad's message he apparently
  409. feels he has the right to speak for IBM because he says, "IBM
  410. has indicated that they have no plans for an OS/2 based
  411. client of their own."  It is this statement that is giving rise to
  412. the "OS/2 is dead" headlines now appearing at so many OS/2
  413. news sites.  Rather than question the source of the statement
  414. (as having no right to speak for IBM) they are running with it
  415. as gospel.  Afterall, Brad Wardell, KING of OS/2, has said so.
  416.  
  417. Won't someone PUH leeease pull back the curtain and see that
  418. the King is wearing NT and producing software for Microsoft
  419. systems only?  Are they all that blind and stupid?
  420.  
  421. >         Now, if you are in the secret of the gods and know what is their
  422. > strategy, please go on and enlighten us.
  423. >
  424. > > I fail to see how this makes either a great villian out of Stardock or a
  425. hero
  426. > > out of IBM.  Let's face it.  IBM doesn't want a popular client; they want
  427. a
  428. > > "tons-of-money" business system.
  429. >
  430. >         If that goes through a popular client, they'll sure get there.  Now,
  431. > for some crystal ball readings...Windows 2000 isn't recommended by
  432. > high respectable analysis society (IDC and alike) and IT and managers
  433. > are usually following their opinions (that's why a lot of people are,
  434. > in part, stuck with Windows), Linux is going through a push but
  435. > configuration is still not for the faint of heart.  I guess between
  436. > those two, OS/2 can have a really good chance due to some killer apps
  437. > entering the arena (StarOffice and alike).  ;-)
  438. >
  439. > Salut,
  440. >
  441. >         Michel (sur OS/2 Warp 4.07)
  442. >         ICQ #13376913
  443. >         http://pages.infinit.net/exovede
  444.  
  445. You got it!  OS/2 continues to be THE Killer OS today.  No other
  446. desktop operating system on the market today can equal the
  447. power, stability and quality of OS/2.  NONE!
  448.  
  449. Tim Martin
  450. The OS/2 Guy
  451. Warp City
  452. http://warpcity.com
  453. "E-ride the wild surf to Warp City!"
  454.  
  455.  
  456.  
  457.  
  458. --- WtrGate+ v0.93.p7 sn 165
  459.  * Origin: Usenet: Warp City (http://warpcity.com) (1:109/42)
  460.  
  461. +----------------------------------------------------------------------------+
  462.  
  463. From: zayne@omen.com.au                                 19-Sep-99 12:30:05
  464.   To: All                                               19-Sep-99 18:48:06
  465. Subj: Judgement day - time to reach for your wallets OS/2 people (large)
  466.  
  467. From: zayne@omen.com.au (Mooo)
  468.  
  469. Craig Benbow <benbowc@ibm.net> wrote:
  470.  
  471. >What is required is a deliberately targeted campaign to convince IBM to
  472. update the
  473. >client.
  474.  
  475. Yes, and we need to present to IBM as a large group, not a disparete
  476. bunch of whining users.
  477.  
  478. For instance, Warp 4.5 usable as a client (although large) already
  479. exists.  It is the basis for Warp Server for e-Business and the
  480. foundation to which all the server components of that package work
  481. through.
  482.  
  483. If the Bank of Brasil, or the German reserve bank ring up Lou Gerstner
  484. and say 'Lou, would you mind if we replace all our Warp 4 clients with
  485. Warp4.5 and pay you an upgrade fee for those existing seats, and a
  486. whole new licence fee for new seats' what do you think the answer
  487. would be?
  488.  
  489. 'Nah, we don't need to make 10 million this month, but thanks anyway'
  490. ??
  491.  
  492. I doubt it.  I'm going to ask my IBM rep on Monday her feelings on
  493. exactly this issue.  If I install WSeB would they have any major
  494. objections to me using Warp 4.5 as the client?  There probably will be
  495. objections, but then, I'm small fry (I'll ask anyway).
  496.  
  497. The OS/2 community needs to get behind one of the high profile lobby
  498. groups that already exist and put their money where their mouth is.
  499. This needs to be a serious effort however.  Don't front IBM and ask
  500. what their opinion would be if asked to provide Warp Client 4.5 to 20
  501. users.  Ask them, quite bluntly, to supply 20,000 copies of Warp
  502. Client 4.5, and when they say 'yes' have the money ready (lets see,
  503. 20,000 x AU$300 approx per client = AU$6Mill. - about US$3.9Mill).
  504.  
  505. This idea is not new, in fact its been bouncing off the walls of
  506. usenet and other places for about a year.  But ideas are worth nothing
  507. without a financial backing.  
  508.  
  509. When an enterprise goes to a supplier like IBM trying to make a deal
  510. for something, they (generally) have money to back them up.  Talking
  511. 'potential' sales to an enterprise focused sales team will get you
  512. nowhere.  They must know that should a deal be organised the money
  513. will be forthcoming...now...not in dribs and drabs over the next five
  514. years.
  515.  
  516. Those who have had a look at WSeB know that it would take almost no
  517. effort at all to strip out the server component, and package the
  518. client part of Warp 4.5.  Seriously!  Strip out the server options
  519. from the install REXX script, remove the stuff from the CD and boom,
  520. you have it.  
  521.  
  522. What IBM most definately does not want to entertain is being held to
  523. account by literally thousands of tiny organisations or worse single
  524. users.  Its simply not worth their while.  Huge companies have their
  525. own IT support staff, and even better, buy large value support
  526. agreements from IBM.  Its all about money folks, dont fight it.
  527.  
  528. We all need to take a deep breath right now and think corporate.
  529. Forget paying US$100 for a client, lets start at something like
  530. US$300.  Any idea what something like SCO Unix costs?  Yep AU$3000.00
  531. a shot.  When you're in a minority you simply have to pay through the
  532. nose as economies of scale are not realised with small user bases.
  533.  
  534. IBM would get their share of the US$300 per client (I've no real idea
  535. of what a business partner pays for a Warp4 licence...$100??), the
  536. rest to a community formed company with support staff and sales staff
  537. and whatnot.  They would present to IBM like a homogeneous enterprise
  538. corporation with 10-15 thousand seats (at least).  Everyone from users
  539. to businesses smaller than fortune 500 could work through such an
  540. organisation for support, sales etc.
  541.  
  542. Its now bluff calling time.  If what we, as a community, really want
  543. is a free OS, supported for free, for the rest of time then we are
  544. going to die, and whats more we deserve what we get.  If all the chest
  545. beaters out there are just making noise, well, fine, but if it all
  546. amounts to no money, we as a community will probably last until about
  547. 2002 the final support date for Warp4.  In the mean time all ISV's
  548. will vanish.  ISV's even now have a hard time trying to make a roadmap
  549. of the future, even through the next 2 years!
  550.  
  551. My own view is that IBM is probably willing to let OS/2 die as natural
  552. death.  Its up to us to make sure this doesnt happen and the only way
  553. to do that is to present IBM with a continuous revenue stream - money
  554. guys n gals.
  555.  
  556. Has anyone thought of basically copying IBM's sales adventure as
  557. regarding Software Choice?  What a central organising corporation,
  558. working on behalf of the worldwide community of OS/2 users needs most
  559. is cash.  Users could perhaps pay a subscription to the OS/2 company,
  560. not an insubstantial pocket change type of affair, but real money
  561. US$300-400 per year.  For this, they could perhaps gain access to
  562. selected OS/2 applications licences, revenue based on licences could
  563. then be fed back to the ISV's concerned in big fat quarterly chunks. 
  564.  
  565. Small potatoes compared with the windows market?  You bet, but I'd
  566. think probably a lot larger than most are currently getting through
  567. the OS/2 shareware world.
  568.  
  569. How about a Credit Union type of set up?  (I'm brainstorming here),
  570. whereby those diehard OS/2 users who really care, and care enough to
  571. front money, provide the startup capital for the OS/2 corporation via
  572. the purchase of shares?  Those with the most shares have the most
  573. votes etc etc.  You don't get access to the 'union' until you buy at
  574. least one parcel of shares..this type of thing.  You want access to
  575. Warp Client 4.5 as well as a swag of other OS/2 apps?  Fine, buy into
  576. OS/2 Corporation, then as a member, you have access to all this fine
  577. software at corporate rates.  Big bucks?  You bet, I'd imagine, in all
  578. reality, if all you want is Warp Client 4.5 its gonna cost you US$600+
  579. (remember we would need to buy the software -and- support the
  580. underlying corporate structure...help staff, adminstrators etc).  Per
  581. software pricing would get a lot better should you wish to partake in
  582. the purchase of several packages.
  583.  
  584. The crunch in all schemes of this type, and I've been watching with
  585. interest for over a year, is that someone, and in fact a -lot- of
  586. someones, has to make the first move.  A OS/2 corporation such as
  587. thing can only be a success if it is large, and I mean that in IBM
  588. terms.
  589.  
  590. The underlying theme is that at no time does IBM receive a call from a
  591. disgruntled user who cant get his 'dial other internet providers'
  592. working.  All this user support is handled by OS/2 Corporation paid
  593. support staff.
  594.  
  595. If this sort of money is viewed as unrealistic, then my opinion is
  596. that our requests for continued support from IBM is also unrealistic
  597. and OS/2 will in fact die...slowly and horribly.
  598.  
  599.  
  600. Craig
  601.  
  602. --- WtrGate+ v0.93.p7 sn 165
  603.  * Origin: Usenet: Nothing I say is my own opinion (1:109/42)
  604.  
  605. +----------------------------------------------------------------------------+
  606.  
  607. From: chris@clsyscn.com                                 19-Sep-99 23:54:11
  608.   To: All                                               19-Sep-99 18:48:07
  609. Subj: comm port monitoring
  610.  
  611. From: "chris" <chris@clsyscn.com>
  612.  
  613. I have a device connected to comm port and my applicaton is sending and
  614. receiving discontinous data over the comm port.
  615. I need to write a small program to monitor the data flow over the comm port
  616. and take appropriate action if no data flow over comm port for a period of
  617. time. Since the data is discrete therefore the small program cannot be
  618. running continuously without stopping.
  619. Can anyone out there have any idea to cope with it or any other suggestion
  620. to monitor the discrete data over comm port?
  621.  
  622. Thanks in advance for any inputs.
  623.  
  624. Regards,
  625. Chris.
  626.  
  627.  
  628. --- WtrGate+ v0.93.p7 sn 165
  629.  * Origin: Usenet: Pacific Supernet Limited (1:109/42)
  630.  
  631. +----------------------------------------------------------------------------+
  632.  
  633. From: raphaelt@netnews.worldnet.att.net                 19-Sep-99 12:40:05
  634.   To: All                                               19-Sep-99 18:48:07
  635. Subj: Re: Netlabs statement about the future of OS/2
  636.  
  637. From: raphaelt@netnews.worldnet.att.net (Raphael Tennenbaum)
  638.  
  639. lifedata@xxvol.com wrote:
  640.  
  641. >Exovede@ImpaleTheSpammers.Com@Videotron.ca (Michel A Goyette) said: > From
  642. what
  643. >I read, it only said the IBM wouldn't allow Stardock 
  644. >>to put out a new client release because that doesn't fit in their  strategy
  645. >>(for whatever that means).  THAT'S ALL!!!
  646. >
  647. >I quote:
  648. >
  649. >>>The call has been made -- there will be no new client from Stardock 
  650. >>>and IBM has indicated that they have no plans for an OS/2 based 
  651. >>>client of their own.
  652. >
  653. >Note the wording:  "IBM has indicated that they have no plans for an OS/2
  654. based 
  655. >client of their own."
  656.  
  657. Even if you don't consider the significantly unreliable
  658. source, in press-release speak this means nothing.  IBM
  659. speaks, or not, for itself. 
  660.  
  661. Or if you prefer, it means "IBM hasn't said anything about a
  662. Warp5 client in two years."  Or it might mean, "When I asked
  663. the guy in the brown suit if the reason they weren't going
  664. to give it to me was because they were bringing one out
  665. themselves, he shrugged and picked his nose."  (IMO what it 
  666. means is, "Hey all you OS/2 fans, IBM sucks but we at
  667. Stardock are great, we did our best and got a lot of
  668. publicity.")
  669.  
  670. -- 
  671. Ray Tennenbaum        '99 YZF-R6
  672. readme@ http://www.ray-field.com
  673.  
  674. --- WtrGate+ v0.93.p7 sn 165
  675.  * Origin: Usenet: AT&T WorldNet Services (1:109/42)
  676.  
  677. +----------------------------------------------------------------------------+
  678.  
  679. From: OS2Guy@WarpCity.com                               19-Sep-99 10:26:06
  680.   To: All                                               19-Sep-99 18:48:07
  681. Subj: Re: Netlabs statement about the future of OS/2
  682.  
  683. From: Tim Martin <OS2Guy@WarpCity.com>
  684.  
  685. Please see my response to your private email.
  686. I would like to ask that those of you responding
  687. to public postings do so publicly NOT privately.
  688.  
  689. Tim Martin
  690. The OS/2 Guy
  691. Warp City
  692. http://warpcity.com
  693. "E-ride the wild surf to Warp City!"
  694.  
  695. Craig Benbow wrote:
  696.  
  697. > For cripes sakes Tim keep your hair on.  It is only an OS after all and
  698. bagging anyone
  699. > is pointless.
  700. >
  701. > What is required is a deliberately targeted campaign to convince IBM to
  702. update the
  703. > client.  Note I say update.  We don't need a new OS we need an enhaced
  704. version of what
  705. > we have now.  This will take time and therefore a lot of patience.  I also
  706. see the work
  707. > of Netlabs to be crucial to the whole process and we all need to help at the 
  708. grass
  709. > roots level with advocacy.  If you or anyone else has a problem with helping 
  710. to line
  711. > IBM's pockets then get out of the game because that is all IBM stock holders 
  712. have an
  713. > interest in.
  714. > Have a coffee then get down to what we all do best, maintaining and
  715. enhancing OS/2's
  716. > reputation worldwide.
  717. >
  718. > Bottoms up
  719. >
  720. > Craig
  721. >
  722.  
  723. --- WtrGate+ v0.93.p7 sn 165
  724.  * Origin: Usenet: Warp City (http://warpcity.com) (1:109/42)
  725.  
  726. +----------------------------------------------------------------------------+
  727.  
  728. From: OS2Guy@WarpCity.com                               19-Sep-99 10:48:05
  729.   To: All                                               19-Sep-99 18:48:07
  730. Subj: Re: Netlabs statement about the future of OS/2
  731.  
  732. From: Tim Martin <OS2Guy@WarpCity.com>
  733.  
  734. lifedata@xxvol.com wrote:
  735.  
  736. > Exovede@ImpaleTheSpammers.Com@Videotron.ca (Michel A Goyette) said: > From
  737. what
  738. > I read, it only said the IBM wouldn't allow Stardock
  739. > >to put out a new client release because that doesn't fit in their  strategy
  740. > >(for whatever that means).  THAT'S ALL!!!
  741. >
  742. > I quote:
  743. >
  744. > >>The call has been made -- there will be no new client from Stardock
  745. > >>and IBM has indicated that they have no plans for an OS/2 based
  746. > >>client of their own.
  747. >
  748. > Note the wording:  "IBM has indicated that they have no plans for an OS/2
  749. based
  750. > client of their own."
  751. >
  752. > Jim L
  753. > Remove XX from address to Email
  754. > More gun laws will cure the nations ills - just like drug laws do.
  755.  
  756. And please note:  It is written by Brad Wardell.  It is not an
  757. official statement by IBM.  What constitutes "indicated" in
  758. Brad's mind means nothing in the real world.  ZDNet and
  759. Mary Jo Folly "indicated" OS/2 was dead years ago yet I
  760. still use it, IBM still updates it and I still get new applications
  761. to run on it.
  762.  
  763. IBM has no made official statement regarding the death of
  764. OS/2 or eventual release of a Warp 5 client.  NONE.  What
  765. they have said is that they have no plans to release a Warp
  766. 5 client this year.  It took three years after Warp 3 for the
  767. release of Warp 4.  Warp 4 is just two years old and still
  768. outperforms anything Microsoft is offering todate.
  769.  
  770. For all of those who believe there will never be a Warp 5
  771. client take faith, there is every likelihood IBM will release
  772. a Warp 5 AFTER the year 2000.
  773.  
  774. Tim Martin
  775. The OS/2 Guy
  776. Warp City
  777. http://warpcity.com
  778. "E-ride the wild surf to Warp City!"
  779.  
  780.  
  781. --- WtrGate+ v0.93.p7 sn 165
  782.  * Origin: Usenet: Warp City (http://warpcity.com) (1:109/42)
  783.  
  784. +----------------------------------------------------------------------------+
  785.  
  786. From: OS2Guy@WarpCity.com                               19-Sep-99 11:10:05
  787.   To: All                                               19-Sep-99 18:48:07
  788. Subj: Re: Netlabs statement about the future of OS/2
  789.  
  790. From: Tim Martin <OS2Guy@WarpCity.com>
  791.  
  792. Bob Stan wrote:
  793.  
  794. > On Sun, 19 Sep 1999 10:48:10 -0700, Tim Martin wrote:
  795. >
  796. > >And please note:  It is written by Brad Wardell.  It is not an
  797. > >official statement by IBM.  What constitutes "indicated" in
  798. > >Brad's mind means nothing in the real world.  ZDNet and
  799. > >Mary Jo Folly "indicated" OS/2 was dead years ago yet I
  800. > >still use it, IBM still updates it and I still get new applications
  801. > >to run on it.
  802. > >
  803. > >IBM has no made official statement regarding the death of
  804. > >OS/2 or eventual release of a Warp 5 client.  NONE.  What
  805. > >they have said is that they have no plans to release a Warp
  806. > >5 client this year.  It took three years after Warp 3 for the
  807. > >release of Warp 4.  Warp 4 is just two years old and still
  808. > >outperforms anything Microsoft is offering todate.
  809. > >
  810. > >For all of those who believe there will never be a Warp 5
  811. > >client take faith, there is every likelihood IBM will release
  812. > >a Warp 5 AFTER the year 2000.
  813. >
  814. > I have no vested interest in Stardock or IBM.  However, seeing as Brad and
  815. > Stardock were involved in this attempt over a period of time, including face
  816. > to face meetings with the upper echelons of IBM, I am inclined to accept his
  817. > appraisal.
  818.  
  819. And yet an IBM official attending Warp Expo West
  820. stated publicly yesterday that no such meeting
  821. took place - and he should know, he is on the
  822. committee.   He said it was cancelled due to travel
  823. problems.  He also said Brad was wrong.  AND he
  824. said IBM has made no decision on whether or not
  825. they will release a Warp 5 client 'this year'.
  826.  
  827. Stardock has a vested financial interest in all this
  828. free publicity.  Brad does not and cannot speak for IBM.
  829.  
  830. > I wish there would be a new client, but I think it unlikely.
  831.  
  832. And I see the glass as half full.  I say there will be a
  833. Warp 5 client.  Just not in 1999.
  834.  
  835. Tim Martin
  836. The OS/2 Guy
  837. Warp City
  838. http://warpcity.com
  839. "E-ride the wild surf to Warp City!"
  840.  
  841.  
  842.  
  843.  
  844. --- WtrGate+ v0.93.p7 sn 165
  845.  * Origin: Usenet: Warp City (http://warpcity.com) (1:109/42)
  846.  
  847. +----------------------------------------------------------------------------+
  848.  
  849. From: rsstan@ibm.net                                    19-Sep-99 14:01:15
  850.   To: All                                               19-Sep-99 18:48:07
  851. Subj: Re: Netlabs statement about the future of OS/2
  852.  
  853. From: "Bob Stan" <rsstan@ibm.net>
  854.  
  855. On Sun, 19 Sep 1999 10:48:10 -0700, Tim Martin wrote:
  856.  
  857. >And please note:  It is written by Brad Wardell.  It is not an
  858. >official statement by IBM.  What constitutes "indicated" in
  859. >Brad's mind means nothing in the real world.  ZDNet and
  860. >Mary Jo Folly "indicated" OS/2 was dead years ago yet I
  861. >still use it, IBM still updates it and I still get new applications
  862. >to run on it.
  863. >
  864. >IBM has no made official statement regarding the death of
  865. >OS/2 or eventual release of a Warp 5 client.  NONE.  What
  866. >they have said is that they have no plans to release a Warp
  867. >5 client this year.  It took three years after Warp 3 for the
  868. >release of Warp 4.  Warp 4 is just two years old and still
  869. >outperforms anything Microsoft is offering todate.
  870. >
  871. >For all of those who believe there will never be a Warp 5
  872. >client take faith, there is every likelihood IBM will release
  873. >a Warp 5 AFTER the year 2000.
  874.  
  875. I have no vested interest in Stardock or IBM.  However, seeing as Brad and
  876. Stardock were involved in this attempt over a period of time, including face
  877. to face meetings with the upper echelons of IBM, I am inclined to accept his
  878. appraisal.
  879.  
  880. I wish there would be a new client, but I think it unlikely.  
  881.  
  882.  
  883. --- WtrGate+ v0.93.p7 sn 165
  884.  * Origin: Usenet: Global Network Services - Remote Access Mail & Ne
  885. (1:109/42)
  886.  
  887. +----------------------------------------------------------------------------+
  888.  
  889. From: wayne@SPAM.tkb.att.ne.jp                          19-Sep-99 20:12:00
  890.   To: All                                               19-Sep-99 18:48:07
  891. Subj: Re: Netlabs statement about the future of OS/2
  892.  
  893. From: "Wayne Bickell" <wayne@SPAM.tkb.att.ne.jp>
  894.  
  895. I really haven't seen anyone blast Brad or Stardock because a few
  896. d*ckheads in expensive suits at IBM have sh*t for brains.
  897.  
  898. Insert your favourite vowel for the * in the message. Maybe it's an "i"
  899.  
  900. :-) 
  901.  
  902. Cheers 'n too much to drink
  903.  
  904. Wayne
  905.  
  906.  
  907. On Sun, 19 Sep 1999 01:05:57 GMT, Michel A Goyette wrote:
  908.  
  909. :>Sat, 18 Sep 1999 19:45:51, lifedata@xxvol.com a ┌crit:
  910. :>
  911. :>> "Adrian Gschwend" <nospam_ktk@netlabs.org> said:
  912. :>> 
  913. :>> >We all heard it, Stardock is not allowed to release a new OS/2 client. I
  914. and
  915. :>> >many other OS/2 users are very disapointed about this.
  916. :>> 
  917. :>> I'd like to register my disappointment with something else.
  918. :>> 
  919. :>> Okay, guys, you're having a total blast bashing Stardock.  Have fun.  Have 
  920. lots
  921. :>> of fun.  But the IBM message was NOT a Stardock message.  The IBM message
  922. was
  923. :>> that no one, not Stardock, not IBM, not anybody would be doing an OS/2
  924. client.
  925. ******************************************************
  926. Wayne Bickell
  927. Tokyo, Japan
  928. wayne@tkb.att.ne.jp
  929. ******************************************************
  930.            Posted with PMINews 2 for OS/2
  931. ******************************************************
  932.  
  933.  
  934.  
  935. --- WtrGate+ v0.93.p7 sn 165
  936.  * Origin: Usenet: AT&T Internet Service (1:109/42)
  937.  
  938. +----------------------------------------------------------------------------+
  939.  
  940. From: lifedata@xxvol.com                                19-Sep-99 11:51:07
  941.   To: All                                               19-Sep-99 18:48:07
  942. Subj: Re: Netlabs statement about the future of OS/2
  943.  
  944. From: lifedata@xxvol.com
  945.  
  946. Exovede@ImpaleTheSpammers.Com@Videotron.ca (Michel A Goyette) said: > From
  947. what
  948. I read, it only said the IBM wouldn't allow Stardock 
  949. >to put out a new client release because that doesn't fit in their  strategy
  950. >(for whatever that means).  THAT'S ALL!!!
  951.  
  952. I quote:
  953.  
  954. >>The call has been made -- there will be no new client from Stardock 
  955. >>and IBM has indicated that they have no plans for an OS/2 based 
  956. >>client of their own.
  957.  
  958. Note the wording:  "IBM has indicated that they have no plans for an OS/2
  959. based 
  960. client of their own."
  961.  
  962. Jim L
  963. Remove XX from address to Email
  964. More gun laws will cure the nations ills - just like drug laws do.
  965.  
  966.  
  967. --- WtrGate+ v0.93.p7 sn 165
  968.  * Origin: Origin Line 1 Goes Here (1:109/42)
  969.  
  970. +----------------------------------------------------------------------------+
  971.  
  972. From: benbowc@ibm.net                                   19-Sep-99 20:34:25
  973.   To: OS2Guy@WarpCity.com                               20-Sep-99 00:54:18
  974. Subj: Re: Netlabs statement about the future of OS/2
  975.  
  976. To: Tim Martin <OS2Guy@WarpCity.com>
  977. From: Craig Benbow <benbowc@ibm.net>
  978.  
  979. For cripes sakes Tim keep your hair on.  It is only an OS after all and
  980. bagging anyone
  981. is pointless.
  982.  
  983. What is required is a deliberately targeted campaign to convince IBM to update 
  984. the
  985. client.  Note I say update.  We don't need a new OS we need an enhaced version 
  986. of what
  987. we have now.  This will take time and therefore a lot of patience.  I also see 
  988. the work
  989. of Netlabs to be crucial to the whole process and we all need to help at the
  990. grass
  991. roots level with advocacy.  If you or anyone else has a problem with helping
  992. to line
  993. IBM's pockets then get out of the game because that is all IBM stock holders
  994. have an
  995. interest in.
  996. Have a coffee then get down to what we all do best, maintaining and enhancing
  997. OS/2's
  998. reputation worldwide.
  999.  
  1000. Bottoms up
  1001.  
  1002. Craig
  1003.  
  1004. Tim Martin wrote:
  1005.  
  1006. > Michel A Goyette wrote:
  1007. >
  1008. > > Sat, 18 Sep 1999 19:45:51, lifedata@xxvol.com a écrit:
  1009. > >
  1010. > > > "Adrian Gschwend" <nospam_ktk@netlabs.org> said:
  1011. > > >
  1012. > > > >We all heard it, Stardock is not allowed to release a new OS/2 client.
  1013. I and
  1014. > > > >many other OS/2 users are very disapointed about this.
  1015. > > >
  1016. > > > I'd like to register my disappointment with something else.
  1017. > > >
  1018. > > > Okay, guys, you're having a total blast bashing Stardock.  Have fun. 
  1019. Have lots
  1020. > > > of fun.  But the IBM message was NOT a Stardock message.  The IBM
  1021. message was
  1022. > > > that no one, not Stardock, not IBM, not anybody would be doing an OS/2
  1023. client.
  1024. > >
  1025. > >         I, for my part, haven't seen the IBM message yet, only the one
  1026. from
  1027. > > Brad.
  1028. >
  1029. > There is not message from IBM.  NONE.  All this "OS/2 is dead"
  1030. > information is being generated by no one but Brad Wardell.
  1031. >
  1032. > > From what I read, it only said the IBM wouldn't allow Stardock
  1033. > > to put out a new client release because that doesn't fit in their
  1034. > > strategy (for whatever that means).  THAT'S ALL!!!
  1035. >
  1036. > You may have missed it but in Brad's message he apparently
  1037. > feels he has the right to speak for IBM because he says, "IBM
  1038. > has indicated that they have no plans for an OS/2 based
  1039. > client of their own."  It is this statement that is giving rise to
  1040. > the "OS/2 is dead" headlines now appearing at so many OS/2
  1041. > news sites.  Rather than question the source of the statement
  1042. > (as having no right to speak for IBM) they are running with it
  1043. > as gospel.  Afterall, Brad Wardell, KING of OS/2, has said so.
  1044. >
  1045. > Won't someone PUH leeease pull back the curtain and see that
  1046. > the King is wearing NT and producing software for Microsoft
  1047. > systems only?  Are they all that blind and stupid?
  1048. >
  1049. > >         Now, if you are in the secret of the gods and know what is their
  1050. > > strategy, please go on and enlighten us.
  1051. > >
  1052. > > > I fail to see how this makes either a great villian out of Stardock or a 
  1053. hero
  1054. > > > out of IBM.  Let's face it.  IBM doesn't want a popular client; they
  1055. want a
  1056. > > > "tons-of-money" business system.
  1057. > >
  1058. > >         If that goes through a popular client, they'll sure get there. 
  1059. Now,
  1060. > > for some crystal ball readings...Windows 2000 isn't recommended by
  1061. > > high respectable analysis society (IDC and alike) and IT and managers
  1062. > > are usually following their opinions (that's why a lot of people are,
  1063. > > in part, stuck with Windows), Linux is going through a push but
  1064. > > configuration is still not for the faint of heart.  I guess between
  1065. > > those two, OS/2 can have a really good chance due to some killer apps
  1066. > > entering the arena (StarOffice and alike).  ;-)
  1067. > >
  1068. > > Salut,
  1069. > >
  1070. > >         Michel (sur OS/2 Warp 4.07)
  1071. > >         ICQ #13376913
  1072. > >         http://pages.infinit.net/exovede
  1073. >
  1074. > You got it!  OS/2 continues to be THE Killer OS today.  No other
  1075. > desktop operating system on the market today can equal the
  1076. > power, stability and quality of OS/2.  NONE!
  1077. >
  1078. > Tim Martin
  1079. > The OS/2 Guy
  1080. > Warp City
  1081. > http://warpcity.com
  1082. > "E-ride the wild surf to Warp City!"
  1083.  
  1084. --- WtrGate+ v0.93.p7 sn 165
  1085.  * Origin: Usenet: Global Network Services - Remote Access Mail & Ne
  1086. (1:109/42)
  1087.  
  1088. +----------------------------------------------------------------------------+
  1089.  
  1090. From: Exovede@ImpaleTheSpammers.Com@Vi...               19-Sep-99 20:29:13
  1091.   To: All                                               20-Sep-99 00:54:19
  1092. Subj: Re: Netlabs statement about the future of OS/2
  1093.  
  1094. Message sender: Exovede@ImpaleTheSpammers.Com@Videotron.ca
  1095.  
  1096. From: Exovede@ImpaleTheSpammers.Com@Videotron.ca (Michel A Goyette)
  1097.  
  1098. Sun, 19 Sep 1999 15:51:15, lifedata@xxvol.com a écrit:
  1099.  
  1100. > Exovede@ImpaleTheSpammers.Com@Videotron.ca (Michel A Goyette) said: > From
  1101. what
  1102. > I read, it only said the IBM wouldn't allow Stardock 
  1103. > >to put out a new client release because that doesn't fit in their  strategy
  1104. > >(for whatever that means).  THAT'S ALL!!!
  1105. > I quote:
  1106. > >>The call has been made -- there will be no new client from Stardock 
  1107. > >>and IBM has indicated that they have no plans for an OS/2 based 
  1108. > >>client of their own.
  1109. > Note the wording:  "IBM has indicated that they have no plans for an OS/2
  1110. based 
  1111. > client of their own."
  1112.  
  1113.     Yes, I saw this post from Brad.  However, I haven't seen the IBM 
  1114. official stands on this.
  1115.  
  1116. Salut,
  1117.  
  1118.     Michel (sur OS/2 Warp 4.07)
  1119.     ICQ #13376913
  1120.     http://pages.infinit.net/exovede
  1121.  
  1122. --- WtrGate+ v0.93.p7 sn 165
  1123.  * Origin: Origin Line 1 Goes Here (1:109/42)
  1124.  
  1125. +----------------------------------------------------------------------------+
  1126.  
  1127. From: jsjones@selectric.net                             19-Sep-99 22:12:23
  1128.   To: All                                               20-Sep-99 00:54:19
  1129. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (large)
  1130.  
  1131. From: jsjones@selectric.net
  1132.  
  1133. Good idea and there are already such organizations in existence: the several 
  1134. non-profit large OS/2 user groups, such as POSSI, SCOUG, etc. Either
  1135. individually or 
  1136. as a joint venture, such groups could buy special licenses of WSEB 4.5 and 
  1137. redistribute a client version to members, only. Apple has somewhat similar 
  1138. agreements with user groups to distribute certain older software (at no
  1139. charge).
  1140.  
  1141. This could be *much* better than the present and historical situation. User
  1142. groups 
  1143. (UGs) are much better situated to provide support than a megacorp. IBM could 
  1144. provide better bug fixes faster and cheaper if reports were funneled through a 
  1145.  
  1146. few UG contacts. Increased revenues from sales and membership fees could allow 
  1147.  
  1148. UGs to fund ISVs. I've long hoped a group of sharp WPS and device driver 
  1149. programmers would join together and form team -- called Portsmiths Group, or
  1150. such -- 
  1151. -- to port other-platform applications and devices to OS/2. With salaries or
  1152. retainers 
  1153. from UGs, good programmers wouldn't have to face shareware starvation to do 
  1154. OS/2 work. Such a team could also contract with mainstream vendors to produce 
  1155. (good) OS/2 versions, with little risk and overhead. And, so on...
  1156.  
  1157. If IBM were to take this route, they could serve their existing customer base
  1158. and 
  1159. hedge their bets on NT in case the courts have the courage to call naked naked 
  1160.  
  1161. and in some substantive way break up the emperor's monopoly. And, they could 
  1162. do so without granting an OS/2 monopoly to any one commercial concern.
  1163.  
  1164. Any UGs up to this task?
  1165.  
  1166. In <37e4cbfb.1002326@news.omen.net.au>, zayne@omen.com.au (Mooo) writes:
  1167. >How about a Credit Union type of set up?  (I'm brainstorming here),
  1168. >whereby those diehard OS/2 users who really care, and care enough to
  1169. >front money, provide the startup capital for the OS/2 corporation via
  1170. >the purchase of shares?  Those with the most shares have the most
  1171. >votes etc etc.  You don't get access to the 'union' until you buy at
  1172. >least one parcel of shares..this type of thing.  You want access to
  1173. >Warp Client 4.5 as well as a swag of other OS/2 apps?  Fine, buy into
  1174. >OS/2 Corporation, then as a member, you have access to all this fine
  1175. >software at corporate rates.  Big bucks?  You bet, I'd imagine, in all
  1176. >reality, if all you want is Warp Client 4.5 its gonna cost you US$600+
  1177. >(remember we would need to buy the software -and- support the
  1178. >underlying corporate structure...help staff, adminstrators etc).  Per
  1179. >software pricing would get a lot better should you wish to partake in
  1180. >the purchase of several packages.
  1181. >
  1182. >The crunch in all schemes of this type, and I've been watching with
  1183. >interest for over a year, is that someone, and in fact a -lot- of
  1184. >someones, has to make the first move.  A OS/2 corporation such as
  1185. >thing can only be a success if it is large, and I mean that in IBM
  1186. >terms.
  1187. >
  1188. >The underlying theme is that at no time does IBM receive a call from a
  1189. >disgruntled user who cant get his 'dial other internet providers'
  1190. >working.  All this user support is handled by OS/2 Corporation paid
  1191. >support staff.
  1192. >
  1193. >If this sort of money is viewed as unrealistic, then my opinion is
  1194. >that our requests for continued support from IBM is also unrealistic
  1195. >and OS/2 will in fact die...slowly and horribly.
  1196.  
  1197. selectric.net? think international business machines, instead.
  1198.  
  1199. --- WtrGate+ v0.93.p7 sn 165
  1200.  * Origin: Usenet: @Home Network (1:109/42)
  1201.  
  1202. +----------------------------------------------------------------------------+
  1203.  
  1204. From: jt5555@epix.net                                   19-Sep-99 20:53:10
  1205.   To: All                                               20-Sep-99 00:54:19
  1206. Subj: Re: comm port monitoring
  1207.  
  1208. From: jt5555@epix.net (Julian Thomas)
  1209.  
  1210. In <7s30ie$7vh$1@hfc.pacific.net.hk>, on 09/19/99 
  1211.    at 11:54 PM, "chris" <chris@clsyscn.com> said:
  1212.  
  1213. >I need to write a small program to monitor the data flow over the comm
  1214. >port and take appropriate action if no data flow over comm port for a
  1215. >period of time. Since the data is discrete therefore the small program
  1216. >cannot be running continuously without stopping.
  1217. >Can anyone out there have any idea to cope with it or any other
  1218. >suggestion to monitor the discrete data over comm port?
  1219.  
  1220. SIO includes a program called PMLM that monitors the line.  Not sure how
  1221. to use it in an automated fashion, though....
  1222.  
  1223. -- 
  1224.  Julian Thomas: jt 5555 at epix dot net  http://home.epix.net/~jt
  1225.  remove numerics for email
  1226.  Boardmember of POSSI.org - Phoenix OS/2 Society, Inc  http://www.possi.org
  1227.  In the beautiful Finger Lakes Wine Country of New York State!
  1228.  -- --
  1229.  All computers wait at the same speed.
  1230.  
  1231.  
  1232.  
  1233. --- WtrGate+ v0.93.p7 sn 165
  1234.  * Origin: Origin Line 1 Goes Here (1:109/42)
  1235.  
  1236. +----------------------------------------------------------------------------+
  1237.  
  1238. From: dcasey@ibm.net                                    19-Sep-99 17:04:12
  1239.   To: All                                               20-Sep-99 00:54:19
  1240. Subj: Re: Netlabs statement about the future of OS/2
  1241.  
  1242. From: dcasey@ibm.net (Dan Casey)
  1243.  
  1244. In article <37E52702.5492FEF7@WarpCity.com>,
  1245. Tim Martin <OS2Guy@WarpCity.com> wrote:
  1246. >
  1247. >And yet an IBM official attending Warp Expo West
  1248. >stated publicly yesterday that no such meeting
  1249. >took place - and he should know, he is on the
  1250. >committee.   He said it was cancelled due to travel
  1251. >problems.  He also said Brad was wrong.  AND he
  1252. >said IBM has made no decision on whether or not
  1253. >they will release a Warp 5 client 'this year'.
  1254. >
  1255. >Stardock has a vested financial interest in all this
  1256. >free publicity.  Brad does not and cannot speak for IBM.
  1257. >
  1258. >> I wish there would be a new client, but I think it unlikely.
  1259. >
  1260. >And I see the glass as half full.  I say there will be a
  1261. >Warp 5 client.  Just not in 1999.
  1262.  
  1263. Here's the explanation for the non-meeting "meeting". This is in
  1264. response to a question regarding the  report at os2.org stating that
  1265. no meeting took place. The following  is the answer I received from
  1266. an IBMer close to the proceedings:
  1267.  
  1268. ==================================================
  1269.  
  1270. Brad's statement and this one are not inconsistent.
  1271.  
  1272. The meeting didn't take place because there was a meeting ahead of the
  1273. meeting,
  1274. at which it was decided there wasn't any need to have a meeting
  1275. because IBM was
  1276. not going to pursue Stardock's proposal (and the "agreement in
  1277. principle"
  1278. between IBM and Stardock).  (You see, you only have *that* meeting to
  1279. *approve*
  1280. agenda items.)
  1281.  
  1282. IBM hasn't ruled any third party out of offering a new client, but it
  1283. hasn't
  1284. ruled any third party (or itself) *in*, either.  (IBM almost never
  1285. rules
  1286. anything out.)  Brad's statement was accurate; Stardock anticipates no
  1287. change in
  1288. IBM's stance.
  1289.  
  1290. Brad's statement was also accurate that IBM has received more than one
  1291. offer.
  1292. Thus far IBM has rejected all of them "at this time."
  1293.  
  1294. ======================================================
  1295.  
  1296. --
  1297. **************************************************************
  1298. *  Dan Casey                                                 *
  1299. *  President                                                 *
  1300. *  V.O.I.C.E. (Virtual OS/2 International Consumer Education *
  1301. *  http://www.os2voice.org                                   *
  1302. *  Abraxas on IRC                                            *
  1303. *  http://members.iquest.net/~dcasey                         *
  1304. *  Charter Associate member, Team SETI                       *
  1305. *  Warpstock 99 in Atlanta  http://www.warpstock.org         *
  1306. **************************************************************
  1307. *  E-Mail (subject: Req. PGP Key) for Public Key             *
  1308. **************************************************************
  1309.  
  1310. --- WtrGate+ v0.93.p7 sn 165
  1311.  * Origin: Usenet: V.O.I.C.E., Indianapolis, IN (1:109/42)
  1312.  
  1313. +----------------------------------------------------------------------------+
  1314.  
  1315. From: esther@bitranch.com                               19-Sep-99 22:42:09
  1316.   To: All                                               20-Sep-99 00:54:19
  1317. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (large)
  1318.  
  1319. From: esther@bitranch.com (Esther Schindler)
  1320.  
  1321. On Sun, 19 Sep 1999 22:12:46, jsjones@selectric.net wrote:
  1322. | Any UGs up to this task?
  1323.  
  1324. The Phoenix OS/2 Society would entertain such a proposal.
  1325.  
  1326. (Like anything else, such a project needs someone to step forward as 
  1327. "champion.")
  1328.  
  1329. --Esther
  1330.  
  1331. --- WtrGate+ v0.93.p7 sn 165
  1332.  * Origin: Usenet: Frontier GlobalCenter Inc. (1:109/42)
  1333.  
  1334. +----------------------------------------------------------------------------+
  1335.  
  1336. From: rsteiner@visi.com                                 19-Sep-99 23:45:13
  1337.   To: All                                               20-Sep-99 03:38:12
  1338. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (large)
  1339.  
  1340. From: rsteiner@visi.com (Richard Steiner)
  1341.  
  1342. Here in comp.os.os2.apps, esther@bitranch.com (Esther Schindler)
  1343. spake unto us, saying:
  1344.  
  1345. >(I'd do it myself, but I'm a little overwhelmed at the moment, trying 
  1346. >to find out what actually happened. The apparency is that there was a 
  1347. >major miscommunication between several parties, all of whom have/had 
  1348. >the best interests of the OS/2 community in mind. I'm trying to figure
  1349. >out where the hairball came from, so it can be hacked up and dealt 
  1350. >with.)
  1351.  
  1352. Hehehe.  Your phrasing is very...ah...creative.  :-)
  1353.  
  1354. Whatever is happening is strange, yes.  I suspect many of us are quite
  1355. curious what The Real Story might be.
  1356.  
  1357. -- 
  1358.    -Rich Steiner  >>>--->  rsteiner@visi.com  >>>---> Bloomington, MN
  1359.      OS/2 + Linux + BeOS + FreeBSD + Solaris + WinNT4 + Win95 + DOS
  1360.       + VMWare + Fusion + vMac + Executor = PC Hobbyist Heaven! :-)
  1361.                      "Need know star RM pic"...??!?
  1362.  
  1363. --- WtrGate+ v0.93.p7 sn 165
  1364.  * Origin: Usenet: FIELDATA FORTRAN ENTHUSIASTS CLUB (1:109/42)
  1365.  
  1366. +----------------------------------------------------------------------------+
  1367.  
  1368. From: hamei@pacbell.net                                 20-Sep-99 04:30:14
  1369.   To: All                                               20-Sep-99 03:38:12
  1370. Subj: Re: Netlabs statement about the future of OS/2
  1371.  
  1372. From: hamei@pacbell.net
  1373.  
  1374. In <37e59724@news1.prserv.net>, askbill*AT*ibm.net writes:
  1375. >Folks,
  1376. >
  1377. >Note that Dan Casey's explanation (below) is both useful, logical, and
  1378. >believable.
  1379.  
  1380. snip good stuff >>
  1381.  
  1382. >Had OS/2 acheived "critical mass" a few years back, it might have been the
  1383. >same by now anyway. If IBM were to find itself in possession of a large
  1384. >percentage of the end-user market, they would probably run, not walk, for
  1385. >the nearest exit by selling off or spinning off that part of the business.
  1386.  
  1387. if wishes were horses, this beggar'd have a farm . . if IBM only *would*
  1388. spin off OS/2 to someone who wanted it, instead of this dog-in-the-manger 
  1389. act. Who is OS/2's worst enemy, class ? IBM !! get a divorce, Lou, then you 
  1390. can go back to hanging out with Joe Camel in front of the high schools. Let
  1391. the people inside IBM who like OS/2 do a 'leveraged executive  buy-out,'
  1392. get lean and mean and all that stock broker talk, just get the hell *out* of 
  1393. a business you don't want and let someone else have a go. Good luck.
  1394.  
  1395. > Their core strength lies in the boardroom, and they know it.
  1396. >
  1397.  
  1398. If their board room had any strength they'd divest themselves of something
  1399. they don't understand or want before its value was reduced to nothing. 
  1400. Unless they need some deductions . . . .
  1401.  
  1402.  
  1403. >Just my HK$ 0.155 worth...............
  1404. >
  1405. >YOMD!
  1406. >
  1407. >Bill Hacker
  1408.  
  1409.  
  1410. ----------------------------------------------------------
  1411. Härad Ængravvård
  1412. Windows NT - the Ornithopter of Operating Systems
  1413. -----------------------------------------------------------
  1414.  
  1415. --- WtrGate+ v0.93.p7 sn 165
  1416.  * Origin: Usenet: SBC Internet Services (1:109/42)
  1417.  
  1418. +----------------------------------------------------------------------------+
  1419.  
  1420. From: donnelly@tampabay.rr.com                          20-Sep-99 05:40:21
  1421.   To: All                                               20-Sep-99 03:38:12
  1422. Subj: Re: Netlabs statement about the future of OS/2
  1423.  
  1424. From: donnelly@tampabay.rr.com (Buddy Donnelly)
  1425.  
  1426. On Mon, 20 Sep 1999 04:30:28, hamei@pacbell.net a ┌crit dans un message:
  1427.  
  1428. > In <37e59724@news1.prserv.net>, askbill*AT*ibm.net writes:
  1429. > >Folks,
  1430. > >
  1431. > >Note that Dan Casey's explanation (below) is both useful, logical, and
  1432. > >believable.
  1433. > snip good stuff >>
  1434. snip all the rest of the good stuff
  1435. > ----------------------------------------------------------
  1436. > H└rad ╩ngravv┬rd
  1437. > Windows NT - the Ornithopter of Operating Systems
  1438. > -----------------------------------------------------------
  1439.  
  1440. More like, "The Icarus' Wings of Operating Systems"?
  1441.  
  1442. (I like ornithopters and the Leo who rode in on them.)
  1443.  
  1444. Good luck,
  1445.  
  1446. Buddy
  1447.  
  1448. Buddy Donnelly
  1449. donnelly@tampabay.rr.com
  1450.  
  1451.  
  1452. --- WtrGate+ v0.93.p7 sn 165
  1453.  * Origin: Usenet: RoadRunner - TampaBay (1:109/42)
  1454.  
  1455. +----------------------------------------------------------------------------+
  1456.  
  1457. From: lambache@biochem.mpg.de                           20-Sep-99 09:12:03
  1458.   To: All                                               20-Sep-99 05:19:29
  1459. Subj: Re: EMXBIND earns its name...
  1460.  
  1461. From: Armin Lambacher <lambache@biochem.mpg.de>
  1462.  
  1463. Marty <mamodeo@stny.rr.com> writes:
  1464.  
  1465. > Ilya Zakharevich wrote:
  1466. > > 
  1467. > > Somehow long-running foreground VIO application without I/O
  1468. > > "accumulates" (?) higher priority than this thread.  When you click
  1469. > > outside the VIO window, this thread is ready-to-run, but of too small
  1470. > > priority, so it goes into "starved" state.  After each MAXWAIT (from
  1471. > > config.sys) seconds its priority is bumped up one notch, until it is
  1472. > > above the priiority of the VIO application,
  1473. > > 
  1474. > > On my systems MAXWAIT==3, and I usually need to wait circa 6 sec for
  1475. > > window switch to happen.
  1476. > > 
  1477. > > Ilya
  1478. > That sounds about right.  Does this also explain why, while running some
  1479. > compute-intensive apps I see VIO programs such as TOP (which is not very
  1480. > compute-intensive itself) executing very slowly when they are in the
  1481. > background, but when they are brought to the foreground they execute at
  1482. > normal speed?
  1483.  
  1484. I have this on my system, too, but I noticed that I can switch the windows
  1485. fast if I use Ctrl-Esc an then choose from the process list. Do others
  1486. experience this also?
  1487.  
  1488. >  
  1489. > > P.S.  Aha, maybe it is a thread in some PM enhancer, not PM itself?
  1490. > >       I'm using NPSWPS.
  1491. > I don't run any such enhancers myself.  It has to be something internal
  1492. > to the PM or core OS.
  1493. > - Marty
  1494.  
  1495. No enhancers here
  1496.  
  1497. Armin
  1498.  
  1499.  
  1500. -- 
  1501. -------------------------------------------------------------------------------
  1502. -
  1503. Armin Lambacher                                 email: lambache@biochem.mpg.de
  1504.  
  1505. "Ich sag' nicht viel, aber was ich sag' ist Quatsch." (Pippi Langstrumpf)
  1506.  
  1507. "He, der Kerl hat 'ne Meise, aber Rueckenwind!" (thomas d)
  1508. -------------------------------------------------------------------------------
  1509. -
  1510.  
  1511. --- WtrGate+ v0.93.p7 sn 165
  1512.  * Origin: Usenet: Rechenzentrum der Max-Planck-Gesellschaft in Garc
  1513. (1:109/42)
  1514.  
  1515. +----------------------------------------------------------------------------+
  1516.  
  1517. From: lennart-remove-@plg.-remove-a.se                  20-Sep-99 09:01:08
  1518.   To: All                                               20-Sep-99 10:50:27
  1519. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (large)
  1520.  
  1521. From: "Lennart Gahm" <lennart-remove-@plg.-remove-a.se>
  1522.  
  1523. The Swedish OS/2 User Group could very well be a part of such a group.
  1524. We would be happy to offer a warp 4.5 client to our members.
  1525. And, if members wants to pay for fulltime support, we can set it up.
  1526. But we are too small to carry this "world wide".
  1527. In a first step SweOS2UG could cooperate with other scandinavian User Groups
  1528. but i
  1529. think all OS/2 User Groups need a global organization for this.
  1530.  
  1531. Lennart Gahm, Swedish OS/2 User Group
  1532.  
  1533. On Sun, 19 Sep 1999 22:12:46 GMT, jsjones@selectric.net wrote:
  1534. >Good idea and there are already such organizations in existence: the several 
  1535. >non-profit large OS/2 user groups, such as POSSI, SCOUG, etc. Either
  1536. individually or 
  1537. >as a joint venture, such groups could buy special licenses of WSEB 4.5 and 
  1538. >redistribute a client version to members, only. Apple has somewhat similar 
  1539. >agreements with user groups to distribute certain older software (at no
  1540. charge).
  1541. >
  1542. >This could be *much* better than the present and historical situation. User
  1543. groups 
  1544. >(UGs) are much better situated to provide support than a megacorp. IBM could 
  1545. >provide better bug fixes faster and cheaper if reports were funneled through
  1546. >few UG contacts. Increased revenues from sales and membership fees could
  1547. allow 
  1548. >UGs to fund ISVs. I've long hoped a group of sharp WPS and device driver 
  1549. >programmers would join together and form team -- called Portsmiths Group, or
  1550. such -- 
  1551. >-- to port other-platform applications and devices to OS/2. With salaries or
  1552. retainers 
  1553. >from UGs, good programmers wouldn't have to face shareware starvation to do 
  1554. >OS/2 work. Such a team could also contract with mainstream vendors to produce 
  1555.  
  1556. >(good) OS/2 versions, with little risk and overhead. And, so on...
  1557. >
  1558. >If IBM were to take this route, they could serve their existing customer base 
  1559. and 
  1560. >hedge their bets on NT in case the courts have the courage to call naked
  1561. naked 
  1562. >and in some substantive way break up the emperor's monopoly. And, they could 
  1563. >do so without granting an OS/2 monopoly to any one commercial concern.
  1564. >
  1565. >Any UGs up to this task?
  1566. >
  1567. >In <37e4cbfb.1002326@news.omen.net.au>, zayne@omen.com.au (Mooo) writes:
  1568. >>How about a Credit Union type of set up?  (I'm brainstorming here),
  1569. >>whereby those diehard OS/2 users who really care, and care enough to
  1570. >>front money, provide the startup capital for the OS/2 corporation via
  1571. >>the purchase of shares?  Those with the most shares have the most
  1572. >>votes etc etc.  You don't get access to the 'union' until you buy at
  1573. >>least one parcel of shares..this type of thing.  You want access to
  1574. >>Warp Client 4.5 as well as a swag of other OS/2 apps?  Fine, buy into
  1575. >>OS/2 Corporation, then as a member, you have access to all this fine
  1576. >>software at corporate rates.  Big bucks?  You bet, I'd imagine, in all
  1577. >>reality, if all you want is Warp Client 4.5 its gonna cost you US$600+
  1578. >>(remember we would need to buy the software -and- support the
  1579. >>underlying corporate structure...help staff, adminstrators etc).  Per
  1580. >>software pricing would get a lot better should you wish to partake in
  1581. >>the purchase of several packages.
  1582. >>
  1583. >>The crunch in all schemes of this type, and I've been watching with
  1584. >>interest for over a year, is that someone, and in fact a -lot- of
  1585. >>someones, has to make the first move.  A OS/2 corporation such as
  1586. >>thing can only be a success if it is large, and I mean that in IBM
  1587. >>terms.
  1588. >>
  1589. >>The underlying theme is that at no time does IBM receive a call from a
  1590. >>disgruntled user who cant get his 'dial other internet providers'
  1591. >>working.  All this user support is handled by OS/2 Corporation paid
  1592. >>support staff.
  1593. >>
  1594. >>If this sort of money is viewed as unrealistic, then my opinion is
  1595. >>that our requests for continued support from IBM is also unrealistic
  1596. >>and OS/2 will in fact die...slowly and horribly.
  1597. >
  1598. >selectric.net? think international business machines, instead.
  1599. >
  1600.  
  1601.  
  1602.  
  1603. --- WtrGate+ v0.93.p7 sn 165
  1604.  * Origin: Usenet: Telia Internet (1:109/42)
  1605.  
  1606. +----------------------------------------------------------------------------+
  1607.  
  1608. From: News@The-Net-4U.com                               20-Sep-99 09:51:24
  1609.   To: All                                               20-Sep-99 10:50:27
  1610. Subj: Re: Netlabs statement about the future of OS/2
  1611.  
  1612. From: News@The-Net-4U.com (M.P. van Dobben de Bruijn)
  1613.  
  1614.  
  1615. > What is required is a deliberately targeted campaign to convince IBM
  1616. > to update the client.  Note I say update.  We don't need a new OS we
  1617. > need an enhanced version of what we have now.
  1618.  
  1619. You're right short time we need a CDROM-refresh, to get around those
  1620. difficult installs, then fixpacking, installing Java, NS etc. etc. Longer term
  1621. we may need to put pressure on IBM to get an (affordable way to) upgrade.
  1622.  
  1623. Which makes the idea of an united we stand SOHO / Users buying and
  1624. pressure group the more interesting way out of this situation. 
  1625.  
  1626. Regards from Leeuwarden
  1627. Peter van Dobben de Bruijn
  1628. ---
  1629. usethenet.at.the-net-4u.com (at becomes @)
  1630. ----
  1631.  
  1632. --- WtrGate+ v0.93.p7 sn 165
  1633.  * Origin: Usenet: TeleKabel (1:109/42)
  1634.  
  1635. +----------------------------------------------------------------------------+
  1636.  
  1637. From: dcasey@ibm.net                                    20-Sep-99 05:34:21
  1638.   To: All                                               20-Sep-99 10:50:27
  1639. Subj: Re: Netlabs statement about the future of OS/2
  1640.  
  1641. From: dcasey@ibm.net (Dan Casey)
  1642.  
  1643. In article <37E57C3F.35D03B66@WarpCity.com>,
  1644. Tim Martin <OS2Guy@WarpCity.com> wrote:
  1645.  
  1646. >P.S.  Why are we now hearing the meeting didn't take
  1647. >place with Brad specifically said it did?  Whom are we
  1648. >to believe here?
  1649.  
  1650. The report that "no meeting took place" was posted to the news page at
  1651. os2.org, and was attributed to an IBMer speaking at Warp Expo West on
  1652. Saturday, the 18th. I've been in contact with someone who attended
  1653. this presenataion, and reported what he had heard. I am awaiting
  1654. confirmation from the IBMer before I post anything else. While I
  1655. believe the information  I have to be correct, I'd prefer to get
  1656. confirmation and clarification, rather than risk starting unfounded
  1657. rumors.
  1658.  
  1659. The information that I posted earlier came directly from Timothy
  1660. Sipples, in a personal e-mail, and was quoted verbatim. He also added
  1661. that he was "in the dark" as to the rest of the details.
  1662.  
  1663. If I get a response to my post for more information, I'll post it
  1664. here, and to various other sites such as news@os2voice.org and
  1665. Warpcast.
  1666.  
  1667.  
  1668. --
  1669. **************************************************************
  1670. *  Dan Casey                                                 *
  1671. *  President                                                 *
  1672. *  V.O.I.C.E. (Virtual OS/2 International Consumer Education *
  1673. *  http://www.os2voice.org                                   *
  1674. *  Abraxas on IRC                                            *
  1675. *  http://members.iquest.net/~dcasey                         *
  1676. *  Charter Associate member, Team SETI                       *
  1677. *  Warpstock 99 in Atlanta  http://www.warpstock.org         *
  1678. **************************************************************
  1679. *  E-Mail (subject: Req. PGP Key) for Public Key             *
  1680. **************************************************************
  1681.  
  1682. --- WtrGate+ v0.93.p7 sn 165
  1683.  * Origin: Usenet: V.O.I.C.E., Indianapolis, IN (1:109/42)
  1684.  
  1685. +----------------------------------------------------------------------------+
  1686.  
  1687. From: dcasey@ibm.net                                    20-Sep-99 05:43:29
  1688.   To: All                                               20-Sep-99 10:50:27
  1689. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (large)
  1690.  
  1691. From: dcasey@ibm.net (Dan Casey)
  1692.  
  1693. In article <yddF3.4261$RS3.45004@ha1>, jsjones@selectric.net wrote:
  1694. >
  1695. >Any UGs up to this task?
  1696. >
  1697.  
  1698. VOICE is already in discussions on a similar "proposal". There are
  1699. several articles published in the newsletter from Lynn Maxson, under
  1700. the title "Warpicity Proposal". We're in the process, now, of ironing
  1701. out details and legalese "stuff". We (VOICE) are not getting into this
  1702. as strictly a "VOICE Project". We will need (and ask for) the
  1703. cooperation of many other OS/2 groups, and the project and funding
  1704. will start out as and be separate from VOICE itself.
  1705.  
  1706. It is our hope that at least the organizational details can be ironed
  1707. out before Warpstock 99. Stay tuned :-)
  1708.  
  1709. --
  1710. **************************************************************
  1711. *  Dan Casey                                                 *
  1712. *  President                                                 *
  1713. *  V.O.I.C.E. (Virtual OS/2 International Consumer Education *
  1714. *  http://www.os2voice.org                                   *
  1715. *  Abraxas on IRC                                            *
  1716. *  http://members.iquest.net/~dcasey                         *
  1717. *  Charter Associate member, Team SETI                       *
  1718. *  Warpstock 99 in Atlanta  http://www.warpstock.org         *
  1719. **************************************************************
  1720. *  E-Mail (subject: Req. PGP Key) for Public Key             *
  1721. **************************************************************
  1722.  
  1723. --- WtrGate+ v0.93.p7 sn 165
  1724.  * Origin: Usenet: V.O.I.C.E., Indianapolis, IN (1:109/42)
  1725.  
  1726. +----------------------------------------------------------------------------+
  1727.  
  1728. From: zayne@omen.com.au                                 20-Sep-99 12:24:00
  1729.   To: All                                               20-Sep-99 14:52:05
  1730. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (larger)
  1731.  
  1732. From: zayne@omen.com.au (Mooo)
  1733.  
  1734. "Lennart Gahm" <lennart-remove-@plg.-remove-a.se> wrote:
  1735.  
  1736. >The Swedish OS/2 User Group could very well be a part of such a group.
  1737. >We would be happy to offer a warp 4.5 client to our members.
  1738. >And, if members wants to pay for fulltime support, we can set it up.
  1739. >But we are too small to carry this "world wide".
  1740. >In a first step SweOS2UG could cooperate with other scandinavian User Groups
  1741. >but i
  1742. >think all OS/2 User Groups need a global organization for this.
  1743.  
  1744. In my humble opinion, the basic problem in getting anything of this
  1745. type off the ground is money.  No-one wants to commit any cash until a
  1746. certain outcome is provided.
  1747.  
  1748. That is why I mentioned in the beginning of this thread that start up
  1749. capital would need to be viewed as 'venture capital' - in other words,
  1750. money you're willing to lose.
  1751.  
  1752. Now the trick is that in a corporate sense, venture capital is risked
  1753. by investors against the prospect of higher than average returns.  
  1754.  
  1755. It is for this reason that although the major initial motivation force
  1756. could probably only be provided by one of the largest OS/2 interest
  1757. groups, it could not in fact end up being run by one.  Such a scenario
  1758. needs to provide something exceptional to the originating investors.
  1759. Whether this be permant board membership, financial gain, blah blah,
  1760. there needs to be some real and physical reason for initial investors
  1761. to plonk down their 'venture cash'.
  1762.  
  1763. User groups are traditionally non-profit, and this is as it should be.
  1764. Corporations are traditionally profit making and sharing, and this is
  1765. also as it should be (in a capitalist world anyway).  What really
  1766. needs to happen is for large OS/2 oriented business organisations to
  1767. get involved at some point fairly early in the proceedings (by large,
  1768. I still mean smaller than those of direct interest to IBM).
  1769.  
  1770. A coalition of businesses whose money making ventures rely upon Warp
  1771. Server, Warp Client and the spinoff technologies (ie, those with a
  1772. vested interest in maintaining OS/2 as a viable marketplace
  1773. alternative) would need to appear and 'buy into' the OS/2 Corporation
  1774. at an early stage.  End users of course are required also, in fact
  1775. 10's of thousands of them would be ideal, but I foresee difficulty in
  1776. managing to get 10 or 20 thousand home users feeling confident enough
  1777. to throw in US$600 each in order to kick off the project.
  1778.  
  1779. You see immediately the difficulty with basing such a venture entirely
  1780. upon end users.  US$4-5 Million would be a realistic starting figure
  1781. to launch an OS/2 corporation, fund its initiation, wages for support
  1782. staff and enough capital to outright purchase say 10K licences of Warp
  1783. 4.5 (client..??) at around say US$150.00 a shot (potentially cheaper?
  1784. I'd say so).  
  1785.  
  1786. As I said initially, you could not wander off to IBM HQ and ask for 10
  1787. or 20 licences per month.  The Corp. would need to act as a large
  1788. financial institution would, buy the per seat licences in one huge
  1789. deal.  At that time negotiations for guarenteed support dates, fixpack
  1790. availability and access to Software Choice would also be made.
  1791.  
  1792. If this idea is left too late, most/all business currently earning a
  1793. living with OS/2 rollouts (or majority rollouts) will have already
  1794. moved on to find different ways to support themselves.  
  1795.  
  1796. Now, whilst I don't necessarily view the statement by Brad Wardell of
  1797. Stardock to be the final condemnation of OS/2 Client, it does bode
  1798. badly; if for no other reason than to scare the hell out of the
  1799. remaining OS/2 ISV's and also those businesses who's livelihood
  1800. depends upon OS/2.  All businesses who want to stay in business have
  1801. to project (using known information) into the future and try to
  1802. compensate to make sure they can maximise gain in their market niche.
  1803. What this means is that we cannot afford to wait and see what happens.
  1804. By the time we get a 'yay or nay' from IBM, it will be too late - even
  1805. if sometime in late 2000 they do cave in and present us all with a new
  1806. Client.
  1807.  
  1808. This, I think, is where the major user groups will play a huge roll.
  1809. We need a road map, or strategy, for the next 6-12 months.  Contact
  1810. with ISV's and more importantly OS/2 based or majority based business
  1811. needs to be made and asked for a commitment - promisary at first sure,
  1812. but some basic working figures need to be thrashed out (if theres no
  1813. real interest, this is all a pipe dream).  
  1814.  
  1815. To gain promisary indications from business, a tangible benefit needs
  1816. to be presented, by tangible, I mean other than the simple philosophic
  1817. point of view that we all wish to see OS/2 continue with a bright and
  1818. long future.  For the most part, at this early stage, I think
  1819. promisaries from end users can be ignored.  I feel that a good number,
  1820. probably enough, end users would turn up with cash in hand when a
  1821. product is actually available for sale.
  1822.  
  1823. Remember that a commercial product, by its very nature, needs cashflow
  1824. in order to survive.  Cashflow of the order required to fund 'OS/2
  1825. Corporation' can realistically only be provided by businesses who keep
  1826. rolling the product out into the business marketplace as solutions for
  1827. their customers.
  1828.  
  1829. We have the means to settle this issue once and for all.  If
  1830. sufficient support for an 'OS/2 Corporation' does not exist today, it
  1831. never will.  Should the current state of the rumor nation turn out to
  1832. be true, and IBM is not willing to retail a new Warp client, the OS/2
  1833. community will start shedding users, home users, business users at an
  1834. exponential rate starting pretty much from now.  What will be left
  1835. will be a clone of the Amiga community, with a handful of diehard
  1836. users worldwide with plenty of dreams, but no ability, and no numbers
  1837. left to put anything into action.
  1838.  
  1839. Craig
  1840.  
  1841.  
  1842.  
  1843.  
  1844.  
  1845.  
  1846.  
  1847.  
  1848.  
  1849. --- WtrGate+ v0.93.p7 sn 165
  1850.  * Origin: Usenet: Nothing I say is my own opinion (1:109/42)
  1851.  
  1852. +----------------------------------------------------------------------------+
  1853.  
  1854. From: esther@bitranch.com                               20-Sep-99 13:32:29
  1855.   To: All                                               20-Sep-99 14:52:05
  1856. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (large)
  1857.  
  1858. From: esther@bitranch.com (Esther Schindler)
  1859.  
  1860. On Mon, 20 Sep 1999 04:45:27, rsteiner@visi.com (Richard Steiner) 
  1861. wrote:
  1862.  
  1863. | Whatever is happening is strange, yes.  I suspect many of us are quite
  1864. | curious what The Real Story might be.
  1865.  
  1866. Indeed.
  1867.  
  1868. But be aware that, to find out, we'll have to gaze into the gaping maw
  1869. of IBM politics. It's entirely possible that we'll _never_ find out 
  1870. what actually happened.
  1871.  
  1872. --Esther 
  1873.  
  1874.  
  1875. --- WtrGate+ v0.93.p7 sn 165
  1876.  * Origin: Usenet: Frontier GlobalCenter Inc. (1:109/42)
  1877.  
  1878. +----------------------------------------------------------------------------+
  1879.  
  1880. From: esther@bitranch.com                               20-Sep-99 13:37:19
  1881.   To: All                                               20-Sep-99 14:52:05
  1882. Subj: Re: Netlabs statement about the future of OS/2
  1883.  
  1884. From: esther@bitranch.com (Esther Schindler)
  1885.  
  1886. On Mon, 20 Sep 1999 01:15:33, Tarquelne <osric@apk.net> wrote:
  1887.  
  1888. | I imagine that when turned
  1889. | down the Stardock rep said, "Well, are you going to do a client." 
  1890. | and the IBM rep said "We have no plans at this time." and the
  1891. | statement above is simply a report of the above exchange.
  1892.  
  1893. I recommend you don't make additional assumptions. The waters are 
  1894. already muddied... there's no reason to stir them.
  1895.  
  1896. Let's find out what _did_ happen, instead of speculating on what 
  1897. _might_ have happened, okay?
  1898.  
  1899. --Esther 
  1900.  
  1901.  
  1902. --- WtrGate+ v0.93.p7 sn 165
  1903.  * Origin: Usenet: Frontier GlobalCenter Inc. (1:109/42)
  1904.  
  1905. +----------------------------------------------------------------------------+
  1906.  
  1907. From: rjf@yyycomasia.com                                20-Sep-99 14:02:04
  1908.   To: All                                               20-Sep-99 14:52:05
  1909. Subj: Re: Netlabs statement about the future of OS/2
  1910.  
  1911. From: rjf@yyycomasia.com (rj friedman)
  1912.  
  1913. On Sat, 18 Sep 1999 19:45:51, lifedata@xxvol.com wrote:
  1914.  
  1915. ε But the IBM message was NOT a Stardock message.  The IBM message was
  1916. εthat no one, not Stardock, not IBM, not anybody would be doing an OS/2
  1917. client...
  1918.  
  1919. Where did you get that information from? I certainly hope it
  1920. wasn't based on Brad's statement of events. If there's one 
  1921. thing I have learned from dealing with Brad in these 
  1922. newsgroups, it is that he paints an EXTREMELY one sided 
  1923. picture of the events that take place. A picture designed to
  1924. make his `opponents' appear completely in the wrong, and 
  1925. himself completely in the right.
  1926.  
  1927. εI fail to see how this makes either a great villian out of Stardock or a hero
  1928. εout of IBM.  Let's face it.  IBM doesn't want a popular client; they want a
  1929. ε"tons-of-money" business system.
  1930.  
  1931. Said "tons-of-money" business system allowing us to reap the
  1932. benefits of updates and fixes and browsers and productivity 
  1933. suites, drivers, and Java for free - or next to it.
  1934.  
  1935. Whoop-de-doo, let's bash IBM for concentrating on the group 
  1936. of customers that bring in the money that only lets us have 
  1937. the best desktop OS out there for next to nothing.
  1938.  
  1939. Let's all declare OS/2 dead and jump ship because Stardock 
  1940. couldn't present a business plan that would convince IBM it 
  1941. was worth the risk to entrust OS/2 in their hands.
  1942.  
  1943.  
  1944. ________________________________________________________
  1945.  
  1946. [RJ]                 OS/2 - Live it, or live with it. 
  1947. rj friedman          Team ABW              
  1948. Taipei, Taiwan       rjf@yyycomasia.com 
  1949.  
  1950. To send email - remove the `yyy'
  1951. ________________________________________________________
  1952.  
  1953. --- WtrGate+ v0.93.p7 sn 165
  1954.  * Origin: Usenet: SEEDNet News Service (1:109/42)
  1955.  
  1956. +----------------------------------------------------------------------------+
  1957.  
  1958. From: rjf@yyycomasia.com                                20-Sep-99 14:19:29
  1959.   To: All                                               20-Sep-99 14:52:05
  1960. Subj: Re: Netlabs statement about the future of OS/2
  1961.  
  1962. From: rjf@yyycomasia.com (rj friedman)
  1963.  
  1964. On Sun, 19 Sep 1999 15:51:15, lifedata@xxvol.com wrote:
  1965.  
  1966. εNote the wording:  "IBM has indicated that they have no plans for an OS/2
  1967. based 
  1968. εclient of their own."
  1969.  
  1970. Note the source of that statement - it was not IBM - and 
  1971. give it the credence it deserves. Hint: the individual 
  1972. responsible for that statement has a rather strong 
  1973. proclivity toward presenting his side of the story as the 
  1974. only side.
  1975.  
  1976.  
  1977.  
  1978.  
  1979. ________________________________________________________
  1980.  
  1981. [RJ]                 OS/2 - Live it, or live with it. 
  1982. rj friedman          Team ABW              
  1983. Taipei, Taiwan       rjf@yyycomasia.com 
  1984.  
  1985. To send email - remove the `yyy'
  1986. ________________________________________________________
  1987.  
  1988. --- WtrGate+ v0.93.p7 sn 165
  1989.  * Origin: Usenet: SEEDNet News Service (1:109/42)
  1990.  
  1991. +----------------------------------------------------------------------------+
  1992.  
  1993. From: nospam@nospam.com                                 20-Sep-99 11:57:29
  1994.   To: All                                               20-Sep-99 14:52:05
  1995. Subj: Re: *.c versus *.cpp and libraries - EMX
  1996.  
  1997. From: nospam@nospam.com (Bruce LaZerte)
  1998.  
  1999. On Mon, 20 Sep 1999 01:51:19, Hubert Chan <hubert@ugrad.cs.ualberta.ca> 
  2000. wrote:
  2001.  
  2002. > The way to fix this in the other library is to write
  2003. >
  2004. > extern "C" {
  2005. > #include <headerfile.h>
  2006. > }
  2007. >  
  2008. > where headerfile.h is the header file of the library that doesn't link
  2009. > properly.
  2010.  
  2011. That fixed it.  (I luv this list ...)
  2012. And you're right, the other header file already had the code 
  2013.  
  2014. Many thanks, Bruce L.
  2015.  
  2016. ----------------------
  2017. Bruce LaZerte     
  2018. Muskoka,Ontario,Canada
  2019. freshwat at muskoka dot com    
  2020.  
  2021. --- WtrGate+ v0.93.p7 sn 165
  2022.  * Origin: Origin Line 1 Goes Here (1:109/42)
  2023.  
  2024. +----------------------------------------------------------------------------+
  2025.  
  2026. From: fmesnier@dial.oleane.com                          20-Sep-99 17:35:23
  2027.   To: All                                               20-Sep-99 14:52:06
  2028. Subj: Already use hyper file ?
  2029.  
  2030. From: Franck Mesnier <fmesnier@dial.oleane.com>
  2031.  
  2032. Hi
  2033.  
  2034. Is there someone who has already used Hyper File for OS/2, it's a database 
  2035. engine used under Dos, but there's equally exists equally under OS/2 ?
  2036.  
  2037. Thanks
  2038.  
  2039. -----------------------------------
  2040. From the OS/2 WARP v4 fp10
  2041. Desktop of Franck MESNIER
  2042. 34140 LOUPIAN
  2043. FRANCE
  2044. fmesnier@dial.oleane.com
  2045. ICQ : 26368765
  2046. -----------------------------------
  2047.  
  2048. --- WtrGate+ v0.93.p7 sn 165
  2049.  * Origin: Usenet: Guest of OLEANE (1:109/42)
  2050.  
  2051. +----------------------------------------------------------------------------+
  2052.  
  2053. From: hamei@pacbell.net                                 20-Sep-99 19:06:01
  2054.   To: All                                               20-Sep-99 20:06:16
  2055. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (larger)
  2056.  
  2057. From: hamei@pacbell.net
  2058.  
  2059. In <37e61cbd.742201@news.omen.net.au>, zayne@omen.com.au (Mooo) writes:
  2060. >
  2061.  
  2062. snipped perceptive analysis >>
  2063.  
  2064. >To gain promisary indications from business, a tangible benefit needs
  2065. >to be presented, by tangible, I mean other than the simple philosophic
  2066. >point of view that we all wish to see OS/2 continue with a bright and
  2067. >long future.  For the most part, at this early stage, I think
  2068. >promisaries from end users can be ignored.  I feel that a good number,
  2069. >probably enough, end users would turn up with cash in hand when a
  2070. >product is actually available for sale.
  2071. >
  2072. >Remember that a commercial product, by its very nature, needs cashflow
  2073. >in order to survive.  Cashflow of the order required to fund 'OS/2
  2074. >Corporation' can realistically only be provided by businesses who keep
  2075. >rolling the product out into the business marketplace as solutions for
  2076. >their customers.
  2077. >
  2078. >We have the means to settle this issue once and for all.  If
  2079. >sufficient support for an 'OS/2 Corporation' does not exist today, it
  2080. >never will.  Should the current state of the rumor nation turn out to
  2081. >be true, and IBM is not willing to retail a new Warp client, the OS/2
  2082. >community will start shedding users, home users, business users at an
  2083. >exponential rate starting pretty much from now.  What will be left
  2084. >will be a clone of the Amiga community, with a handful of diehard
  2085. >users worldwide with plenty of dreams, but no ability, and no numbers
  2086. >left to put anything into action.
  2087. >
  2088.  
  2089.  
  2090. there's only one aspect you've not covered here, IMO - OS/2 needs to be
  2091. removed from IBM's clutches to survive in any form. No one with a brain,
  2092. and *especially* no one with OS/2 experience, business-wise or otherwise,
  2093. will ever trust IBM with their future again.  If your new corporation can 
  2094. OWN OS/2 then we'd be rushing to subscribe - if we'll just be sending more
  2095. money down the IBM tubes so they can decide in two years that "customers
  2096. should be assisted to migrate to 'Plan D' . . . . ."
  2097.  
  2098. **** me once, shame on you
  2099. **** me twice, toss-up
  2100. **** me three times, shame on me
  2101.  
  2102.  
  2103.  
  2104. >Craig
  2105. >
  2106.  
  2107. skål !
  2108.  
  2109. ----------------------------------------------------------
  2110. Härad Ængravvård
  2111. Windows NT - the Ornithopter of Operating Systems
  2112. -----------------------------------------------------------
  2113.  
  2114. --- WtrGate+ v0.93.p7 sn 165
  2115.  * Origin: Usenet: SBC Internet Services (1:109/42)
  2116.  
  2117. +----------------------------------------------------------------------------+
  2118.  
  2119. From: dcasey@ibm.net                                    20-Sep-99 18:42:19
  2120.   To: All                                               20-Sep-99 21:25:21
  2121. Subj: Re: Netlabs statement about the future of OS/2
  2122.  
  2123. From: dcasey@ibm.net (Dan Casey)
  2124.  
  2125. In article <LoEFmgJJ9ecw-pn2-3ZvQNoQd4ft6@agave.bitranch.com>,
  2126. esther@bitranch.com (Esther Schindler) wrote:
  2127. >On Mon, 20 Sep 1999 01:15:33, Tarquelne <osric@apk.net> wrote:
  2128. >
  2129. >| I imagine that when turned
  2130. >| down the Stardock rep said, "Well, are you going to do a client."
  2131. >| and the IBM rep said "We have no plans at this time." and the
  2132. >| statement above is simply a report of the above exchange.
  2133. >
  2134. >I recommend you don't make additional assumptions. The waters are
  2135. >already muddied... there's no reason to stir them.
  2136. >
  2137. >Let's find out what _did_ happen, instead of speculating on what
  2138. >_might_ have happened, okay?
  2139. >
  2140. >--Esther
  2141.  
  2142. I agree 110% with Esther on this. There is already  too much
  2143. speculation, and too many conflicting reports on this subject as it
  2144. is.
  2145.  
  2146. I have several e-mail  messages awaiting replies from "those who
  2147. should know", and I'll post something when I get straight and factual
  2148. answers. Until then, I'll keep my opinions and info to myself. As soon
  2149. as I know,  you  all will  know.
  2150.  
  2151.  
  2152.  
  2153. --
  2154. **************************************************************
  2155. *  Dan Casey                                                 *
  2156. *  President                                                 *
  2157. *  V.O.I.C.E. (Virtual OS/2 International Consumer Education *
  2158. *  http://www.os2voice.org                                   *
  2159. *  Abraxas on IRC                                            *
  2160. *  http://members.iquest.net/~dcasey                         *
  2161. *  Charter Associate member, Team SETI                       *
  2162. *  Warpstock 99 in Atlanta  http://www.warpstock.org         *
  2163. **************************************************************
  2164. *  E-Mail (subject: Req. PGP Key) for Public Key             *
  2165. **************************************************************
  2166.  
  2167. --- WtrGate+ v0.93.p7 sn 165
  2168.  * Origin: Usenet: V.O.I.C.E., Indianapolis, IN (1:109/42)
  2169.  
  2170. +----------------------------------------------------------------------------+
  2171.  
  2172. From: dbaumanns@gmx.de                                  21-Sep-99 00:14:22
  2173.   To: All                                               20-Sep-99 21:25:21
  2174. Subj: Getting FilesystemID - unusual return-values???
  2175.  
  2176. From: Dirk Baumanns <dbaumanns@gmx.de>
  2177.  
  2178. Hi,
  2179.  
  2180. i use the API-Call DosQueryFSInfo for getting the ID of the FileSystem,
  2181. but i get only 0-values - - it makes no difference when i
  2182. select different drives with different filesystems (hpfs, fat ...)-
  2183. the value i get is always 0 -
  2184.  
  2185. so:
  2186. * are there errors in my c-code?
  2187. * are there errors in the api? (i read carefully the ibm redbooks, but
  2188. there are no hints, which tell me the id of a hpfs-drive ...)
  2189. * or is it just the wrong api-call to get such info?
  2190. * how can i get more information about the used filesystem (hpfs, fat)?
  2191.  
  2192.  
  2193. thanks, dirk
  2194.  
  2195. - i used the ibm c/c++ set 2.01 with latest fixes and warp4-
  2196.  
  2197. here is my short test-programm:
  2198.  
  2199.  
  2200. #define INCL_DOS
  2201. #define INCL_DOSFILEMGR
  2202. #define INCL_DOSDEVIOCTL
  2203. #define INCL_ERRORS
  2204.  
  2205. #include <os2.h>
  2206. #include <string.h>
  2207. #include <stdlib.h>
  2208.  
  2209. int main (void)
  2210. {
  2211.   FSALLOCATE info={0}; 
  2212.   APIRET  rc=NO_ERROR;  
  2213.   ULONG fstyp=0;
  2214.   ULONG uldrivenum=0;
  2215.   int i=0;
  2216.   /* A=1 B=2 C=3 ... */
  2217.   printf("Type the number for the drive 1 2 3 ...\n");
  2218.   /* read number */
  2219.   scanf("%d", i); 
  2220.   /* convert to ulong */
  2221.   uldrivenum=(ULONG) i;
  2222.   /* DosError(FERR_DISABLEHARDERR); */
  2223.   rc = DosQueryFSInfo(uldrivenum,                     
  2224.                       FSIL_ALLOC, 
  2225.                       &info,    
  2226.                       sizeof(info)); 
  2227.   /* DosError(FERR_ENABLEHARDERR); */
  2228.   if (rc == NO_ERROR)
  2229.   { 
  2230.       printf("OK\n");
  2231.       fstyp=info.idFileSystem;
  2232.            
  2233.       printf("Filesystemid %12ld %12ld", fstyp, info.idFileSystem);
  2234.  
  2235.   } else 
  2236.   {
  2237.     printf("Error: %d \n", rc); 
  2238.     return 1;
  2239.   };
  2240.       
  2241.   return 0;
  2242. }
  2243.  
  2244. --- WtrGate+ v0.93.p7 sn 165
  2245.  * Origin: Usenet: debitel.net - der Onlinedienst (1:109/42)
  2246.  
  2247. +----------------------------------------------------------------------------+
  2248.  
  2249. From: lifedata@xxvol.com                                20-Sep-99 09:58:23
  2250.   To: All                                               20-Sep-99 21:25:21
  2251. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (large)
  2252.  
  2253. From: lifedata@xxvol.com
  2254.  
  2255. esther@bitranch.com (Esther Schindler) said:
  2256.  
  2257. >It's entirely possible that we'll _never_ find out 
  2258. >what actually happened.
  2259.  
  2260. And it's entirely possible we'll never see another OS/2 client without
  2261. shelling
  2262. out $1000 each.
  2263.  
  2264. Jim L
  2265. Remove XX from address to Email
  2266. More gun laws will cure the nations ills - just like drug laws do.
  2267.  
  2268.  
  2269. --- WtrGate+ v0.93.p7 sn 165
  2270.  * Origin: Origin Line 1 Goes Here (1:109/42)
  2271.  
  2272. +----------------------------------------------------------------------------+
  2273.  
  2274. From: lifedata@xxvol.com                                20-Sep-99 09:54:18
  2275.   To: All                                               20-Sep-99 21:25:21
  2276. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (large)
  2277.  
  2278. From: lifedata@xxvol.com
  2279.  
  2280. "Lennart Gahm" <lennart-remove-@plg.-remove-a.se> said:
  2281.  
  2282. >In a first step SweOS2UG could cooperate with other scandinavian User Groups
  2283. >but i think all OS/2 User Groups need a global organization for this.
  2284.  
  2285. Well, go ahead and name one.  We desperately need more inane bashing threads.
  2286.  
  2287. Jim L
  2288. Remove XX from address to Email
  2289. More gun laws will cure the nations ills - just like drug laws do.
  2290.  
  2291.  
  2292. --- WtrGate+ v0.93.p7 sn 165
  2293.  * Origin: Origin Line 1 Goes Here (1:109/42)
  2294.  
  2295. +----------------------------------------------------------------------------+
  2296.  
  2297. From: lifedata@xxvol.com                                20-Sep-99 10:03:07
  2298.   To: All                                               20-Sep-99 21:25:21
  2299. Subj: Re: Netlabs statement about the future of OS/2
  2300.  
  2301. From: lifedata@xxvol.com
  2302.  
  2303. News@The-Net-4U.com (M.P. van Dobben de Bruijn) said:
  2304.  
  2305. >Longer term we may need to put pressure on IBM to get an
  2306. >(affordable way to) upgrade.
  2307.  
  2308. Affordable is precisely where IBM will never go.
  2309.  
  2310. Jim L
  2311. Remove XX from address to Email
  2312. More gun laws will cure the nations ills - just like drug laws do.
  2313.  
  2314.  
  2315. --- WtrGate+ v0.93.p7 sn 165
  2316.  * Origin: Origin Line 1 Goes Here (1:109/42)
  2317.  
  2318. +----------------------------------------------------------------------------+
  2319.  
  2320. From: OS2Guy@WarpCity.com                               20-Sep-99 08:09:09
  2321.   To: All                                               20-Sep-99 21:25:21
  2322. Subj: Re: Netlabs statement about the future of OS/2
  2323.  
  2324. From: Tim Martin <OS2Guy@WarpCity.com>
  2325.  
  2326. Dan Casey wrote:
  2327.  
  2328. > In article <37E57C3F.35D03B66@WarpCity.com>,
  2329. > Tim Martin <OS2Guy@WarpCity.com> wrote:
  2330. >
  2331. > >P.S.  Why are we now hearing the meeting didn't take
  2332. > >place with Brad specifically said it did?  Whom are we
  2333. > >to believe here?
  2334. >
  2335. > The report that "no meeting took place" was posted to the news page at
  2336. > os2.org, and was attributed to an IBMer speaking at Warp Expo West on
  2337. > Saturday, the 18th.
  2338.  
  2339. That report was published *verbatim* from Warp City without
  2340. our approval or authorization.
  2341.  
  2342. > I've been in contact with someone who attended
  2343. > this presenataion, and reported what he had heard.
  2344.  
  2345. And our reporter talked directly to the IBMer who made
  2346. the statement which is why we reported the news to Warp
  2347. City members.
  2348.  
  2349. > I am awaiting
  2350. > confirmation from the IBMer before I post anything else. While I
  2351. > believe the information  I have to be correct, I'd prefer to get
  2352. > confirmation and clarification, rather than risk starting unfounded
  2353. > rumors.
  2354.  
  2355. That same IBMer said much more on the subject but we haven't
  2356. reported it publicly because it is news we want to hold to our
  2357. vest for the time being.
  2358.  
  2359. > The information that I posted earlier came directly from Timothy
  2360. > Sipples, in a personal e-mail, and was quoted verbatim. He also added
  2361. > that he was "in the dark" as to the rest of the details.
  2362. >
  2363.  
  2364. And our German counterpart also spoke with Timothy Sipples
  2365. in a private email.
  2366.  
  2367. > If I get a response to my post for more information, I'll post it
  2368. > here, and to various other sites such as news@os2voice.org and
  2369. > Warpcast.
  2370.  
  2371. Thank you.
  2372.  
  2373. >
  2374. > --
  2375. > **************************************************************
  2376. > *  Dan Casey                                                 *
  2377. > *  President                                                 *
  2378. > *  V.O.I.C.E. (Virtual OS/2 International Consumer Education *
  2379. > *  http://www.os2voice.org                                   *
  2380. > *  Abraxas on IRC                                            *
  2381. > *  http://members.iquest.net/~dcasey                         *
  2382. > *  Charter Associate member, Team SETI                       *
  2383. > *  Warpstock 99 in Atlanta  http://www.warpstock.org         *
  2384. > **************************************************************
  2385. > *  E-Mail (subject: Req. PGP Key) for Public Key             *
  2386. > **************************************************************
  2387.  
  2388.  
  2389.  
  2390.  
  2391. --- WtrGate+ v0.93.p7 sn 165
  2392.  * Origin: Usenet: Warp City (http://warpcity.com) (1:109/42)
  2393.  
  2394. +----------------------------------------------------------------------------+
  2395.  
  2396. From: lifedata@xxvol.com                                20-Sep-99 12:39:16
  2397.   To: All                                               20-Sep-99 21:25:21
  2398. Subj: Re: Netlabs statement about the future of OS/2
  2399.  
  2400. From: lifedata@xxvol.com
  2401.  
  2402. rjf@yyycomasia.com (rj friedman) said:
  2403.  
  2404. >»Note the wording:  "IBM has indicated that they have no plans for an OS/2
  2405. >based  »client of their own."
  2406.  
  2407. >Note the source of that statement - it was not IBM - and 
  2408.  
  2409. The guy I was replying to said he had read Brad's statement and there was no
  2410. such thing in it.  You and he both consider Brad to be unreliable.  I didn't
  2411. resppond to that point and will not.
  2412.  
  2413. Jim L
  2414. Remove XX from address to Email
  2415. More gun laws will cure the nations ills - just like drug laws do.
  2416.  
  2417.  
  2418. --- WtrGate+ v0.93.p7 sn 165
  2419.  * Origin: Origin Line 1 Goes Here (1:109/42)
  2420.  
  2421. +----------------------------------------------------------------------------+
  2422.  
  2423. From: hamei@pacbell.net                                 21-Sep-99 03:01:23
  2424.   To: All                                               21-Sep-99 03:35:03
  2425. Subj: Re: Netlabs statement about the future of OS/2
  2426.  
  2427. From: hamei@pacbell.net
  2428.  
  2429. In <vZs53kDg6lOR090yn@ibm.net>, dcasey@ibm.net (Dan Casey) writes:
  2430. >In article <LoEFmgJJ9ecw-pn2-3ZvQNoQd4ft6@agave.bitranch.com>,
  2431. >esther@bitranch.com (Esther Schindler) wrote:
  2432. >>On Mon, 20 Sep 1999 01:15:33, Tarquelne <osric@apk.net> wrote:
  2433. >>
  2434. >>| I imagine 
  2435. >>
  2436. >>I recommend you don't make additional assumptions. The waters are
  2437. >>already muddied... there's no reason to stir them.
  2438. >>
  2439. >>Let's find out what _did_ happen, instead of speculating on what
  2440. >>_might_ have happened, okay?
  2441. >>
  2442. >>--Esther
  2443. >
  2444. >I agree 110% with Esther on this. There is already  too much
  2445. >speculation, and too many conflicting reports on this subject as it
  2446. >is.
  2447. >
  2448.  
  2449. In a nutshell, that's my beef with IBM. How about a little open and honest 
  2450. dissemination of intentions from the ONLY people who know their plans - 
  2451. IBM ? We all bought the product, we all have time and effort and money 
  2452. invested, whatever they want to do is their business, just TELL US ! then 
  2453. we can get on with our lives, decide what is best for us individually, not 
  2454. have to sift rumours and innuendo for scraps of insight.  Or does IBM shelter 
  2455. under the CIA umbrella now ? If anyone can be said to be responsible for the 
  2456. OS/2 FUD campaign, it'd be IBM for never being upfront with us. And YES, 
  2457. we deserve it - we bought the product, now come out and tell the truth,
  2458. get it over with !
  2459.  
  2460.  
  2461. >--
  2462. >**************************************************************
  2463. >*  Dan Casey                                                 *
  2464. >*  President                                                 *
  2465. >*  V.O.I.C.E. (Virtual OS/2 International Consumer Education *
  2466.  
  2467.  
  2468. skål !
  2469.  
  2470. ----------------------------------------------------------
  2471. Härad Ængravvård
  2472. Windows NT - the Ornithopter of Operating Systems
  2473. -----------------------------------------------------------
  2474.  
  2475. --- WtrGate+ v0.93.p7 sn 165
  2476.  * Origin: Usenet: SBC Internet Services (1:109/42)
  2477.  
  2478. +----------------------------------------------------------------------------+
  2479.  
  2480. From: rsteiner@visi.com                                 20-Sep-99 22:56:15
  2481.   To: All                                               21-Sep-99 03:35:03
  2482. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (large)
  2483.  
  2484. From: rsteiner@visi.com (Richard Steiner)
  2485.  
  2486. Here in comp.os.os2.apps, esther@bitranch.com (Esther Schindler)
  2487. spake unto us, saying:
  2488.  
  2489. >On Mon, 20 Sep 1999 04:45:27, rsteiner@visi.com (Richard Steiner) 
  2490. >wrote:
  2491. >
  2492. >| Whatever is happening is strange, yes.  I suspect many of us are quite
  2493. >| curious what The Real Story might be.
  2494. >
  2495. >Indeed.
  2496. >
  2497. >But be aware that, to find out, we'll have to gaze into the gaping maw
  2498. >of IBM politics. It's entirely possible that we'll _never_ find out 
  2499. >what actually happened.
  2500.  
  2501. Yes, that's possible.  Thank you for being a voice of sanity, Esther.
  2502.  
  2503. -- 
  2504.    -Rich Steiner  >>>--->  rsteiner@visi.com  >>>---> Bloomington, MN
  2505.      OS/2 + Linux + BeOS + FreeBSD + Solaris + WinNT4 + Win95 + DOS
  2506.       + VMWare + Fusion + vMac + Executor = PC Hobbyist Heaven! :-)
  2507.          Press CTRL-ALT-INS-DEL-END-HOME-SHIFT-PAUSE to continue.
  2508.  
  2509. --- WtrGate+ v0.93.p7 sn 165
  2510.  * Origin: Usenet: FIELDATA FORTRAN ENTHUSIASTS CLUB (1:109/42)
  2511.  
  2512. +----------------------------------------------------------------------------+
  2513.  
  2514. From: jpolt@bradnet.legend.co.uk                        21-Sep-99 09:09:09
  2515.   To: All                                               21-Sep-99 10:41:07
  2516. Subj: LockupOptions
  2517.  
  2518. From: jpolt@bradnet.legend.co.uk (John Poltorak)
  2519.  
  2520. Where can I find the layout for the PM_Lockup key LockupOptions in OS2.INI?
  2521.  
  2522. I would like to write a routine which will automatically update the lock up
  2523. password on a server periodically with a specified value.
  2524.  
  2525. --
  2526. John
  2527.  
  2528. --- WtrGate+ v0.93.p7 sn 165
  2529.  * Origin: Usenet: Legend Internet Ltd (1:109/42)
  2530.  
  2531. +----------------------------------------------------------------------------+
  2532.  
  2533. From: csaba.raduly@sophos.com                           21-Sep-99 12:17:09
  2534.   To: All                                               21-Sep-99 10:41:07
  2535. Subj: Re: Editor to use with Watcom C++ v11
  2536.  
  2537. From: Csaba Raduly <csaba.raduly@sophos.com>
  2538.  
  2539. Bruce LaZerte wrote:
  2540. > On Fri, 17 Sep 1999 16:04:18, SkidMARX@att.net wrote:
  2541. > > Anyway, I'm wondering what editor I should buy for use within the IDE?
  2542. > > Mr Ed?
  2543.  
  2544. Try FTE (Folding Text Editor). Has syntax highlighting.
  2545. Sources available. And it's free!
  2546.  
  2547. http://www.kiss.uni-lj.si/~k4fr0235/fte/
  2548.  
  2549. Csaba
  2550.  
  2551. -- 
  2552. -----BEGIN GEEK CODE BLOCK----- 
  2553. Version 3.1
  2554. GCS/>GMU d- s:- a30 C++$ UL+ P+>+++ L++ E- W+ N++ o? K? w++>$ O++$ M-
  2555. V- PS PE Y PGP- t+ 5 X++ R* tv++ b++ DI+++ D++ G- e+++ h-- r-- !y+
  2556. -----END GEEK CODE BLOCK----- 
  2557.  
  2558. Csaba Raduly,    Software Developer (OS/2),    Sophos Anti-Virus
  2559. mailto:csaba.raduly@sophos.com            http://www.sophos.com/
  2560. US Support +1 888 SOPHOS 9            UK Support +44 1235 559933
  2561. Life is complex, with real and imaginary parts.
  2562.  
  2563. --- WtrGate+ v0.93.p7 sn 165
  2564.  * Origin: Usenet: SOPHOS Plc (1:109/42)
  2565.  
  2566. +----------------------------------------------------------------------------+
  2567.  
  2568. From: nickdanger@null.spamTHIS.net                      21-Sep-99 06:56:08
  2569.   To: All                                               21-Sep-99 17:28:10
  2570. Subj: Re: Netlabs statement about the future of OS/2
  2571.  
  2572. From: "Nick Danger" <nickdanger@null.spamTHIS.net>
  2573.  
  2574. On 21 Sep 1999 12:56:16 GMT, Esther Schindler wrote:
  2575.  
  2576. > .....purposefully  vague.
  2577. > I'm not saying that this is the right thing to do, but it's a common 
  2578. > corporate thing to do. <sigh>
  2579.  
  2580. That's because it's a common lawyer thing to sue them
  2581. unless their predictions of the future are 100% accurate.
  2582.  
  2583.  
  2584. --- WtrGate+ v0.93.p7 sn 165
  2585.  * Origin: Usenet: World Wide Rants (1:109/42)
  2586.  
  2587. +----------------------------------------------------------------------------+
  2588.  
  2589. From: esther@bitranch.com                               21-Sep-99 16:59:26
  2590.   To: All                                               21-Sep-99 17:28:11
  2591. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (large)
  2592.  
  2593. From: esther@bitranch.com (Esther Schindler)
  2594.  
  2595. On Tue, 21 Sep 1999 15:17:15, Tim Martin <OS2Guy@WarpCity.com> wrote:
  2596.  
  2597. | I chose to speak out about it, to let OS/2 users
  2598. | know and to not sweep it under the rug or protect the guilty.
  2599.  
  2600. So you say.
  2601.  
  2602. You haven't even backed up your claims that harm was done to the OS/2 
  2603. community.
  2604.  
  2605. When someone gives me information in confidence, I keep that 
  2606. confidence.
  2607.  
  2608. --Esther
  2609.  
  2610.  
  2611. --- WtrGate+ v0.93.p7 sn 165
  2612.  * Origin: Usenet: Frontier GlobalCenter Inc. (1:109/42)
  2613.  
  2614. +----------------------------------------------------------------------------+
  2615.  
  2616. From: ivan@protein.bio.msu.su                           21-Sep-99 17:55:17
  2617.   To: All                                               21-Sep-99 17:28:11
  2618. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (large)
  2619.  
  2620. From: "Ivan Adzhubei" <ivan@protein.bio.msu.su>
  2621.  
  2622. In <LoEFmgJJ9ecw-pn2-8d6cPSEIjuP4@agave.bitranch.com>, on 09/21/99 
  2623.    at 12:41 PM, esther@bitranch.com (Esther Schindler) said:
  2624.  
  2625. >| > The apparency is that there was a 
  2626. >| >major miscommunication between several parties, all of whom have/had 
  2627. >| >the best interests of the OS/2 community in mind. I'm trying to figure
  2628. >| >out where the hairball came from, so it can be hacked up and dealt 
  2629. >| >with.)
  2630. >|  
  2631. >| Esther, does this mean that your were privy to inside information
  2632. >| BEFORE the fateful announcement, and that your inside information
  2633. >| pointed to something OTHER than the real outcome?
  2634.  
  2635. >Let's just say that I know more than is/was publicly available.
  2636.  
  2637. And it is now apparent that Stardock was not the only company
  2638. approaching IBM with OEM contract plan concerning Warp 4.5 client.
  2639. According to Warpcast, Serenity Systems also made (or is in the process
  2640. of preparing) a similar proposal (see
  2641. http://www.os2ss.com/warpcast/wc4111.html) and although the phrasing
  2642. used in the above statement is extremely careful and as unclear as
  2643. possible ;-), it looks like IBM was not as definite with their proposal
  2644. yet as with Stardock's. Which IMHO makes sense because Serenity Systems
  2645. is specializing on exactly this kind of solutions (packaging of custom
  2646. OS/2 client installations).
  2647.  
  2648. Cheers,
  2649. Ivan
  2650.  
  2651. -- 
  2652. -----------------------------------------------------------
  2653. "Ivan Adzhubei" <ivan@protein.bio.msu.su>
  2654. -----------------------------------------------------------
  2655.  
  2656. --- WtrGate+ v0.93.p7 sn 165
  2657.  * Origin: Usenet: Moscow State University (1:109/42)
  2658.  
  2659. +----------------------------------------------------------------------------+
  2660.  
  2661. From: esther@bitranch.com                               21-Sep-99 14:15:06
  2662.   To: All                                               21-Sep-99 17:28:12
  2663. Subj: Re: Netlabs statement about the future of OS/2
  2664.  
  2665. From: esther@bitranch.com (Esther Schindler)
  2666.  
  2667. On Tue, 21 Sep 1999 13:56:17, "Nick Danger" 
  2668. <nickdanger@null.spamTHIS.net> wrote:
  2669.  
  2670. | That's because it's a common lawyer thing to sue them
  2671. | unless their predictions of the future are 100% accurate.
  2672.  
  2673. Yup. 
  2674.  
  2675.  
  2676. --- WtrGate+ v0.93.p7 sn 165
  2677.  * Origin: Usenet: Frontier GlobalCenter Inc. (1:109/42)
  2678.  
  2679. +----------------------------------------------------------------------------+
  2680.  
  2681. From: OS2Guy@WarpCity.com                               21-Sep-99 08:17:07
  2682.   To: All                                               21-Sep-99 17:28:12
  2683. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (large)
  2684.  
  2685. From: Tim Martin <OS2Guy@WarpCity.com>
  2686.  
  2687. Esther Schindler wrote:
  2688.  
  2689. > |
  2690. > | Esther, does this mean that your were privy to inside information
  2691. > | BEFORE the fateful announcement, and that your inside information
  2692. > | pointed to something OTHER than the real outcome?
  2693. >
  2694. > Let's just say that I know more than is/was publicly available.
  2695. >
  2696.  
  2697. As do I Esther.  I chose to speak out about it, to let OS/2 users
  2698. know and to not sweep it under the rug or protect the guilty.
  2699. Sad that you can't do the same but par for the Esther course.
  2700.  
  2701. Tim Martin
  2702. The OS/2 Guy
  2703. Warp City
  2704. http://warpcity.com
  2705. "E-ride the wild surf to Warp City!"
  2706.  
  2707.  
  2708. --- WtrGate+ v0.93.p7 sn 165
  2709.  * Origin: Usenet: Warp City (http://warpcity.com) (1:109/42)
  2710.  
  2711. +----------------------------------------------------------------------------+
  2712.  
  2713. From: mamodeo@stny.rr.com                               21-Sep-99 15:09:22
  2714.   To: All                                               21-Sep-99 17:28:12
  2715. Subj: Re: EMXBIND earns its name...
  2716.  
  2717. From: Marty <mamodeo@stny.rr.com>
  2718.  
  2719. Ian Harvey wrote:
  2720. > Threads running in the foreground session get a priority boost within
  2721. > their priority class.  Hence when a TOP process running in the
  2722. > foreground session decides that it needs to refresh its screen (or
  2723. > whatever) it will get the CPU in preference to the compute intensive
  2724. > process executing in a background session.  (Conversely if TOP is in the
  2725. > background then it may have to wait - this all assumes that the threads
  2726. > involved haven't done something silly with their priority level or
  2727. > class.)
  2728.  
  2729. I know there is a setting in the config.sys that should change this and
  2730. I have set it off, but still see the symptoms described.  Does this
  2731. accumulation still happen in spite of this setting?  If so, what does
  2732. this setting actually do?
  2733.  
  2734. > Priority boosts are also granted for things like completed I/O events,
  2735. > keyboard input, window repainting, etc.  Maybe the combination of being
  2736. > in the foreground plus the disk I/O intensive nature of compilation is
  2737. > cause for the "accumulation" of higher priority that Ilya talks about.
  2738. > I would have thought that the thread responsible for the window switch
  2739. > was not a PM owned thread as such, but a normal application thread
  2740. > (previously blocked on WinGetMsg in the background with therefore no
  2741. > priority boost) responding to a mouse click message by calling
  2742. > WinSetFocus.
  2743.  
  2744. Actually, while it's crunching on the disk heavily is when it is the
  2745. most responsive.  It's when it's crunching in memory that it gets
  2746. "sticky."  But as you and Illya say, this may be due to accumulation
  2747. from the previous "disk crunching" periods.
  2748.  
  2749. As far as focus switching goes, I can wrestle the focus away from it
  2750. with the asynch window focus change option enabled, but the VIO window
  2751. still has a highlight around it and the cursor still is visible and
  2752. flashes.  Very bizarre quirk.
  2753.  
  2754. - Marty
  2755.  
  2756. --- WtrGate+ v0.93.p7 sn 165
  2757.  * Origin: Usenet: IBM Global Services North -- Burlington, Vermont,
  2758. (1:109/42)
  2759.  
  2760. +----------------------------------------------------------------------------+
  2761.  
  2762. From: OS2Guy@WarpCity.com                               21-Sep-99 16:37:26
  2763.   To: All                                               21-Sep-99 21:23:03
  2764. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (large)
  2765.  
  2766. From: Tim Martin <OS2Guy@WarpCity.com>
  2767.  
  2768. Kevin Salisbury wrote:
  2769.  
  2770. > Tim Martin wrote:
  2771. >
  2772. > > >>Esther Schindler wrote:
  2773. >
  2774. > > >> Let's just say that I know more than is/was publicly available.
  2775. > > >>
  2776. > > >As do I Esther.  I chose to speak out about it, to let OS/2 users
  2777. > > >know and to not sweep it under the rug or protect the guilty.
  2778. > > >Sad that you can't do the same but par for the Esther course.
  2779. > >
  2780. > > Tim Martin
  2781. >
  2782. > Tim,
  2783. >
  2784. > I think your intentions are good - but is this post really constructive?
  2785. > No one wants to read constant bickering, especially about a topic as
  2786. > important as this one. If everything that you have posted in these
  2787. > newsgroups is correct - we will all know it soon enough. Please don't
  2788. > feel like your being attacked here, I just think that you should let the
  2789. > issue drop until everything that can be known, is. Why stir up the bee
  2790. > hive any more than you have too?
  2791. >
  2792. > Kevin Salisbury
  2793.  
  2794. So don't point this directly at me.  Point to Esther as well.
  2795. Esther continually plays this "you're a bad person Tim" routine
  2796. despite the fact that I am an OS/2 web master while she is a
  2797. Ziff Davis reporter.
  2798.  
  2799. Tim...
  2800.  
  2801.  
  2802.  
  2803. --- WtrGate+ v0.93.p7 sn 165
  2804.  * Origin: Usenet: Warp City (http://warpcity.com) (1:109/42)
  2805.  
  2806. +----------------------------------------------------------------------------+
  2807.  
  2808. From: salisburye@netscape.net                           21-Sep-99 18:39:25
  2809.   To: All                                               21-Sep-99 21:23:03
  2810. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (large)
  2811.  
  2812. From: Kevin Salisbury <salisburye@netscape.net>
  2813.  
  2814.  
  2815. Tim Martin wrote:
  2816.  
  2817. > >>Esther Schindler wrote:
  2818.  
  2819. > >> Let's just say that I know more than is/was publicly available.
  2820. > >>
  2821. > >As do I Esther.  I chose to speak out about it, to let OS/2 users
  2822. > >know and to not sweep it under the rug or protect the guilty.
  2823. > >Sad that you can't do the same but par for the Esther course.
  2824. >
  2825. > Tim Martin
  2826.  
  2827. Tim,
  2828.  
  2829. I think your intentions are good - but is this post really constructive?
  2830. No one wants to read constant bickering, especially about a topic as
  2831. important as this one. If everything that you have posted in these
  2832. newsgroups is correct - we will all know it soon enough. Please don't
  2833. feel like your being attacked here, I just think that you should let the
  2834. issue drop until everything that can be known, is. Why stir up the bee
  2835. hive any more than you have too?
  2836.  
  2837. Kevin Salisbury
  2838.  
  2839. --- WtrGate+ v0.93.p7 sn 165
  2840.  * Origin: Usenet: Salisbury Electronics (1:109/42)
  2841.  
  2842. +----------------------------------------------------------------------------+
  2843.  
  2844. From: dmcbride@no.tower.spam.to.org                     22-Sep-99 02:42:29
  2845.   To: All                                               22-Sep-99 04:29:01
  2846. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (large)
  2847.  
  2848. From: "Darin McBride" <dmcbride@no.tower.spam.to.org>
  2849.  
  2850. On Tue, 21 Sep 1999 16:37:53 -0700, Tim Martin wrote:
  2851.  
  2852. >So don't point this directly at me.  Point to Esther as well.
  2853. >Esther continually plays this "you're a bad person Tim" routine
  2854. >despite the fact that I am an OS/2 web master while she is a
  2855. >Ziff Davis reporter.
  2856.  
  2857. Nononono.  You're a *BSD* web master.  Let's keep that straight.
  2858.  
  2859. ---
  2860. Disclaimer: unless explicitly mentioned otherwise, I do not speak
  2861. for the company I work for.
  2862.  
  2863.  
  2864.  
  2865. --- WtrGate+ v0.93.p7 sn 165
  2866.  * Origin: Usenet: @Home Network Canada (1:109/42)
  2867.  
  2868. +----------------------------------------------------------------------------+
  2869.  
  2870. From: hamei@pacbell.net                                 22-Sep-99 04:50:20
  2871.   To: All                                               22-Sep-99 05:19:18
  2872. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (large)
  2873.  
  2874. From: hamei@pacbell.net
  2875.  
  2876. In <qzpoevqrgbjregbbet.fifwvo3.pminews@news.mtag1.on.wave.home.com>, "Darin
  2877. McBride" <dmcbride@no.tower.spam.to.org> writes:
  2878. >On Tue, 21 Sep 1999 16:37:53 -0700, Tim Martin wrote:
  2879. snip
  2880. >>despite the fact that I am an OS/2 web master while she is a
  2881. >>Ziff Davis reporter.
  2882. >
  2883. >Nononono.  You're a *BSD* web master.  Let's keep that straight.
  2884.  
  2885. do web masters have to work in dungeons, wear the funny black
  2886. hood, carry a whip ?  warped city is in san francisco,  isn't it ?
  2887. " *I* am a Web Master . . ." 
  2888.  
  2889. hmm.
  2890.  
  2891. >
  2892. skål !
  2893.  
  2894. ----------------------------------------------------------
  2895. Härad Ængravvård
  2896. -----------------------------------------------------------
  2897.  
  2898. --- WtrGate+ v0.93.p7 sn 165
  2899.  * Origin: Usenet: SBC Internet Services (1:109/42)
  2900.  
  2901. +----------------------------------------------------------------------------+
  2902.  
  2903. From: OS2Guy@WarpCity.com                               22-Sep-99 00:03:05
  2904.   To: All                                               22-Sep-99 10:37:22
  2905. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (large)
  2906.  
  2907. From: Tim Martin <OS2Guy@WarpCity.com>
  2908.  
  2909. hamei@pacbell.net wrote:
  2910.  
  2911. > In <qzpoevqrgbjregbbet.fifwvo3.pminews@news.mtag1.on.wave.home.com>, "Darin
  2912. McBride" <dmcbride@no.tower.spam.to.org> writes:
  2913. > >On Tue, 21 Sep 1999 16:37:53 -0700, Tim Martin wrote:
  2914. > snip
  2915. > >>despite the fact that I am an OS/2 web master while she is a
  2916. > >>Ziff Davis reporter.
  2917. > >
  2918. > >Nononono.  You're a *BSD* web master.  Let's keep that straight.
  2919. >
  2920. > do web masters have to work in dungeons, wear the funny black
  2921. > hood, carry a whip ?  warped city is in san francisco,  isn't it ?
  2922. > " *I* am a Web Master . . ."
  2923. >
  2924. > hmm.
  2925. >
  2926. > >
  2927. > sk?l !
  2928. >
  2929. > ----------------------------------------------------------
  2930. > H?rad ?ngravv?rd
  2931. > -----------------------------------------------------------
  2932.  
  2933. Actually we've got several servers in several locations.
  2934. Warp City is *framed* because web pages are constantly
  2935. updated or created and simply imported from various
  2936. server locations.   Members reading them don't know
  2937. exactly where they are coming from they just know
  2938. they are at Warp City.
  2939.  
  2940. The public site (the brick wall entry point) is located in
  2941. San Francisco.  It is the site most members never
  2942. go to but considered our public site.  It consists of one
  2943. primary web page (although we do provide several
  2944. publicly accessible web pages on that server like
  2945. John *Aloha* Twelker's OS/2-Aptiva Install guide).
  2946. That particular server uses FreeBSD because quite
  2947. frankly, its free and a fine server software and it is the
  2948. only server we use in San Francisco.
  2949.  
  2950. We have only one staffer who actually lives in SF and
  2951. she also runs a Coffee House.  Other staffers live in
  2952. Sausalito, Santa Barbara, Craig Colorado, Mississippi,
  2953. and Florida.  We have part-time reporters or writers in
  2954. other various states (Los Angeles, Boston, Chicago,
  2955. Nevada, Kentucky, New York, Hawaii).  All staff members
  2956. have installed and use OS/2 as their operating system.
  2957. Windows (including WinOS2) is banned by company policy.
  2958. None of us has WinOS2 or DOS installed on our systems.
  2959. The company provides each staffer with their own individual
  2960. machines preloaded with OS/2 usually from such dealers
  2961. as Indelible Blue, Diamond Flower or other familiar hardware
  2962. vendors who preload OS/2.  We can access the servers from
  2963. a company 800 number or through individual dialup ISP
  2964. accounts (paid for by the company).
  2965.  
  2966. I have never owned or used a Windows application (but
  2967. I have seen them).
  2968.  
  2969. Tim Martin
  2970. The OS/2 Guy
  2971. Warp City
  2972. http://warpcity.com
  2973. "E-ride the wild surf to Warp City!"
  2974.  
  2975.  
  2976. --- WtrGate+ v0.93.p7 sn 165
  2977.  * Origin: Usenet: Warp City (http://warpcity.com) (1:109/42)
  2978.  
  2979. +----------------------------------------------------------------------------+
  2980.  
  2981. From: tim.timmins@bcs.org.uk                            22-Sep-99 10:56:18
  2982.   To: All                                               22-Sep-99 10:37:23
  2983. Subj: Re: Netlabs statement about the future of OS/2
  2984.  
  2985. From: Tim Timmins <tim.timmins@bcs.org.uk>
  2986.  
  2987. err... This bullshit is your opinion masquerading as facts.
  2988.  
  2989.  
  2990. Kind regards,
  2991. Tim
  2992.  
  2993. Esther Schindler wrote:
  2994.  
  2995. > On Tue, 21 Sep 1999 03:01:47, hamei@pacbell.net wrote:
  2996. >
  2997. > | In a nutshell, that's my beef with IBM. How about a little open and honest
  2998. > | dissemination of intentions from the ONLY people who know their plans -
  2999. > | IBM ? We all bought the product, we all have time and effort and money
  3000. > | invested, whatever they want to do is their business, just TELL US ! then
  3001. > | we can get on with our lives, decide what is best for us individually, not
  3002. > | have to sift rumours and innuendo for scraps of insight.  Or does IBM
  3003. shelter
  3004. > | under the CIA umbrella now ? If anyone can be said to be responsible for
  3005. the
  3006. > | OS/2 FUD campaign, it'd be IBM for never being upfront with us. And YES,
  3007. > | we deserve it - we bought the product, now come out and tell the truth,
  3008. > | get it over with !
  3009. >
  3010. > I'm afraid that the chances of this happening are rather low.
  3011. >
  3012. > Even if IBM has no intention of coming out with a new client, if they
  3013. > believe a new client is an utter and complete impossibility, they
  3014. > won't say so, straight out. They never want to put themselves in the
  3015. > position of being wrong. If they say, "We'll never do it" and then
  3016. > later they _do_ find themselves in the position of doing it (for
  3017. > whatever reason, because situations change) then someone can say, "you
  3018. > lied!" So they say, "...not at this time..." which is purposefully
  3019. > vague.
  3020. >
  3021. > I'm not saying that this is the right thing to do, but it's a common
  3022. > corporate thing to do. <sigh>
  3023. >
  3024. > --Esther
  3025.  
  3026. --- WtrGate+ v0.93.p7 sn 165
  3027.  * Origin: Origin Line 1 Goes Here (1:109/42)
  3028.  
  3029. +----------------------------------------------------------------------------+
  3030.  
  3031. From: l_luciano@da.mob                                  22-Sep-99 11:03:08
  3032.   To: All                                               23-Sep-99 04:15:24
  3033. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (large)
  3034.  
  3035. From: l_luciano@da.mob (Stan Goodman)
  3036.  
  3037. On Tue, 21 Sep 1999 22:39:51, Kevin Salisbury <salisburye@netscape.net> 
  3038. wrote:
  3039.  
  3040. > Tim Martin wrote:
  3041. > > >>Esther Schindler wrote:
  3042. > > >> Let's just say that I know more than is/was publicly available.
  3043. > > >>
  3044. > > >As do I Esther.  I chose to speak out about it, to let OS/2 users
  3045. > > >know and to not sweep it under the rug or protect the guilty.
  3046. > > >Sad that you can't do the same but par for the Esther course.
  3047. > >
  3048. > > Tim Martin
  3049. > Tim,
  3050. > I think your intentions are good - but is this post really constructive?
  3051. > No one wants to read constant bickering, especially about a topic as
  3052. > important as this one. If everything that you have posted in these
  3053. > newsgroups is correct - we will all know it soon enough. Please don't
  3054. > feel like your being attacked here, I just think that you should let the
  3055. > issue drop until everything that can be known, is. Why stir up the bee
  3056. > hive any more than you have too?
  3057. > Kevin Salisbury
  3058.  
  3059. Second that. There is lately some verbal diarrhea in this thread -- made 
  3060. worse because much of it is complicated by mental constipation. 
  3061.  
  3062. -------------
  3063. Stan Goodman
  3064. Qiryat Tiv'on
  3065. Israel
  3066.  
  3067. Spammers are getting smarter; email sent to l_luciano@da.mob will not reach
  3068. me. Sorry.
  3069. Send E-mail to: domain: hashkedim dot com, username: stan.
  3070.  
  3071. 
  3072.  
  3073. --- WtrGate+ v0.93.p7 sn 165
  3074.  * Origin: Usenet: Verio (1:109/42)
  3075.  
  3076. +----------------------------------------------------------------------------+
  3077.  
  3078. From: bowenjm@rintintin.colorado.edu                    22-Sep-99 12:13:21
  3079.   To: All                                               23-Sep-99 04:15:24
  3080. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (large)
  3081.  
  3082. From: bowenjm@rintintin.colorado.edu (Jason Bowen)
  3083.  
  3084. ... And all of what Tim writes is a lie unless he lied to 
  3085. abuse@colorado.edu.  Thank you for providing even more evidence Tim.
  3086.  
  3087. In article <37E87F2E.2A508F94@WarpCity.com>,
  3088. Tim Martin  <OS2Guy@WarpCity.com> wrote:
  3089. >hamei@pacbell.net wrote:
  3090. >
  3091. >> In <qzpoevqrgbjregbbet.fifwvo3.pminews@news.mtag1.on.wave.home.com>, "D=
  3092. >arin McBride" <dmcbride@no.tower.spam.to.org> writes:
  3093. >> >On Tue, 21 Sep 1999 16:37:53 -0700, Tim Martin wrote:
  3094. >> snip
  3095. >> >>despite the fact that I am an OS/2 web master while she is a
  3096. >> >>Ziff Davis reporter.
  3097. >> >
  3098. >> >Nononono.  You're a *BSD* web master.  Let's keep that straight.
  3099. >>
  3100. >> do web masters have to work in dungeons, wear the funny black
  3101. >> hood, carry a whip ?  warped city is in san francisco,  isn't it ?
  3102. >> " *I* am a Web Master . . ."
  3103. >>
  3104. >> hmm.
  3105. >>
  3106. >> >
  3107. >> sk=86l !
  3108. >>
  3109. >> ----------------------------------------------------------
  3110. >> H=84rad =92ngravv=86rd
  3111. >> -----------------------------------------------------------
  3112. >
  3113. >Actually we've got several servers in several locations.
  3114. >Warp City is *framed* because web pages are constantly
  3115. >updated or created and simply imported from various
  3116. >server locations.   Members reading them don't know
  3117. >exactly where they are coming from they just know
  3118. >they are at Warp City.
  3119. >
  3120. >The public site (the brick wall entry point) is located in
  3121. >San Francisco.  It is the site most members never
  3122. >go to but considered our public site.  It consists of one
  3123. >primary web page (although we do provide several
  3124. >publicly accessible web pages on that server like
  3125. >John *Aloha* Twelker's OS/2-Aptiva Install guide).
  3126. >That particular server uses FreeBSD because quite
  3127. >frankly, its free and a fine server software and it is the
  3128. >only server we use in San Francisco.
  3129. >
  3130. >We have only one staffer who actually lives in SF and
  3131. >she also runs a Coffee House.  Other staffers live in
  3132. >Sausalito, Santa Barbara, Craig Colorado, Mississippi,
  3133. >and Florida.  We have part-time reporters or writers in
  3134. >other various states (Los Angeles, Boston, Chicago,
  3135. >Nevada, Kentucky, New York, Hawaii).  All staff members
  3136. >have installed and use OS/2 as their operating system.
  3137. >Windows (including WinOS2) is banned by company policy.
  3138. >None of us has WinOS2 or DOS installed on our systems.
  3139. >The company provides each staffer with their own individual
  3140. >machines preloaded with OS/2 usually from such dealers
  3141. >as Indelible Blue, Diamond Flower or other familiar hardware
  3142. >vendors who preload OS/2.  We can access the servers from
  3143. >a company 800 number or through individual dialup ISP
  3144. >accounts (paid for by the company).
  3145. >
  3146. >I have never owned or used a Windows application (but
  3147. >I have seen them).
  3148. >
  3149. >Tim Martin
  3150. >The OS/2 Guy
  3151. >Warp City
  3152. >http://warpcity.com
  3153. >"E-ride the wild surf to Warp City!"
  3154. >
  3155. >
  3156.  
  3157.  
  3158. --- WtrGate+ v0.93.p7 sn 165
  3159.  * Origin: Usenet: University of Colorado, Boulder (1:109/42)
  3160.  
  3161. +----------------------------------------------------------------------------+
  3162.  
  3163. From: d.s.darrow@nvinet.com                             21-Sep-99 16:51:15
  3164.   To: All                                               23-Sep-99 04:15:25
  3165. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (large)
  3166.  
  3167. From: "Doug Darrow" <d.s.darrow@nvinet.com>
  3168.  
  3169. On 21 Sep 1999 12:41:22 GMT, Esther Schindler wrote:
  3170.  
  3171. >Let's just say that I know more than is/was publicly available.
  3172. >
  3173. >--Esther 
  3174.  
  3175. I actually wanted the SECOND part of that question answered. I was
  3176. pretty sure the FIRST part would be in the affirmative.
  3177.  
  3178.  
  3179. --- WtrGate+ v0.93.p7 sn 165
  3180.  * Origin: Origin Line 1 Goes Here (1:109/42)
  3181.  
  3182. +----------------------------------------------------------------------------+
  3183.  
  3184. From: esther@bitranch.com                               22-Sep-99 22:25:27
  3185.   To: All                                               23-Sep-99 04:15:25
  3186. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (large)
  3187.  
  3188. From: esther@bitranch.com (Esther Schindler)
  3189.  
  3190. On Tue, 21 Sep 1999 23:51:31, "Doug Darrow" <d.s.darrow@nvinet.com> 
  3191. wrote:
  3192.  
  3193. | I actually wanted the SECOND part of that question answered. I was
  3194. | pretty sure the FIRST part would be in the affirmative.
  3195.  
  3196. I've been around IBM way too long to pretend an ability to 
  3197. second-guess their decisions. (Even when I know what one person or 
  3198. group _wants_ to happen, I'm smart enough by now to grok that it won't
  3199. necessarily happen.)
  3200.  
  3201. --Esther
  3202.  
  3203. --- WtrGate+ v0.93.p7 sn 165
  3204.  * Origin: Usenet: Frontier GlobalCenter Inc. (1:109/42)
  3205.  
  3206. +----------------------------------------------------------------------------+
  3207.  
  3208. From: hunters@thunder.indstate.edu                      22-Sep-99 23:22:04
  3209.   To: All                                               23-Sep-99 04:15:25
  3210. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (large)
  3211.  
  3212. From: hunters@thunder.indstate.edu
  3213.  
  3214. In article <37E87F2E.2A508F94@WarpCity.com>,
  3215.   Tim Martin <OS2Guy@WarpCity.com> wrote:
  3216.  
  3217. <snip>
  3218.  
  3219. > All staff members have installed and use OS/2 as their operating
  3220. > system. Windows (including WinOS2) is banned by company policy.
  3221. > None of us has WinOS2 or DOS installed on our systems.
  3222.  
  3223. Mein Fⁿhrer, klingt wie eine gute Politik zum Zerst÷ren der schlechten
  3224. freien denker. Alle hageln den Fⁿhrer!
  3225.  
  3226. --
  3227. -Steven Hunter               *OS/2 Warp 4 * |Warpstock '99 | Oct 16-17|
  3228. hunters@thunder.indstate.edu *AMD K6-2 400* |       Atlanta GA        |
  3229.  
  3230.  
  3231. Sent via Deja.com http://www.deja.com/
  3232. Share what you know. Learn what you don't.
  3233.  
  3234. --- WtrGate+ v0.93.p7 sn 165
  3235.  * Origin: Usenet: Deja.com - Share what you know. Learn what you do
  3236. (1:109/42)
  3237.  
  3238. +----------------------------------------------------------------------------+
  3239.  
  3240. From: dmcbride@no.tower.spam.to.org                     23-Sep-99 01:42:08
  3241.   To: All                                               23-Sep-99 16:41:02
  3242. Subj: Re: Apache and OS/2: is it realistic
  3243.  
  3244. From: "Darin McBride" <dmcbride@no.tower.spam.to.org>
  3245.  
  3246. On Wed, 22 Sep 1999 20:50:12 GMT, croed@dimark.ca wrote:
  3247.  
  3248. >I am looking at developing web access to databases, but I don't want
  3249. >to abandon OS/2 yet. It looks to me like Domino and the Go webserver 
  3250. >are both out of the running, because they have no future. 
  3251. >Does anyone have any experience using databases with Apache for OS/2?
  3252. >What will I need to get started?  Is it realistic to think that I could put 
  3253. >something together using Apache and some databases and tools 
  3254. >ported from Unix to OS/2 or do I need to switch to Linux now?
  3255.  
  3256. I don't see why you can't use Apache for OS/2...  I use it here, and I've got
  3257. mostly Perl CGI scripts running.  I have used REXX, but that doesn't really
  3258. go too far without writing a bunch of modules to do the CGI::* functions from
  3259. Perl.  Unfortunately, DB2 for OS/2 doesn't seem to ship with Perl support
  3260. directly.  That said, you *can* access DB2's REXX interface, with a little
  3261. bit of effort.  I know I've done this type of thing (accessing REXX from
  3262. inside Perl), but can't seem to find my sample code.
  3263.  
  3264. That said, I also have another box running Linux, and am thinking of moving
  3265. it all over.  Unfortunately, I have my http, ftp, and BBS all linked to one
  3266. another, and it'll likely be difficult to move it over.
  3267. ---
  3268. Disclaimer: unless explicitly mentioned otherwise, I do not speak
  3269. for the company I work for.
  3270.  
  3271.  
  3272.  
  3273. --- WtrGate+ v0.93.p7 sn 165
  3274.  * Origin: Usenet: @Home Network Canada (1:109/42)
  3275.  
  3276. +----------------------------------------------------------------------------+
  3277.  
  3278. From: esther@bitranch.com                               23-Sep-99 13:50:13
  3279.   To: All                                               23-Sep-99 20:16:00
  3280. Subj: Re: Apache and OS/2: is it realistic
  3281.  
  3282. From: esther@bitranch.com (Esther Schindler)
  3283.  
  3284. On Wed, 22 Sep 1999 20:14:49, Leonardo <lpino@dcc.uchile.cl> wrote:
  3285.  
  3286. | I think this should be out pretty soon since WebSphere 3.0 and Visual Age
  3287. Java
  3288. | 3.0 are almost out of the door.
  3289.  
  3290. WebSphere 3.0 is already shipping, here in the U.S. Are you saying 
  3291. that there will be an OS/2 version Real Soon Now? (I was under the 
  3292. impression that there wasn't, and I'd be happy to be mistaken.)
  3293.  
  3294. --Esther 
  3295.  
  3296.  
  3297. --- WtrGate+ v0.93.p7 sn 165
  3298.  * Origin: Usenet: Frontier GlobalCenter Inc. (1:109/42)
  3299.  
  3300. +----------------------------------------------------------------------------+
  3301.  
  3302. From: croed@dimark.ca                                   23-Sep-99 15:00:00
  3303.   To: All                                               23-Sep-99 20:16:01
  3304. Subj: Re: Apache and OS/2: is it realistic
  3305.  
  3306. From: croed@dimark.ca
  3307.  
  3308. In <37E938B9.58535559@dcc.uchile.cl>, Leonardo <lpino@dcc.uchile.cl> writes:
  3309. >This is the reason why you should stay with OS/2. I work for IBM developing
  3310. >e-bussiness solutions here in Chile. Domino Go Webserver is not going to be
  3311. >supported anymore because of this IBM is developing their IBM Http Server for
  3312. >OS/2 (based on Apache) using natives threads (the same goes for Windows) and
  3313. >the new APIs for socket programming.
  3314. >I think this should be out pretty soon since WebSphere 3.0 and Visual Age
  3315. Java
  3316. >3.0 are almost out of the door.
  3317.  
  3318. Thansk very much for that piece of information.  This is the best news I have 
  3319. had for some time.  My impression, on reading the material about WSeB in my 
  3320. mail and onit  their website, was that it would not be a serious contender for 
  3321.  
  3322. Web business because  (a) Go Webserver would no longer be supported,  
  3323. (b) there was no Apache port offered, and (c) the Websphere app server and 
  3324. Websphere studio they were offering fo NT were not available for WSeB 
  3325. either (at least not in a current version).
  3326.  
  3327. If they are going to start making usable tools available, then I will be more 
  3328. than happy to stay with Warp- I have a considerable investment in it already.
  3329. Thanks again
  3330.  
  3331.  
  3332.  
  3333. --- WtrGate+ v0.93.p7 sn 165
  3334.  * Origin: Usenet: MBnet Networking Inc. (1:109/42)
  3335.  
  3336. +----------------------------------------------------------------------------+
  3337.  
  3338. From: croed@dimark.ca                                   23-Sep-99 15:07:11
  3339.   To: All                                               23-Sep-99 20:16:01
  3340. Subj: Re: Apache and OS/2: is it realistic
  3341.  
  3342. From: croed@dimark.ca
  3343.  
  3344. In <qzpoevqrgbjregbbet.fihoqi4.pminews@news.mtag1.on.wave.home.com>, "Darin
  3345. McBride" <dmcbride@no.tower.spam.to.org> writes:
  3346.  
  3347. >I don't see why you can't use Apache for OS/2...  I use it here, and I've got
  3348. >mostly Perl CGI scripts running.  I have used REXX, but that doesn't really
  3349. >go too far without writing a bunch of modules to do the CGI::* functions from
  3350. >Perl.  Unfortunately, DB2 for OS/2 doesn't seem to ship with Perl support
  3351. >directly.  That said, you *can* access DB2's REXX interface, with a little
  3352. >bit of effort.  I know I've done this type of thing (accessing REXX from
  3353. >inside Perl), but can't seem to find my sample code.
  3354.  
  3355. Thanks for the quick reply.  I have managed to get Apache for OS/2 1.2.4
  3356.  and Perl running, but I haven't figured out how to get a database hooked 
  3357. up to it.  More to the point, I am wondering which database will be the 
  3358. easiest to connect to Apache via Perl.  Have you any experience with the 
  3359. OS/2 port of MySQL?
  3360.  
  3361. --- WtrGate+ v0.93.p7 sn 165
  3362.  * Origin: Usenet: MBnet Networking Inc. (1:109/42)
  3363.  
  3364. +----------------------------------------------------------------------------+
  3365.  
  3366. From: nospam_ktk@netlabs.org                            23-Sep-99 20:37:07
  3367.   To: All                                               23-Sep-99 20:16:02
  3368. Subj: Re: Apache and OS/2: is it realistic
  3369.  
  3370. From: "Adrian Gschwend" <nospam_ktk@netlabs.org>
  3371.  
  3372. On Wed, 22 Sep 1999 20:50:12 GMT, croed@dimark.ca wrote:
  3373.  
  3374. >I am looking at developing web access to databases, but I don't want
  3375. >to abandon OS/2 yet. It looks to me like Domino and the Go webserver 
  3376. >are both out of the running, because they have no future. 
  3377. >Does anyone have any experience using databases with Apache for OS/2?
  3378. >What will I need to get started?  Is it realistic to think that I could put 
  3379. >something together using Apache and some databases and tools 
  3380. >ported from Unix to OS/2 or do I need to switch to Linux now?
  3381.  
  3382. There is no need to switch to linux, you can run Apache on OS/2 without any
  3383. problems. For example os2.org (and soon also netlabs.org) is running Apache
  3384. for OS/2 with MySQL as backend and PHP3 as connection between MySQL and
  3385. Apache. PHP3 is really easy to learn and if you know SQL, MySQL shouldn't be
  3386. a
  3387. problem.
  3388.  
  3389. Some links you should check:
  3390.  
  3391. Apache for OS/2 with PHP3 & MySQL support: http://silk.apana.org.au/apache/
  3392. PHP3 Homepage: http://www.php.net
  3393. MySQL Homepage: http://www.mysql.org
  3394. MySQL for OS/2: http:;//www.netlabs.org/projects/mysql.html (more recent
  3395. version is at Hobbes, http://hobbes.nmsu.edu).
  3396.  
  3397. So you see that OS/2 is a great platform for this :)
  3398.  
  3399. cu
  3400.  
  3401. Adrian
  3402.  
  3403.  
  3404.  
  3405. ---
  3406. Adrian Gschwend
  3407. @ OS/2 Netlabs
  3408.  
  3409. ICQ: 22419590
  3410. ktk@netlabs.org
  3411. -------
  3412. The OS/2 OpenSource Project:
  3413. http://www.netlabs.org
  3414.  
  3415.  
  3416. --- WtrGate+ v0.93.p7 sn 165
  3417.  * Origin: Usenet: OS/2 Netlabs (1:109/42)
  3418.  
  3419. +----------------------------------------------------------------------------+
  3420.  
  3421. From: jonesy@rmi.nospam.net                             23-Sep-99 20:13:26
  3422.   To: All                                               24-Sep-99 04:26:03
  3423. Subj: Re: Tell apart two print screen keys
  3424.  
  3425. From: Jonesy <jonesy@rmi.nospam.net>
  3426.  
  3427. dannycjl@my-deja.com wrote a LOT OF DUPLICATES.
  3428.  
  3429. So, are you doing this via some sort of cron?
  3430.  
  3431. 0      [  12]  Tell apart two print screen keys       dannycjl@my-deja.com
  3432. 1      [  12]  Tell apart two print screen keys       dannycjl@my-deja.com
  3433. 2      [  12]  Tell apart two print screen keys       dannycjl@my-deja.com
  3434. 3      [  12]  Tell apart two print screen keys       dannycjl@my-deja.com
  3435. 4      [  12]  Tell apart two print screen keys       dannycjl@my-deja.com
  3436. 5      [  12]  Tell apart two print screen keys       dannycjl@my-deja.com
  3437. 6      [  12]  Tell apart two print screen keys       dannycjl@my-deja.com
  3438.  
  3439. --- WtrGate+ v0.93.p7 sn 165
  3440.  * Origin: Usenet: RMI.net (1:109/42)
  3441.  
  3442. +----------------------------------------------------------------------------+
  3443.  
  3444. From: donnelly@tampabay.rr.com                          23-Sep-99 21:43:27
  3445.   To: All                                               24-Sep-99 04:26:04
  3446. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (large)
  3447.  
  3448. From: donnelly@tampabay.rr.com (Buddy Donnelly)
  3449.  
  3450. On Wed, 22 Sep 1999 23:22:08, hunters@thunder.indstate.edu a ┌crit dans un 
  3451. message:
  3452.  
  3453. > In article <37E87F2E.2A508F94@WarpCity.com>,
  3454. >   Tim Martin <OS2Guy@WarpCity.com> wrote:
  3455. > <snip>
  3456. > > All staff members have installed and use OS/2 as their operating
  3457. > > system. Windows (including WinOS2) is banned by company policy.
  3458. > > None of us has WinOS2 or DOS installed on our systems.
  3459. > Mein F─hrer, klingt wie eine gute Politik zum Zerst╣ren der schlechten
  3460. > freien denker. Alle hageln den F─hrer!
  3461.  
  3462. Using my favorite new web toy, AltaVista's Babelfish translation site, 
  3463. cutting and pasting that turns it into this English:
  3464.  
  3465. "My leader, sounds like a good policy for destroying the bad free 
  3466. philosophers. All hail the leader!"
  3467.  
  3468. Not bad at all, to my eye. Lots easier than straining the brain to get even
  3469. halfway close:
  3470.  
  3471.     http://babelfish.altavista.com
  3472.  
  3473.  
  3474.  
  3475. Good luck,
  3476.  
  3477. Buddy
  3478.  
  3479. Buddy Donnelly
  3480. donnelly@tampabay.rr.com
  3481.  
  3482.  
  3483. --- WtrGate+ v0.93.p7 sn 165
  3484.  * Origin: Usenet: RoadRunner - TampaBay (1:109/42)
  3485.  
  3486. +----------------------------------------------------------------------------+
  3487.  
  3488. From: dmcbride@no.tower.spam.to.org                     23-Sep-99 23:40:23
  3489.   To: All                                               24-Sep-99 04:26:04
  3490. Subj: Re: Apache and OS/2: is it realistic
  3491.  
  3492. From: "Darin McBride" <dmcbride@no.tower.spam.to.org>
  3493.  
  3494. On Thu, 23 Sep 1999 15:07:22 GMT, croed@dimark.ca wrote:
  3495.  
  3496. >In <qzpoevqrgbjregbbet.fihoqi4.pminews@news.mtag1.on.wave.home.com>, "Darin
  3497. McBride" <dmcbride@no.tower.spam.to.org> writes:
  3498. >
  3499. >>I don't see why you can't use Apache for OS/2...  I use it here, and I've
  3500. got
  3501. >>mostly Perl CGI scripts running.  I have used REXX, but that doesn't really
  3502. >>go too far without writing a bunch of modules to do the CGI::* functions
  3503. from
  3504. >>Perl.  Unfortunately, DB2 for OS/2 doesn't seem to ship with Perl support
  3505. >>directly.  That said, you *can* access DB2's REXX interface, with a little
  3506. >>bit of effort.  I know I've done this type of thing (accessing REXX from
  3507. >>inside Perl), but can't seem to find my sample code.
  3508. >
  3509. >Thanks for the quick reply.  I have managed to get Apache for OS/2 1.2.4
  3510.  
  3511. Um, 1.3.9 is available - I'd highly recommend using it.  ;-)  No point in
  3512. starting with an obsolescent version when the newest version doesn't cost any
  3513. more.  :->
  3514.  
  3515. > and Perl running, but I haven't figured out how to get a database hooked 
  3516. >up to it.  More to the point, I am wondering which database will be the 
  3517. >easiest to connect to Apache via Perl.  Have you any experience with the 
  3518. >OS/2 port of MySQL?
  3519.  
  3520. No.  Mind you, I may be somewhat biased.  You see, I work for DB2.  ;-)
  3521. ---
  3522. Disclaimer: unless explicitly mentioned otherwise, I do not speak
  3523. for the company I work for.
  3524.  
  3525.  
  3526.  
  3527. --- WtrGate+ v0.93.p7 sn 165
  3528.  * Origin: Usenet: @Home Network Canada (1:109/42)
  3529.  
  3530. +----------------------------------------------------------------------------+
  3531.  
  3532. From: mamodeo@stny.rr.com                               23-Sep-99 22:14:13
  3533.   To: All                                               24-Sep-99 04:26:04
  3534. Subj: Re: and now I know it is a scam [nt]
  3535.  
  3536. From: Marty <mamodeo@stny.rr.com>
  3537.  
  3538.  
  3539.  
  3540. --- WtrGate+ v0.93.p7 sn 165
  3541.  * Origin: Usenet: Time Warner Road Runner - Binghamton NY (1:109/42)
  3542.  
  3543. +----------------------------------------------------------------------------+
  3544.  
  3545. From: tzs@halcyon.com                                   24-Sep-99 06:21:11
  3546.   To: All                                               24-Sep-99 10:53:13
  3547. Subj: Re: Judgement day - time to reach for your wallets OS/2 people (large)
  3548.  
  3549. From: tzs@halcyon.com (Tim Smith)
  3550.  
  3551. Tim Martin  <OS2Guy@WarpCity.com> wrote:
  3552. >The public site (the brick wall entry point) is located in
  3553. >San Francisco.  It is the site most members never
  3554. >go to but considered our public site.  It consists of one
  3555. >primary web page (although we do provide several
  3556. >publicly accessible web pages on that server like
  3557. >John *Aloha* Twelker's OS/2-Aptiva Install guide).
  3558. >That particular server uses FreeBSD because quite
  3559. >frankly, its free and a fine server software and it is the
  3560. >only server we use in San Francisco.
  3561.  
  3562. Uhmmm...that site appears to be a virtual host, so wouldn't a more accurate
  3563. statement be it runs BSD because the hosting company that owns the server
  3564. wants to run that?
  3565.  
  3566. What I don't understand is *why* you have a site on a virtual host on
  3567. a server you don't own when all it has is a few pages.  Why not move that
  3568. site over to one of your own servers?  You can keep the IP address separate
  3569. so that it wouldn't give away the address of your private server.
  3570.  
  3571. --Tim Smith
  3572.  
  3573. --- WtrGate+ v0.93.p7 sn 165
  3574.  * Origin: Usenet: Institute of Lawsonomy (1:109/42)
  3575.  
  3576. +----------------------------------------------------------------------------+
  3577.  
  3578. From: Trancser@Freenet.Nether.Net                       24-Sep-99 01:32:23
  3579.   To: All                                               24-Sep-99 12:10:05
  3580. Subj: Re: Netlabs statement about the future of OS/2
  3581.  
  3582. From: Trancser <Trancser@Freenet.Nether.Net>
  3583.  
  3584. --------------B20FAB59DDB44A6286150917
  3585. Content-Type: text/plain; charset=us-ascii
  3586. Content-Transfer-Encoding: 7bit
  3587.  
  3588. >
  3589. >
  3590. > You got it!  OS/2 continues to be THE Killer OS today.  No other
  3591. > desktop operating system on the market today can equal the
  3592. > power, stability and quality of OS/2.  NONE!
  3593. >
  3594. > Tim Martin
  3595. > The OS/2 Guy
  3596. > Warp City
  3597. > http://warpcity.com
  3598. > "E-ride the wild surf to Warp City!"
  3599.  
  3600. And with this statment, I'd like to slide in a li'l question, its kinda off
  3601. topic, but
  3602. I thought this would be the (or one at least - of the os2 ng's out there) to
  3603. ask it in,
  3604. but, since the (supposed) leak of the OS/2 kernel, hpfs driver and multimedia
  3605. support,
  3606. depending on who all knows about it yet?? Well, if you DO know about it, I was
  3607. wondering if anyone plans on doing anything with it?    If merely patching
  3608. would be
  3609. (obviously?) illegal, then a total re-write ....whichever way you'd do it....
  3610.  
  3611. Anyway, the only reason for wasting my time by asking this question, is
  3612. because I
  3613. myself use and really like the OS as well....have for many years, and since
  3614. hearing the
  3615. source has suddently become available thought this might give an opportunity
  3616. for some
  3617. programmers out there to do some creative things w/ Os/2
  3618.  
  3619.     I know also that if and when another fixpack would come out, that the
  3620. modifications
  3621. you made with the kernel source thats available would or might come in
  3622. conflict with
  3623. what changes IBM would've made to whatever...but I'm not sure that IBM
  3624. actually
  3625. modifies to much (if anything) with OS/2's kernel, as far as the current and
  3626. (possibly)
  3627. last client version of OS/2 goes? I think its mostly the DLL's that get
  3628. modified? I'm
  3629. not 100% sure, but again ...just thought I'd ask.
  3630.  
  3631. jbergman@ixc.ixc.net
  3632.  
  3633.  
  3634.  
  3635. --------------B20FAB59DDB44A6286150917
  3636. Content-Type: text/html; charset=us-ascii
  3637. Content-Transfer-Encoding: 7bit
  3638.  
  3639. <HTML>
  3640.  
  3641. <BLOCKQUOTE TYPE=CITE><A HREF="http://pages.infinit.net/exovede"></A> 
  3642.  
  3643. <P>You got it!  OS/2 continues to be THE Killer OS today.  No
  3644. other
  3645. <BR>desktop operating system on the market today can equal the
  3646. <BR>power, stability and quality of OS/2.  NONE!
  3647.  
  3648. <P>Tim Martin
  3649. <BR>The OS/2 Guy
  3650. <BR>Warp City
  3651. <BR><A HREF="http://warpcity.com">http://warpcity.com</A>
  3652. <BR>"E-ride the wild surf to Warp City!"</BLOCKQUOTE>
  3653. And with this statment, I'd like to slide in a li'l question, its kinda
  3654. off topic, but I thought this would be the (or one at least - of the os2
  3655. ng's out there) to ask it in, but, since the (supposed) leak of the OS/2
  3656. kernel, hpfs driver and multimedia support, depending on who all knows
  3657. about it yet?? Well, if you DO know about it, I was wondering if anyone
  3658. plans on doing anything with it?    If merely patching would
  3659. be (obviously?) illegal, then a total re-write ....whichever way you'd
  3660. do it....
  3661.  
  3662. <P>Anyway, the only reason for wasting my time by asking this question,
  3663. is because I myself use and really like the OS as well....have for many
  3664. years, and since hearing the source has suddently become available thought
  3665. this might give an opportunity for some programmers out there to do some
  3666. creative things w/ Os/2
  3667.  
  3668. <P>    I know also that if and when another fixpack would
  3669. come out, that the modifications you made with the kernel source thats
  3670. available would or might come in conflict with what changes IBM would've
  3671. made to whatever...but I'm not sure that IBM actually modifies to much
  3672. (if anything) with OS/2's kernel, as far as the current and (possibly)
  3673. last client version of OS/2 goes? I think its mostly the DLL's that get
  3674. modified? I'm not 100% sure, but again ...just thought I'd ask.
  3675.  
  3676. <P>jbergman@ixc.ixc.net
  3677.  
  3678. <P> </HTML>
  3679.  
  3680. --------------B20FAB59DDB44A6286150917--
  3681.  
  3682.  
  3683. --- WtrGate+ v0.93.p7 sn 165
  3684.  * Origin: Usenet: EarthLink Network, Inc. (1:109/42)
  3685.  
  3686. +----------------------------------------------------------------------------+
  3687.  
  3688. From: benbowc@ibm.net                                   24-Sep-99 21:23:27
  3689.   To: All                                               24-Sep-99 12:10:05
  3690. Subj: Re: Netlabs statement about the future of OS/2
  3691.  
  3692. From: Craig Benbow <benbowc@ibm.net>
  3693.  
  3694. So who is lobbying the other six?????
  3695. If anyone has friends in high places it appears now is a good time to call in
  3696. a few favours!!!
  3697.  
  3698. Craig
  3699.  
  3700. rjfreem@ibm.net wrote:
  3701.  
  3702. > In <p3V53kDg6xHP090yn@ibm.net>, on 09/19/99
  3703. >    at 05:04 PM, dcasey@ibm.net (Dan Casey) said:
  3704. >
  3705. > Unfortunalely I walked into Steven King's ( manager of development)
  3706. > presentation late At Warp Expo late. What He did say was that IBM could
  3707. > not deliver a client was of an IBM policy requiring the client to be
  3708. > delivered in 32 languages. A meet will be held next month to decide if a
  3709. > third party will be permitted to produce a client. He said he would vote
  3710. > yes, but that he is one of seven votes. RJF
  3711. >
  3712. > >In article <37E52702.5492FEF7@WarpCity.com>,
  3713. > >Tim Martin <OS2Guy@WarpCity.com> wrote:
  3714. > >>
  3715. > >>And yet an IBM official attending Warp Expo West
  3716. > >>stated publicly yesterday that no such meeting
  3717. > >>took place - and he should know, he is on the
  3718. > >>committee.   He said it was cancelled due to travel
  3719. > >>problems.  He also said Brad was wrong.  AND he
  3720. > >>said IBM has made no decision on whether or not
  3721. > >>they will release a Warp 5 client 'this year'.
  3722. > >>
  3723. > >>Stardock has a vested financial interest in all this
  3724. > >>free publicity.  Brad does not and cannot speak for IBM.
  3725. > >>
  3726. > >>> I wish there would be a new client, but I think it unlikely.
  3727. > >>
  3728. > >>And I see the glass as half full.  I say there will be a
  3729. > >>Warp 5 client.  Just not in 1999.
  3730. >
  3731. > >Here's the explanation for the non-meeting "meeting". This is in response
  3732. > >to a question regarding the  report at os2.org stating that no meeting
  3733. > >took place. The following  is the answer I received from an IBMer close
  3734. > >to the proceedings:
  3735. >
  3736. > >==================================================
  3737. >
  3738. > >Brad's statement and this one are not inconsistent.
  3739. >
  3740. > >The meeting didn't take place because there was a meeting ahead of the
  3741. > >meeting,
  3742. > >at which it was decided there wasn't any need to have a meeting because
  3743. > >IBM was
  3744. > >not going to pursue Stardock's proposal (and the "agreement in principle"
  3745. > >between IBM and Stardock).  (You see, you only have *that* meeting to
  3746. > >*approve*
  3747. > >agenda items.)
  3748. >
  3749. > >IBM hasn't ruled any third party out of offering a new client, but it
  3750. > >hasn't
  3751. > >ruled any third party (or itself) *in*, either.  (IBM almost never rules
  3752. > >anything out.)  Brad's statement was accurate; Stardock anticipates no
  3753. > >change in
  3754. > >IBM's stance.
  3755. >
  3756. > >Brad's statement was also accurate that IBM has received more than one
  3757. > >offer.
  3758. > >Thus far IBM has rejected all of them "at this time."
  3759. >
  3760. > >======================================================
  3761. >
  3762. > >--
  3763. > >************************************************************** *  Dan
  3764. > >Casey                                                 * *  President
  3765. > >*
  3766. > >*  V.O.I.C.E. (Virtual OS/2 International Consumer Education * *
  3767. > >http://www.os2voice.org                                   * *  Abraxas on
  3768. > >IRC                                            * *
  3769. > >http://members.iquest.net/~dcasey                         * *  Charter
  3770. > >Associate member, Team SETI                       * *  Warpstock 99 in
  3771. > >Atlanta  http://www.warpstock.org         *
  3772. > >************************************************************** *  E-Mail
  3773. > >(subject: Req. PGP Key) for Public Key             *
  3774. > >**************************************************************
  3775. >
  3776. > --
  3777. > -----------------------------------------------------------
  3778. > rjfreem@ibm.net
  3779. > -----------------------------------------------------------
  3780.  
  3781. --- WtrGate+ v0.93.p7 sn 165
  3782.  * Origin: Usenet: Global Network Services - Remote Access Mail & Ne
  3783. (1:109/42)
  3784.  
  3785. +----------------------------------------------------------------------------+
  3786.  
  3787. From: croed@dimark.ca                                   24-Sep-99 15:03:19
  3788.   To: All                                               24-Sep-99 13:22:29
  3789. Subj: Re: Apache and OS/2: is it realistic
  3790.  
  3791. From: croed@dimark.ca
  3792.  
  3793. In <qzpoevqrgbjregbbet.fijdrz6.pminews@news.mtag1.on.wave.home.com>, "Darin
  3794. McBride" <dmcbride@no.tower.spam.to.org> writes:
  3795.  
  3796. >
  3797. Snip
  3798. >
  3799.   Mind you, I may be somewhat biased.  You see, I work for DB2.  ;-)
  3800. >---
  3801. I did do some development work with DB2 for OS/2 in one of its earlier
  3802. incarnations (2.1) but it seems like overkill for the little projects I am 
  3803. working on now.  However, if these projects do turn out to be worthwhile, then
  3804. I plan to review whether they can be moved to DB2 without too much pain.
  3805. Thanks again.
  3806.    
  3807.  
  3808. --- WtrGate+ v0.93.p7 sn 165
  3809.  * Origin: Usenet: MBnet Networking Inc. (1:109/42)
  3810.  
  3811. +----------------------------------------------------------------------------+
  3812.  
  3813. From: croed@dimark.ca                                   24-Sep-99 14:55:25
  3814.   To: All                                               24-Sep-99 13:22:29
  3815. Subj: Re: Apache and OS/2: is it realistic
  3816.  
  3817. From: croed@dimark.ca
  3818.  
  3819. In <xgxargynofbet.fijge34.pminews@news.aart.ch>, "Adrian Gschwend"
  3820. <nospam_ktk@netlabs.org> writes:
  3821. >On Wed, 22 Sep 1999 20:50:12 GMT, croed@dimark.ca wrote:
  3822. >
  3823. >
  3824. >Some links you should check:
  3825. >
  3826. >Apache for OS/2 with PHP3 & MySQL support: http://silk.apana.org.au/apache/
  3827. >PHP3 Homepage: http://www.php.net
  3828. >MySQL Homepage: http://www.mysql.org
  3829. >MySQL for OS/2: http:;//www.netlabs.org/projects/mysql.html (more recent
  3830. >version is at Hobbes, http://hobbes.nmsu.edu).
  3831. >
  3832. >So you see that OS/2 is a great platform for this :)
  3833. >
  3834.  
  3835. Thanks for the links- I had found some of the things I needed but not enough.
  3836. This should get me the rest of the way.  
  3837.  
  3838. --- WtrGate+ v0.93.p7 sn 165
  3839.  * Origin: Usenet: MBnet Networking Inc. (1:109/42)
  3840.  
  3841. +----------------------------------------------------------------------------+
  3842.  
  3843. From: d.s.darrow@nvinet.com                             23-Sep-99 17:52:13
  3844.   To: All                                               24-Sep-99 20:01:11
  3845. Subj: Re: Netlabs statement about the future of OS/2
  3846.  
  3847. From: "Doug Darrow" <d.s.darrow@nvinet.com>
  3848.  
  3849. On Tue, 21 Sep 1999 03:01:47 GMT, hamei@pacbell.net wrote:
  3850.  
  3851. >In a nutshell, that's my beef with IBM. How about a little open and honest 
  3852. >dissemination of intentions from the ONLY people who know their plans - 
  3853. >IBM ? We all bought the product, we all have time and effort and money 
  3854. >invested, whatever they want to do is their business, just TELL US ! then 
  3855. >we can get on with our lives, decide what is best for us individually, not 
  3856. >have to sift rumours and innuendo for scraps of insight.  Or does IBM shelter 
  3857.  
  3858. >under the CIA umbrella now ? If anyone can be said to be responsible for the 
  3859. >OS/2 FUD campaign, it'd be IBM for never being upfront with us. And YES, 
  3860. >we deserve it - we bought the product, now come out and tell the truth,
  3861. >get it over with !
  3862.  
  3863. Actually, I believe IBM has been QUITE open and honest with the OS/2
  3864. SOHO crowd. IBM has ALWAYS said "OS/2 is not for the consumer
  3865. market...", "The war for the desktop is over and Windows won...", "We
  3866. recommend that you move to Windows...". "We (IBM) will no longer
  3867. support OS/2 on the Desktop...". How much more clear can they be? 
  3868.  
  3869. The problem isn't that IBM isn't being clear or open with us. The
  3870. problem is that WE don't want to accept IBM's stated direction. IBM
  3871. continues to update OS/2 for their large corporate accounts and they're
  3872. kind enough to allow us SOHO users to benefit from those updates at no
  3873. charge. But they see no future in continuing OS/2 as a client system,
  3874. so they've decided not to develop the client any further... and they've
  3875. been TELLING us that for over three years, while WE keep insisting that
  3876. they CONTINUE development of OS/2 Client. Where is IBM being deceitful
  3877. in this? 
  3878.  
  3879.  
  3880.  
  3881. --- WtrGate+ v0.93.p7 sn 165
  3882.  * Origin: Origin Line 1 Goes Here (1:109/42)
  3883.  
  3884. +----------------------------------------------------------------------------+
  3885.  
  3886. +============================================================================+
  3887.