Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.programmer > #21913

Re: The Revenge of the Geeks

From BGB <cr88192@hotmail.com>
Newsgroups comp.os.linux.advocacy, comp.sys.mac.advocacy, comp.databases.oracle.server, comp.lang.java.programmer
Subject Re: The Revenge of the Geeks
Date 2013-01-31 02:22 -0600
Organization albasani.net
Message-ID <ked9nd$3sg$1@news.albasani.net> (permalink)
References (20 earlier) <5105c8fa$0$288$14726298@news.sunsite.dk> <ke4qlt$fke$1@news.albasani.net> <51088de0$0$292$14726298@news.sunsite.dk> <keaot9$9rv$1@news.albasani.net> <5109c4ef$0$281$14726298@news.sunsite.dk>

Cross-posted to 4 groups.

Show all headers | View raw


On 1/30/2013 7:12 PM, Arne Vajhøj wrote:
> On 1/30/2013 4:22 AM, BGB wrote:
>> On 1/29/2013 9:05 PM, Arne Vajhøj wrote:
>>> On 1/27/2013 10:16 PM, BGB wrote:
>>>> On 1/27/2013 6:40 PM, Arne Vajhøj wrote:
>>>>> On 1/27/2013 1:47 PM, BGB wrote:
>>>>>> On 1/27/2013 5:46 AM, Arved Sandstrom wrote:
>>>>>>> Usually in the enterprise world you have little or no leeway as to
>>>>>>> how
>>>>>>> systems talk to each other. You may have a few options to choose
>>>>>>> from,
>>>>>>> but rolling your own is looked upon askance.
>>>>>>>
>>>>>>
>>>>>> well, this is where the whole "mandatory interop or orders from
>>>>>> above"
>>>>>> comes in. in such a case, people say what to do, and the
>>>>>> programmer is
>>>>>> expected to do so.
>>>>>>
>>>>>> but, I more meant for cases where a person has free say in the
>>>>>> matter.
>>>>>>
>>>>>> and, also, a person still may choose an existing option, even if bad,
>>>>>> because it is the least effort, or because it is still locally the
>>>>>> best
>>>>>> solution.
>>>>>>
>>>>>> like, rolling ones' own is not required, nor necessarily always the
>>>>>> best
>>>>>> option, but can't necessarily be summarily excluded simply for
>>>>>> sake of
>>>>>> "standards", as doing so may ultimately just make things worse
>>>>>> overall.
>>>>>
>>>>> It almost can.
>>>>>
>>>>> If you go non standard and problems arise, then you are in
>>>>> deep shit.
>>>>>
>>>>
>>>> depends on costs...
>>>>
>>>> if "liability" is involved, or the functioning of the software is
>>>> "mission critical" or something, then there is more reason for concern.
>>>>
>>>>
>>>> for many types of apps though, hardly anyone gives a crap how any of it
>>>> works internally anyways, and people can pretty much do whatever.
>>>>
>>>> (like, if it crashes or breaks violently, oh well, the user will start
>>>> it up again, and at worst probably the user will think less of the
>>>> product if it is too much of a buggy piece of crap, ...).
>>>
>>> Not everything is important.
>>>
>>> But best practices should be based on an assumption about it
>>> being important.
>>>
>>
>> could be, or it could be that the importance of the system is another
>> factor to be weighed in considering design choices (along with other
>> design-quality concerns, concerns over what other people will think, of
>> possible consequences, ...).
>>
>> like, if the importance is high, then choosing the most well proven
>> technologies is best, and if fairly low, then it may mostly boil down to
>> "whatever works".
>
> Not really.
>
> Unless there really is an advantage of going with the non-standard
> solution, then you would go for standard even for the less important
> stuff.
>

usually, there are advantages in edge-cases.

in cases where a standard technology exists which does the job fairly 
well, then it usually makes most sense to use it.

for example, PNG and JPEG are pretty good, so there are few reasons not 
to use them (for most things image-storage related).

like, not being chained to standards, does not mean making a standard of 
non-standard either.



where it makes more sense to ignore the standardized technologies is 
when they either aren't very good, or are notably bad (and actually 
using them would likely leave the product worse off).

it is like, trying to take VRML seriously as a 3D model format.

VRML is standardized, but the W3C at the time seemingly managed to get 
nearly everything wrong in the design. then later, they tried again with 
X3D, which sort of competes against COLLADA, which AFAICT is much more 
popular (despite X3D being shoved into a larger number of other 
standards, like HTML5 and MPEG-4...).


likewise for the OSI protocols, ... people were largely just like 
"whatever" and continued using TCP/IP (IETF largely won this battle).


nevermind if, officially (as per the standards), JPEG was replaced by 
JPEG-2000 around 13 years ago, and more recently there is JPEG-XR.

meanwhile, the original JPEG remains the more well-supported format by 
most software (much easier to find apps which read/write JPEG images 
than JP2 or JXR images).

...


sometimes, using a standard technology may actually make things worse 
off in other ways.

for example, it is popular at present for people to make various file 
formats consisting of XML documents or similar packaged up into a 
ZIP-based container.

while this is easier to approve as "open" or "standard", it comes with a 
drawback:
some applications are prone to detect the ZIP-related magic values, and 
automatically change the file extension to ZIP, which can sometimes 
prove rather annoying (whereas, if a non-ZIP container format were used, 
these tools would more often leave the file alone).

it also makes little sense if the intention is actually for the 
application to keep the data to itself, such as for a proprietary 
file-format, where it may actually be to ones advantage if unaware 
parties (such as competitors, ...) have little idea what the file contains.


>> so, a lot is about balancing relevant factors, because while being well
>> proven and standard technology is one thing, other factors, like
>> development time, and how well it holds up against the offerings by
>> ones' competitors, or how much end-user appeal there is, as well as
>> potentially the computational performance, ... may also be factors.
>
> They can.
>
> But the home-made solutions often promise to be better but rarely
> delivers.
>

I have generally been having generally good results with various 
custom-designed technologies.


but, this again comes back to cost/benefit tradeoffs:
if the results of the choice don't pay off well, it means they did not 
make a good choice, not that having had an option to make choice was to 
blame.

like, having the freedom to make a choice does not mean freedom from any 
consequences of having made the choice.

like, having freedom to make choices also means the freedom to shoot 
oneself in the foot.


sometimes, a simple direct solution can also be better than a bigger 
"standard" solution, for example:
passing simple lists or arrays for internal messages, vs using DOM or 
similar;
using a HashMap or similar, vs using an RDBMS, to store key/value pairs 
or similar;
passing plain data, rather than using RPC or similar;
...

like, a possible premise:
don't use a sledgehammer to do what can easily enough be done with a 
tack-hammer.

like, even if the standard solution is to store data in a DBMS, the 
HashMap may be simpler, easier, and also potentially significantly 
faster, ...



BTW: have been, mostly for the hell of it, in the process of porting my 
stuff to be able to work on Native Client. most of the work thus far is 
in trying to migrate the stupid 3D renderer from the full OpenGL to 
OpenGL ES.

to make this work, I am as well having to make a "hand-made solution":
namely, migrating much of the code from using normal OpenGL calls to 
using a set of wrapper functions (which will then fake things and pass 
the results off to GLES). (too much of the code still relies on the 
existence of the "fixed function pipeline", so for GLES it needs to all 
be faked...).

I guess the more standard solution here would be to rewrite all the code 
directly (rather than forcing it onto wrappers), but this would be more 
work.


but, then again, it is notably easier in this case to go with a 
non-standard technology (Native Client), even if largely tied to a 
single browser, than to go with a more standardized technology (IOW: 
trying to rewrite a 3D engine into HTML5+JS+WebGL to shove it into a 
browser).

granted, for targeting a browser up-front (writing a new engine 
ground-up or similar), the HTML5+JS+WebGL route could probably make more 
sense (at least assuming "general" things, like that the browsers are 
smart enough to know how to cache compiled code and similar...).

Back to comp.lang.java.programmer | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

The Revenge of the Geeks Ramon F Herrera <ramon@conexus.net> - 2013-01-22 06:41 -0800
  Re: The Revenge of the Geeks Melzzzzz <mel@zzzzz.com> - 2013-01-22 14:55 +0000
    Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-22 22:29 -0500
  Re: The Revenge of the Geeks Ramon F Herrera <ramon@conexus.net> - 2013-01-22 06:58 -0800
  Re: The Revenge of the Geeks joel garry <joel-garry@home.com> - 2013-01-22 08:54 -0800
    Re: The Revenge of the Geeks cipher <cipher@nospamforme.org> - 2013-01-23 00:07 +0000
      Re: The Revenge of the Geeks Lew <lewbloch@gmail.com> - 2013-01-22 17:02 -0800
        Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-22 22:23 -0500
        Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-22 21:30 -0600
      Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-22 22:26 -0500
        Re: The Revenge of the Geeks cipher <cipher@nospamforme.org> - 2013-01-24 00:51 +0000
          Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-23 20:01 -0500
            Re: The Revenge of the Geeks cipher <cipher@nospamforme.org> - 2013-01-24 01:10 +0000
              Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-23 20:20 -0500
                Re: The Revenge of the Geeks cipher <cipher@nospamforme.org> - 2013-01-24 12:15 +0000
                Re: The Revenge of the Geeks "Ezekiel" <zeke@nosuchemail.com> - 2013-01-24 07:37 -0500
                Re: The Revenge of the Geeks lipska the kat <"nospam at neversurrender dot co dot uk"> - 2013-01-24 12:55 +0000
                Re: The Revenge of the Geeks cipher <cipher@nospamforme.org> - 2013-01-24 14:40 +0000
                Re: The Revenge of the Geeks "Ezekiel" <zeke@nosuchemail.com> - 2013-01-24 10:01 -0500
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-24 10:24 -0500
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-24 10:35 -0500
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-24 10:56 -0500
                Re: The Revenge of the Geeks Stuart <DerTopper@web.de> - 2013-01-30 23:54 +0100
  Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-22 22:32 -0500
  Re: The Revenge of the Geeks Kevin McMurtrie <mcmurtrie@pixelmemory.us> - 2013-01-22 21:33 -0800
    Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-23 00:21 -0600
      Re: The Revenge of the Geeks Arved Sandstrom <asandstrom2@eastlink.ca> - 2013-01-23 05:25 -0400
        Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-23 04:35 -0600
          Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-23 20:17 -0500
            Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-23 22:47 -0600
              Re: The Revenge of the Geeks Arved Sandstrom <asandstrom2@eastlink.ca> - 2013-01-24 06:03 -0400
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-24 04:44 -0600
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-24 11:10 -0500
                Re: The Revenge of the Geeks lipska the kat <"nospam at neversurrender dot co dot uk"> - 2013-01-24 10:49 +0000
              Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-24 11:06 -0500
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-24 16:10 -0600
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-24 17:30 -0500
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-24 17:44 -0600
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-24 17:49 -0500
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-24 17:58 -0500
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-24 21:10 -0600
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-24 22:15 -0500
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-24 22:31 -0600
                Re: The Revenge of the Geeks Lew <lewbloch@gmail.com> - 2013-01-24 23:57 -0800
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-25 22:05 -0500
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-25 23:31 -0600
                Re: The Revenge of the Geeks Arved Sandstrom <asandstrom2@eastlink.ca> - 2013-01-26 07:25 -0400
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-26 12:40 -0600
                Re: The Revenge of the Geeks Arved Sandstrom <asandstrom2@eastlink.ca> - 2013-01-26 21:34 -0400
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-26 22:06 -0500
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-26 09:12 -0500
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-26 14:47 -0600
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-26 16:23 -0500
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-26 15:24 -0600
                Re: The Revenge of the Geeks Arved Sandstrom <asandstrom2@eastlink.ca> - 2013-01-26 21:47 -0400
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-26 22:11 -0500
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-26 22:54 -0600
                Re: The Revenge of the Geeks Arved Sandstrom <asandstrom2@eastlink.ca> - 2013-01-27 07:46 -0400
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-27 12:47 -0600
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-27 19:40 -0500
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-27 21:16 -0600
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-29 22:05 -0500
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-30 03:22 -0600
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-30 20:12 -0500
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-31 02:22 -0600
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-02-01 20:12 -0500
                Re: The Revenge of the Geeks Gene Wirchenko <genew@telus.net> - 2013-02-04 14:09 -0800
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-02-04 18:28 -0500
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-02-05 01:57 -0600
                Re: The Revenge of the Geeks Gene Wirchenko <genew@telus.net> - 2013-02-05 09:55 -0800
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-27 19:37 -0500
                Re: The Revenge of the Geeks lipska the kat <"nospam at neversurrender dot co dot uk"> - 2013-01-27 10:38 +0000
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-27 13:09 -0600
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-27 19:47 -0500
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-27 19:45 -0500
                Re: The Revenge of the Geeks Arved Sandstrom <asandstrom2@eastlink.ca> - 2013-01-26 07:26 -0400
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-26 13:22 -0600
                Re: The Revenge of the Geeks Lew <lewbloch@gmail.com> - 2013-01-26 12:57 -0800
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-26 16:15 -0600
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-26 22:04 -0500
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-27 00:38 -0600
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-27 19:35 -0500
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-27 21:04 -0600
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-26 16:34 -0500
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-26 17:04 -0600
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-26 22:14 -0500
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-27 01:38 -0600
                Re: The Revenge of the Geeks Martin Gregorie <martin@address-in-sig.invalid> - 2013-01-27 13:13 +0000
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-27 13:59 -0600
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-24 22:17 -0500
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-24 23:06 -0600
                Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-25 22:10 -0500
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-26 00:31 -0600
                Re: The Revenge of the Geeks Lew <lewbloch@gmail.com> - 2013-01-24 19:42 -0800
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-24 23:22 -0600
                Re: The Revenge of the Geeks Lew <lewbloch@gmail.com> - 2013-01-25 00:03 -0800
                Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-25 02:41 -0600
                Re: The Revenge of the Geeks Arved Sandstrom <asandstrom2@eastlink.ca> - 2013-01-24 19:31 -0400
              Re: The Revenge of the Geeks Lew <lewbloch@gmail.com> - 2013-01-24 11:30 -0800
        Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-23 20:13 -0500
          Re: The Revenge of the Geeks Arved Sandstrom <asandstrom2@eastlink.ca> - 2013-01-24 15:31 -0400
            Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-24 14:37 -0500
    Re: The Revenge of the Geeks Arne Vajhøj <arne@vajhoej.dk> - 2013-01-23 20:09 -0500
  Re: The Revenge of the Geeks Roedy Green <see_website@mindprod.com.invalid> - 2013-01-24 04:30 -0800
    Re: The Revenge of the Geeks BGB <cr88192@hotmail.com> - 2013-01-25 02:45 -0600
      Re: The Revenge of the Geeks Roedy Green <see_website@mindprod.com.invalid> - 2013-01-27 23:33 -0800

csiph-web