>>>In some cases, this can result in more effecient code than a precompiled binary such as one created by a C compiler.
>This is a bullshit argument that generally presumes a substandard optimization by the binary compiler.
Like it or not, in 10+ years from now most (if not all) applications will be written in either Java,.NET or a similar Framework/Language. C/C++ will only be used where bit-banging stuff is needed AND NO ONE will care about except a few grumpy old man...
... I would give this guy research lab and resources to create java-based DirectX library. For game developers, it would be just great to write once and sell on Windows on Linux on Mac on Playstation (don't know about XBox). Even without Sun's support, it would be great fot 3rd party to sell such engine/framework.
You'd have to give it away for free to make *anyone* throw away their well-tested-and-working C++ engines for a Java Version. No matter how fast it is, the java=slow paradigm is burned to deep into to many developer heads out there...
Wouldn't it be funny if.Net (with Mono) actually delivered on the promise of Java? That is to say, bringing software to the Linux platform from traditional MS developers?
it probably would, but as long most.net apps (or at least most of the apps I was tricked to fix) look like
#region User Declaration
clsDML objDML = new clsDML();
public clsCommon objCommon = new clsCommon();
clsGridFunctions objGridFunction = new clsGridFunctions();
Hashtable hstUserSel = new Hashtable();
int intPageSize = 2;
string strCateLogPage = "CATELOG", strMacVal = "Mac";
string strCurrDir = "", strVirImgFolder = @"/TEMP/", strPhyImgFolder = @"C:\TEMP\";
string strAddCart = "AddCart", strDownload = "Download", strSQL = "", strZipExt = ".zip", strAmbientenbild = "";
static string[] strarrTable3Fields = new string[]{"DISTINCT VALID_FOR","VALID_FOR"};
string[] strImgSupportTypeExt = new string[]{"jpg","jpeg","gif","bmp","png"};//Allowab le image formats
string[] strMovieExt = new string[]{"mpg","mpeg"};//Allowable movie file formats
string strMovieFileImgPath = "Images\MPG-File.jpg";//Path(relative) of image to be displayed when we have a movie file
clsModifyImage objThumbnail;
public string str72 = "_72", str300 = "_300";
FileStream fsGetFile;
string strSpace = "";
#endregion
you probably won't want it running on linux...
ps: I didn't write the mess up there, I was just hired to extend it;-)
The fact is that "Joe User" is not as stupid as we imagine, he just has other things on his plate, but he still wants all his web apps to work.
Agreed, he wants his web app to work and if it worked in IE6 and will work in IE7 he'll be pleased. So if IE7 is just as fucked up as IE6 is, he won't n notice if its standard compilant or not.
Joe Average User doesn't care about W3C standards, he cares about tabs, nice guis, phishing and virus warnings (but not too many, and not while browseing his favorite p0rn sites). Some web developers care about standards, but unfortunatly nobody is going to ask them.
StartTime=Timer while Timer-StartTime<30 'While fewer than 30 seconds have passed...
application.processmessages 'or whatever the BASIC specific command would be wend
Sorry, I'm confused, were we talking about 70th style Basic hacking or 90th style Windows programing?
Windows 2/3 was popular when we were leeching warez from bbs and you were sitting in diapers. This wont have bill gates worrying...
What? You mean that Windows2 thing we needed to use to start Aldus Pagemaker was actually an operating system?
Re:Success of PHP easy to understand
on
A Decade of PHP
·
· Score: 1
f you use either if (is_null($test)) or if ($test === null) instead of if ($test == null) you get the expected results.
I know, the point is, the initial design was flawed, but instead of fixing it, they introduced kludges like "is_null()" or the "===" operator. Thats not exactly what I would call "easy to learn".
Re:Success of PHP easy to understand
on
A Decade of PHP
·
· Score: 1
5. It features nice effects
$test = null; if ($test==null) {
echo "test is null";
} $test = array("1","2"); if ($test==null) {
echo "test is null";
} $test = array(); if ($test==null) {
echo "test is null";
}
Now I'll know who to call next time my car gets stuck in the snow this winter.
Good luck, but keep the following in mind before calling this guys: 4 hours after your call you'll be called back an instructed to turn 30 4 hours later you'll be instructed to drive back slowy for 1.5 minutes [...]
I bought one when OSX came out, it was a nice machine and fun to play around with, but it also was to sluggish to switch my development enviroment over to it. The turnaround times where just to high. So my $3000 mac ended up being an expensive music box... well, I'll give it another try if I have another 3k bucks to waste...
But Pascal isn't really used anymore, is it? What ever happened to that great language?
It became Delphi...
..is a very important date in Telecommunications.
Yep, now we`ll be surely doomed when SKYNET comes online...
Does this mean the end for Fireworks and Freehand?" ...it means the end of flash, but I know its just a dream.
guide here
>>>In some cases, this can result in more effecient code than a precompiled binary such as one created by a C compiler.
.NET or a similar Framework/Language. C/C++ will only be used where bit-banging stuff is needed AND NO ONE will care about except a few grumpy old man...
>This is a bullshit argument that generally presumes a substandard optimization by the binary compiler.
Like it or not, in 10+ years from now most (if not all) applications will be written in either Java,
... I would give this guy research lab and resources to create java-based DirectX library. For game developers, it would be just great to write once and sell on Windows on Linux on Mac on Playstation (don't know about XBox). Even without Sun's support, it would be great fot 3rd party to sell such engine/framework.
You'd have to give it away for free to make *anyone* throw away their well-tested-and-working C++ engines for a Java Version. No matter how fast it is, the java=slow paradigm is burned to deep into to many developer heads out there...
Wouldn't it be funny if
it probably would, but as long most
#region User Declaration
clsDML objDML = new clsDML();
public clsCommon objCommon = new clsCommon();
clsGridFunctions objGridFunction = new clsGridFunctions();
Hashtable hstUserSel = new Hashtable();
int intPageSize = 2;
string strCateLogPage = "CATELOG", strMacVal = "Mac";
string strCurrDir = "", strVirImgFolder = @"/TEMP/", strPhyImgFolder = @"C:\TEMP\";
string strAddCart = "AddCart", strDownload = "Download", strSQL = "", strZipExt = ".zip", strAmbientenbild = "";
static string[] strarrTable3Fields = new string[]{"DISTINCT VALID_FOR","VALID_FOR"};
string[] strImgSupportTypeExt = new string[]{"jpg","jpeg","gif","bmp","png"};//Allowa
string[] strMovieExt = new string[]{"mpg","mpeg"};//Allowable movie file formats
string strMovieFileImgPath = "Images\MPG-File.jpg";//Path(relative) of image to be displayed when we have a movie file
clsModifyImage objThumbnail;
public string str72 = "_72", str300 = "_300";
FileStream fsGetFile;
string strSpace = "";
#endregion
you probably won't want it running on linux...
ps: I didn't write the mess up there, I was just hired to extend it
I like this one...
I played Diablo and Diablo II, so I got enough of blizzard
fool me once....
hm...
so how long until its flooded with porn do we think? one, maybe two weeks?
ok, see you there next week...
The fact is that "Joe User" is not as stupid as we imagine, he just has other things on his plate, but he still wants all his web apps to work.
Agreed, he wants his web app to work and if it worked in IE6 and will work in IE7 he'll be pleased. So if IE7 is just as fucked up as IE6 is, he won't n notice if its standard compilant or not.
Joe Average User doesn't care about W3C standards, he cares about tabs, nice guis, phishing and virus warnings (but not too many, and not while browseing his favorite p0rn sites).
Some web developers care about standards, but unfortunatly nobody is going to ask them.
Are there any browsers out there (other than that patched-up Safari version) that have actually passed the Acid Test?
./ compatibility...
No, because passing the acid test, breaks
If you actually have to tell us it's funny, is it really?
You must be new here...
Windows 2/3 was popular when we were leeching warez from bbs and you were sitting in diapers. This wont have bill gates worrying...
What? You mean that Windows2 thing we needed to use to start Aldus Pagemaker was actually an operating system?
f you use either if (is_null($test)) or if ($test === null) instead of if ($test == null) you get the expected results.
I know, the point is, the initial design was flawed, but instead of fixing it, they introduced kludges like "is_null()" or the "===" operator. Thats not exactly what I would call "easy to learn".
5. It features nice effects
;-)
$test = null;
if ($test==null) {
echo "test is null";
}
$test = array("1","2");
if ($test==null) {
echo "test is null";
}
$test = array();
if ($test==null) {
echo "test is null";
}
reply with your suggested result
Apple are moving to X86 yes , but it wont be standard PC equipment .
I bet a Mac On Linux x86 Edition is available 6 month after 10.5 for Intel Macs...
Now I'll know who to call next time my car gets stuck in the snow this winter.
Good luck, but keep the following in mind before calling this guys:
4 hours after your call you'll be called back an instructed to turn 30
4 hours later you'll be instructed to drive back slowy for 1.5 minutes
[...]
I'd rather wait for Mister Plow instead...
I'd mod him +1 funny...
In their culture, its cool to be a 'geek'!
I bet you've never been here...
This one or
;-)
This one
or This one
ok, some of them are end of life, but hey you'll never know...
ps:I hope you have some spare money lying around...
I bought one when OSX came out, it was a nice machine and fun to play around with, but it also was to sluggish to switch my development enviroment over to it. The turnaround times where just to high. So my $3000 mac ended up being an expensive music box...
well, I'll give it another try if I have another 3k bucks to waste...