Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
415 views

What programming language is FogBugz written in?

From what I've read it appears that FogBugz was originally written in VBScript. Now apparently they use their own custom compiler and language that will translate the source code to more "accessible" ...
3
votes
2answers
649 views

What is Wasabi?

On Joel Spolsky's blog, I often read something about "Wasabi" and if I check Wikipedia, it mentions that it's an in-house programming language. What is it? Why do they use it? And why isn't it ...
3
votes
6answers
812 views

Wasabi like web programming language

Are there any open source or commercial web programming language that function much like Fog Creek's Wasabi? As in you write your web app in this parent language and it then compiles down to php for ...
2
votes
1answer
82 views

Code that operates on code? Please tell me more

What is this called, when a program takes source code as an input and spits out new source code and perhaps immediately runs the new code? Examples: Automated refactoring Taking a function and ...
1
vote
1answer
26 views

How often does Wasabi block for Azure scaling collect data?

I carefully looked through Tailspin Surveys sample for Wasabi autoscaling block. There's Tailspin_TenantCount_Avg_10m rule that is implemented in TenantCountOperandElement class which in turn supplies ...
1
vote
1answer
19 views

How do I define rules for Wasabi Azure scaling block in my code?

I think of using Wasabi block for auto-scaling my Azure application. Looks like the rules have to be hardcoded in an XML file. This bothers me, because the rules I want for my application require a ...
0
votes
1answer
292 views

rendering an audio stream (WASAPI / WINAPI )

i'm currently reading the documentation of MSDN to render a stream to an audio renderer.. or in other word, to play my captured data from microphone. ...