User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
You're currently browsing the Legacy and Other Languages section within the Software Development category of DaniWeb, a massive community of 396,991 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,905 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our Legacy and Other Languages advertiser:
Views: 11009 | Replies: 66
Reply
Join Date: Aug 2005
Location: near St Louis, Missouri, USA
Posts: 10,628
Reputation: Ancient Dragon has much to be proud of Ancient Dragon has much to be proud of Ancient Dragon has much to be proud of Ancient Dragon has much to be proud of Ancient Dragon has much to be proud of Ancient Dragon has much to be proud of Ancient Dragon has much to be proud of Ancient Dragon has much to be proud of Ancient Dragon has much to be proud of 
Rep Power: 36
Solved Threads: 865
Moderator
Featured Poster
Ancient Dragon's Avatar
Ancient Dragon Ancient Dragon is online now Online
Most Valuable Poster

Re: was windows made with BASIC?

  #61  
Dec 16th, 2007
My son-in-law loves MAC too -- he does professional graphic design and I suppose that's the best os for that purpose.

bling -- I never heard that term before. Do you mean this?
I think it's about time we voted for senators with breasts. After all, we've been voting for boobs long enough. ~Clarie Sargent, Arizona senatorial candidate
Those who are too smart to engage in politics are punished by being governed by those who are dumber. ~Plato
Reply With Quote  
Join Date: Sep 2007
Posts: 6
Reputation: paoconnell is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
paoconnell paoconnell is offline Offline
Newbie Poster

Re: was windows made with BASIC?

  #62  
Dec 16th, 2007
Exactly right on bling. I was trying to figure out a good name for interface "features" that really didn't do anything useful, but were flashy. Bling was it, and it's not complimentary.

In Windows Vista, the new search features are a bit flashy and probably do use a lot of clock cycles while indexing in the background, but they're actually useful, and should be stolen and imitated by others.

Bling is stuff like the translucent Aero windows that gain the user nothing in utility, and eat up a lot of clock cycles (which is where we started with this conversation). I don't like "dashboards" and the like for similar reasons...though others do.
Reply With Quote  
Join Date: Apr 2005
Location: Old Hampshire, Old England (LOL)
Posts: 11,937
Reputation: jbennet is a jewel in the rough jbennet is a jewel in the rough jbennet is a jewel in the rough jbennet is a jewel in the rough 
Rep Power: 30
Solved Threads: 265
Moderator
Featured Poster
jbennet's Avatar
jbennet jbennet is offline Offline
Microsoft Fanboy

Re: was windows made with BASIC?

  #63  
Dec 17th, 2007
but they're actually useful, and should be stolen and imitated by others.

the search idea was stolen ages ago from linux
TRY MY SUGGESTIONS AT YOUR OWN RISK!
james.bennet1@ntlworld.com
Reply With Quote  
Join Date: Oct 2007
Posts: 140
Reputation: hopalongcassidy is an unknown quantity at this point 
Rep Power: 1
Solved Threads: 13
hopalongcassidy's Avatar
hopalongcassidy hopalongcassidy is offline Offline
Junior Poster

Re: was windows made with BASIC?

  #64  
Dec 19th, 2007
Originally Posted by Ancient Dragon View Post
I'm that way too -- I was agast at the bloated code that young programmers write professionally a few years ago. When I asked why not write more efficient code the response was "so what? its user interface and doesn't need to be optimized". Well, they paid dearly for that attitude about a year later when the whole program was so slow that the customer wouldn't accept it.

About Windows 1.0 and MS-DOS 1.0 -- I remember those too. DOS version 1.0 did not have any support for subdirectories and Windows 1.0 was all text based, no graphics or fonts other than the operating systems default font. It ran on top of DOS instead of integrated with it.


I think that it's important to realize that 99% of the code does not need to be efficient. The argument that it's just UI code is really valid. That having been said, it's a lot more important to realize that the 1% of code that needs to be efficient needs to really efficient. I think that it was the 1% that was the undoing of the folks you were talking about. They probably never learned to recognize when efficiency is important and how important it is at such times and also had not learned how to make code efficient when it needs to be.

As an old-timer myself, I learned to program at a time when efficiency was almost always important. So I learned to write really tight code. But as the years rolled by and processors got faster and the speed of human beings remained more or less constant, I began to realize that speed and simplicity of coding was usually more important than the number of cycles consumed.

I have concluded that every programmer needs to learn how to write maximally tight code, but also when to write maximally tight code.

Hoppy
Reply With Quote  
Join Date: Apr 2005
Location: Old Hampshire, Old England (LOL)
Posts: 11,937
Reputation: jbennet is a jewel in the rough jbennet is a jewel in the rough jbennet is a jewel in the rough jbennet is a jewel in the rough 
Rep Power: 30
Solved Threads: 265
Moderator
Featured Poster
jbennet's Avatar
jbennet jbennet is offline Offline
Microsoft Fanboy

Re: was windows made with BASIC?

  #65  
Dec 19th, 2007
its probably that attitude that made the cpu-eating monster that is called Vista
Last edited by jbennet : Dec 19th, 2007 at 2:53 pm.
TRY MY SUGGESTIONS AT YOUR OWN RISK!
james.bennet1@ntlworld.com
Reply With Quote  
Join Date: Jan 2007
Location: Atlanta, Georgia USA
Posts: 350
Reputation: mechbas is an unknown quantity at this point 
Rep Power: 2
Solved Threads: 16
mechbas mechbas is offline Offline
Posting Whiz

Re: was windows made with BASIC?

  #66  
Jan 11th, 2008
2 cents.
It's been so long ago that I don't remember were it was read.
Win 1 & 2 was written in basic.
Win 3.0 & above (at least until recently) was some variation of C.
Reply With Quote  
Join Date: Sep 2007
Posts: 6
Reputation: paoconnell is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
paoconnell paoconnell is offline Offline
Newbie Poster

Re: was windows made with BASIC?

  #67  
Jan 12th, 2008
Originally Posted by jbennet View Post
the search idea was stolen ages ago from linux


Perhaps you're right, because I don't know enough about Linux to know whether it had a background indexing service (yes I know about grep, awk and and other command line searching and parsing utilities, as I'm also a Unix programmer, but I'm not a sysadmin).

Windows had the Indexing Service in (at least) Win NT, Win 2000, and Win XP (maybe Win95 and 98), that ran in the background to build an index that could use a search string to find and retrieve documents on the hard drive quickly. Unfortunately, that background service always slowed Windows down, often to a crawl, so most people disabled Indexing.

The current version of that indexing service in Vista is much quicker, and doesn't interfere with foreground tasks as much.

I don't know enough about Mac OSX to know whether it has an indexing service or not.
Reply With Quote  
Reply

Only community members can participate in forum threads. You must register or log in to contribute.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 

DaniWeb Legacy and Other Languages Marketplace
Thread Tools Display Modes

Other Threads in the Legacy and Other Languages Forum

All times are GMT -4. The time now is 9:45 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC