vote up -3 vote down star
1

Many workaround I have encountered where actually just caused by bad code practices or lack of knowledge. But of course, sometimes you just run into bugs, constraints or odd situations when you just need a workaround.

I hope a list of workarounds will reveal as well known as not so known issues that could come in handy for a lot of people.

Of course posting workarounds is kinda risky :-) Did you really needed that workaround, or is there sth. you missed?

flag
Workarounds are what we do for a living. Too general. close++; – Yuval A Apr 19 at 9:57
haha , funny comment though – Peter Apr 19 at 9:58
3  
I would not close the question. Some clever war-stories could be written and be interesting for better learning. – Stefano Borini Apr 19 at 10:13
Helas, the closepolice will close it soon, it's a pitty to miss out on the insides of other programmers. I did my best though – Peter Apr 19 at 10:27
at Yuval : maybe search another job than? – Peter Apr 19 at 10:29

closed as not a real question by John Topley, Yuval A, Neil Butterworth, tgamblin, sth Apr 19 at 11:55

6 Answers

vote up 2 vote down check

Many design patterns can be classified as workarounds for missing language power, for example, the visitor pattern as a workaround for missing multiple dispatch, or the observer pattern for missing method combination.

link|flag
Very interesting view! I like it a lot. Wouldn't you concider to make 'Can design patterns be classified as workarounds for missing language power?' a question? I think that question may produce some interesting insights. (I would gladly ask that, but it's your insigth, of course) – Peter Apr 19 at 20:36
You can ask, if you want, but I think that this is not an issue to discuss on a Q&A site like Stackoverflow; it is rather suited for a forum. I don't know which forum, though. – Svante Apr 20 at 0:15
vote up 2 vote down

We actually do workarounds all the time, and here's why.

We have two streams of 'development'.

  • the next release of the product (development).
  • patches to currently supported releases of the product (maintenance).

As part of our business commitments, we have to turn around and fix bug within a certain time frame. To meet those deadlines, we target the specific bug, sometimes with a kludgy workaround instead of a 'pure' solution.

The bug gets fixed properly in the development stream eventually but our customers won't wait around for a real fix when their business is on the line (they understand this, of course - those that don't want a workaround are free to wait for the proper fix in the next release if it's not affecting them too much).

link|flag
good insight, tx – Peter Apr 19 at 10:53
vote up 1 vote down

For the stupidity of other (so called) "programmers"... ;)

It's one of those situations, where you need a workaround.
Because it's easier and faster than to explain people how to do it right (sadly).

link|flag
:-) . – Peter Apr 19 at 10:16
vote up 1 vote down

In Fortran, you cannot allocate dynamically a string of a given dynamic length. It means that CHARACTER(LEN=100) and CHARACTER(LEN=101) are two different datatypes, like they are CHARACTER(LEN=100) and INTEGER.

Suppose that you don't know at compile time how much you are going to read, but you learn it at runtime (say 200) and you have to allocate a string of 200 to hold it. You can't. In C you can (you malloc the desired size and cast the void * to char *)

In other words, this is forbidden

integer :: strlen

call getLen(strlen)

character(len=strlen) :: string

call getString(string)

However, there's a trick. You can however allocate it "dynamically" if you pass the size as a parameter in a function, and then allocate a string on the stack using the passed parameter as a LEN. In other words this will work

integer :: strlen
call getLen(strlen)
call helper_func(strlen)


...

subroutine helper_func(strlen)
  implicit none
  integer, intent(in) :: strlen
  character(len=strlen) :: string

  call getString(string)
end subroutine

In principle, now you could declare character(len=strlen), allocatable :: str_ptr and juggle the pointer around.

link|flag
vote up 0 vote down

Here, a sad sniffing example for workaround the fact that IE6 did not recognize the getElementsByName-tag.

It was written to make existant code for ff. working crossbrower

function getElementsByNameWorkAround(pName) {

        if (BrowserDetect.browser!='Explorer')
            return document.getElementsByName(pName);

        var coll = [];    
        var htmlBody = document.getElementsByTagName("body")[0];
        for (var i = 1; i < htmlBody.all.length; i++) {
            var currentItem = htmlBody.all[i];
            if (currentItem.getAttribute('name') == pName)
                coll.push(currentItem);             
            }
            return coll;
 }
link|flag
vote up 0 vote down

Some common reasons to use a workaround:

  • because of a bug or a limitation in the OS or a library

  • to save time ('we'll fix it later')

  • to avoid confrontation with other programmers

  • to avoid the risk of introducing new bugs

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.