Id
int64 1.68k
75.6M
| PostTypeId
int64 1
2
| AcceptedAnswerId
int64 1.7k
75.6M
⌀ | ParentId
int64 1.68k
75.6M
⌀ | Score
int64 -60
3.16k
| ViewCount
int64 8
2.68M
⌀ | Body
stringlengths 1
41.1k
| Title
stringlengths 14
150
⌀ | ContentLicense
stringclasses 3
values | FavoriteCount
int64 0
1
⌀ | CreationDate
stringlengths 23
23
| LastActivityDate
stringlengths 23
23
| LastEditDate
stringlengths 23
23
⌀ | LastEditorUserId
int64 -1
21.3M
⌀ | OwnerUserId
int64 1
21.3M
⌀ | Tags
sequence |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1,390,460 | 1 | 1,465,229 | null | 2 | 1,239 | I have this Win32 user-drawn tab control that is created as:
```
CONTROL "Tab1",IDC_TAB_CONT,"SysTabControl32",TCS_BOTTOM |
TCS_OWNERDRAWFIXED | NOT WS_VISIBLE,0,14,185,88
```
I'd like for this control to have its tabs resize as never to have to see the "":

Now, pretty much everything about this control works as expected, except for that fact that it won't respond to `TabCtrl_SetItemSize`. Try as I may, the size I get for the tabs when I get to draw them (in the `DRAWITEMSTRUCT` passed to `WM_DRAWITEM`) is always the size that fits the longest caption in them and never the size I've set with `TabCtrl_SetItemSize`.
However, in the [TabCtrl_SetItemSize documentation](http://msdn.microsoft.com/en-us/library/bb760694(VS.85).aspx), it says that:
> [`TabCtrl_SetItemSize`] sets the width and height of tabs in a
fixed-width or
control.
The only way I've managed to have a decent resizing is by setting a dummy string of the desired length in it by sending the control a `TCM_SETITEM` message, and writing the desired text in it at draw time. This is rather inconvenient and not a particularly nice hack.
Is there anybody who would know
1. Why TabCtrl_SetItemSize isn't working as expected? and/or
2. How to set the tab size properly?
Many thanks,
joce.
| TabCtrl_SetItemSize and user drawn tab controls | CC BY-SA 2.5 | 0 | 2009-09-07T18:16:23.520 | 2009-09-23T10:38:44.293 | 2017-02-08T14:15:07.133 | -1 | 82,682 | [
"windows",
"winapi",
"resize",
"tabs"
] |
1,391,718 | 1 | 1,392,711 | null | 3 | 5,727 | I have a simple page that returns an ajax success/error message on submission. The form is submitted using a standard ASP.Net linkbutton.
My Selenium test correctly clicks the linkbutton, however the click event times out and fails. The rest of the testcase conditions pass (as selenium is successfully clicking the link and the ajax success message is displayed).
All I can think is that for some reason click() is calling waitForPageToLoad which is why it is timing out. Is there any way to suppress this, or am I barking up the wrong tree?
Is there an alternative way to handle the click that doesn't care what happens after the event fires?
More Info: Selenium IDE 1.0.2 hosted in Firefox 3.5.2 on Vista (don't ask)

---
I've managed to get my test to pass by creating my own click() function in user-extensions.js that does call . While my test does pass now, this is not really an ideal solution.
If you'd like to try this yourself, add the following to user-extensions.js (make sure you are referencing this file in your Se:IDE configuration via Tools | Selenium IDE | Options | Options | General | Selenium Core extensions)
```
Selenium.prototype.doBeatnicClick = function(locator) {
/**
* Clicks on a link, button, checkbox or radio button.
* Hacky workaround for timeout problem with linkbutton.
* Suspect there is an issue with Selenium.decorateFunctionWithTimeout()
*/
var element = this.browserbot.findElement(locator);
var elementWithHref = getAncestorOrSelfWithJavascriptHref(element);
if (browserVersion.isChrome && elementWithHref != null) {
var win = elementWithHref.ownerDocument.defaultView;
var originalLocation = win.location.href;
var originalHref = elementWithHref.href;
elementWithHref.href = 'javascript:try { '
+ originalHref.replace(/^\s*javascript:/i, "")
+ ' } finally { window._executingJavascriptHref = undefined; }';
win._executingJavascriptHref = true;
this.browserbot.clickElement(element);
}
this.browserbot.clickElement(element);
```
};
Reload Se:IDE and you'll have access to a new command, beatnicClick() which should work where you're experiencing a click() timeout.
Hopefully this will be patched, or fixed in the next release of Se:IDE.
| Selenium IDE click() timeout | CC BY-SA 2.5 | 0 | 2009-09-08T02:43:57.410 | 2010-02-11T20:52:36.237 | 2020-06-20T09:12:55.060 | -1 | 428,876 | [
"asp.net",
"selenium"
] |
1,392,429 | 1 | 1,427,604 | null | 5 | 2,705 | Image the following situation:
1. You're on Windows XP (even though the dialog shown below is a Vista screenshot).
2. You have two physical USB game controllers, let's call them A and B.
3. You have a piece of software that apparently accesses joysticks in a legacy way, only recognizing and allowing use of one single joystick.
4. When using this software, you want to use both controllers together, for instance: use the left thumbstick from A and the right thumbstick from B use buttons #1, #2 and #6 from A and buttons #2 and #8 from B
I guess this problem must have already popped up in hardcore gaming somewhere, and a kind of "virtual game controller driver" or other piece of software for this is available. This would ideally show up as a game controller in Windows and allow a virtual setup as described above using any inputs available on physically connected controllers to create a compound virtual one.

If this is the case, I'd love to hear where to get my hands on this. And if not, any pointers on trying to get this going are welcome. I guess I'd have to read up on DirectInput and dust off my next to non-existent C++ skills then?
Like Runeborg answered, it now looks like I might have to get cracking at trying to write my own "virtual game controller device driver" if I want this to happen. :-(
Quick update: [have asked same question on smartgamer](http://smartergamer.stackexchange.com/questions/161/how-to-mix-and-match-inputs-from-two-game-controllers-into-one-virtual-controll) in the hope another crowd there might come up with an existing answer.
| How to mix-and-match inputs from two game controllers into one "virtual" controller? | CC BY-SA 2.5 | 0 | 2009-09-08T07:11:15.723 | 2011-09-09T02:18:33.527 | 2017-02-08T14:15:08.157 | -1 | 50,846 | [
"windows",
"virtual"
] |
1,395,476 | 1 | 1,395,530 | null | 0 | 1,518 | Okay, so I'm looking at a typical color chooser and it looks something like this:

If we deal with only highly saturated colors, the blending pattern behaves like this:
```
R 255
G 0
B 0
R 255
G 0 -> 255
B 0
R 255
G 255
B 0
R 255 -> 0
G 255
B 0
R 0
G 255
B 0
R 0
G 255
B 0 -> 255
R 0
G 255
B 255
R 0
G 255 -> 0
B 255
R 0
G 0
B 255
R 0 -> 255
G 0
B 255
R 255
G 0
B 255
R 255
G 0
B 255 -> 0
R 255
G 0
B 0
```
Is it possible to define an interpolating function f which takes a value from 0 to 1 and produces a color on this spectrum (where 0 and 1 correspond to the left and right hand sides of the spectrum posted above)? I only care about highly saturated colors (One component is always 255.). Also, I notice that this pattern blends from R to G to B. However, is there also a similar function which blends between cyan, magenta, and yellow? And while this is not correct, if f(0) produced cyan and f(1) produced yellow, then f(0.5) would produce a green color similar to the one you might achieve if you mixed two paints.
I hope this makes sense. Please feel free to have me clarify anything. Thanks!
| Color Interpolation | CC BY-SA 3.0 | null | 2009-09-08T18:18:45.560 | 2017-11-06T14:27:10.153 | 2017-11-01T12:23:59.477 | 1,000,551 | null | [
"colors",
"interpolation",
"polynomial-math",
"blending"
] |
1,395,513 | 1 | 3,806,314 | null | 19 | 34,665 | The 8-puzzle is a square board with 9 positions, filled by 8 numbered tiles and one gap. At any point, a tile adjacent to the gap can be moved into the gap, creating a new gap position. In other words the gap can be swapped with an adjacent (horizontally and vertically) tile. The objective in the game is to begin with an arbitrary configuration of tiles, and move them so as to get the numbered tiles arranged in ascending order either running around the perimeter of the board or ordered from left to right, with 1 in the top left-hand position.

I was wondering what approach will be efficient to solve this problem?
| What can be the efficient approach to solve the 8 puzzle problem? | CC BY-SA 2.5 | 0 | 2009-09-08T18:24:55.487 | 2018-10-05T03:27:06.620 | 2017-02-08T14:15:09.573 | -1 | 170,339 | [
"algorithm",
"logic",
"puzzle",
"a-star",
"sliding-tile-puzzle"
] |
1,395,591 | 1 | 1,395,646 | null | 276 | 243,344 | Using [this example](http://en.wikipedia.org/wiki/Call_stack) coming from wikipedia, in which DrawSquare() calls DrawLine(),

(Note that this diagram has high addresses at the bottom and low addresses at the top.)
Could anyone explain me what `ebp` and `esp` are in this context?
From what I see, I'd say the stack pointer points always to the top of the stack, and the base pointer to the beginning of the the current function? Or what?
---
edit: I mean this in the context of windows programs
`eip`
I have the following code from MSVC++:
```
var_C= dword ptr -0Ch
var_8= dword ptr -8
var_4= dword ptr -4
hInstance= dword ptr 8
hPrevInstance= dword ptr 0Ch
lpCmdLine= dword ptr 10h
nShowCmd= dword ptr 14h
```
All of them seem to be dwords, thus taking 4 bytes each. So I can see there is a gap from hInstance to var_4 of 4 bytes. What are they? I assume it is the return address, as can be seen in wikipedia's picture?
---
(editor's note: removed a long quote from Michael's answer, which doesn't belong in the question, but a followup question was edited in):
This is because the flow of the function call is:
```
* Push parameters (hInstance, etc.)
* Call function, which pushes return address
* Push ebp
* Allocate space for locals
```
| What is exactly the base pointer and stack pointer? To what do they point? | CC BY-SA 3.0 | 0 | 2009-09-08T18:37:01.920 | 2023-02-18T20:35:17.323 | 2021-02-20T23:35:00.643 | 224,132 | 130,758 | [
"c",
"assembly",
"x86",
"stack-frame",
"stack-pointer"
] |
1,396,545 | 1 | null | null | 0 | 482 |
I'm going to start studying/coding at the local university's library. Since I'm not a student, I won't be able to utilize their wireless internet access. Since StackOverflow is such a great resource, I want to be able to take it with me, so I'm building a small desktop application to load/search/display the most recent data dumps.
I want to display code blocks in the same sort of rectangular block as this site does, so I played with the RichTextBox control to try to create this effect. Unfortunately, the RichTextBox.SelectedBackColor property only colors the actual text, when what I want is a rectangle reaching to the outer limits of the selection.
This is what I am able to produce with the RichTextBox:

This is what I would like to create:

- -
| Rectangular BackColor of selection in RichTextBox | CC BY-SA 2.5 | null | 2009-09-08T21:57:59.087 | 2010-05-02T20:00:15.723 | 2009-09-08T23:59:11.757 | 1,588 | 1,588 | [
"c#",
"controls",
"richtextbox",
"backcolor"
] |
1,398,429 | 1 | 1,398,972 | null | 0 | 2,204 | Is it possible to call a method that is an attribute?
I mean, I have this input (this is created dynamically using jQuery as well when retrieving a list of companies using .get() ):
```
<input type="checkbox" onclick="javascript:onWorksiteChecked(this,'Virtus Västerås AB, STOCKHOLM','1:201334661','5566109426');" value="1:201334661"/>
```
I have a Select All method that will, as the name suggest Select All this and it's performed as
```
$("#ulworksites li input:checkbox").each(function() {
if ($(this).attr('disabled') == false) {
$(this).attr('checked', $("#ckbSelectAll").attr('checked'));
// Fire onWorksiteChecked method here
// > as suggested by August Lilleaas in his answer
$(this).click(); // <-- when this executes I still have the input box to be unchecked, the line above is not perform
}
});
```
in the onclick attribute I get the javascript that I need to run for each input (to add that into a list and add the company to be imported, but how can I run it?
```
$(this).attr('checked');
```

how can I execute that function?
as an add-on, this image shows the list

- -
The click event fires, but when it fires I still have that input box unchecked (witch will not execute the code right)
| Call a function that is an attribute | CC BY-SA 3.0 | null | 2009-09-09T08:58:13.620 | 2015-08-15T12:41:25.477 | 2015-08-15T12:41:25.477 | 28,004 | 28,004 | [
"jquery",
"function"
] |
1,399,814 | 1 | 1,434,279 | null | 3 | 1,203 | I find the regular expression toolkit tool in Komodo 4.1 pretty handy. Trouble is you have to dish out $300 for Komodo to use it. I'd love the same functionality in a stand alone tool... any suggestions?

| Is there a free, preferrably open-source, stand-alone clone of Activestate's Komodo Rx Toolkit? | CC BY-SA 2.5 | null | 2009-09-09T13:52:37.227 | 2019-04-23T01:48:22.300 | 2015-01-01T00:19:37.653 | 1,505,120 | 26,819 | [
"regex",
"open-source",
"komodo"
] |
1,400,783 | 1 | null | null | 11 | 8,437 | I am trying to print in a C# .NET 3.5 app to a network printer and getting this exception:
> The operation completed successfully
What is causing it, and how can it be solved?
```
System.ComponentModel.Win32Exception: The operation completed successfully
at System.Drawing.Printing.PrinterSettings.GetHdevmodeInternal()
at System.Drawing.Printing.PrinterSettings.GetHdevmode(PageSettings pageSettings)
at System.Drawing.Printing.PrintController.OnStartPrint(PrintDocument document, PrintEventArgs e)
at System.Windows.Forms.PrintControllerWithStatusDialog.OnStartPrint(PrintDocument document, PrintEventArgs e)
at System.Drawing.Printing.PrintController.Print(PrintDocument document)
at System.Drawing.Printing.PrintDocument.Print()
```
- - - - -
To narrow the issue down, I've created a simple console app. Running as a normal user, the app prints. When Run As the service account, it errs .

The to my problem was to uninstall the driver that is causing the issue, and install an older driver.
| PrintDocument.Print results in Win32Exception The operation completed successfully | CC BY-SA 3.0 | null | 2009-09-09T16:46:48.673 | 2017-02-07T18:12:35.433 | 2014-07-18T15:22:15.317 | 23,199 | 99,442 | [
"c#",
"printing"
] |
1,400,829 | 1 | 1,400,879 | null | 23 | 21,744 | As sou can see from the screenshot most of the time spent is waiting for a server response (thats the purple coloured area).
What exactly is that server response time? Is the server too slow? Is my connection too slow? Can't the server process much information at once (I've got many files there, I know I'll combine them to fewer)? What do I have to do to minimise that waiting time?
PS. all the data are on the same server but I'm using subdomains so that the browser can process more files at once.

| What exactly is the 'Waiting for response' msg on Firebug's Net tab? | CC BY-SA 2.5 | 0 | 2009-09-09T16:54:34.773 | 2010-12-07T15:12:43.507 | null | null | 67,903 | [
"firebug",
"server-response"
] |
1,400,637 | 1 | 1,400,656 | null | 2 | 2,741 | My html of form is like this
```
<form id="form" method="post" action="func.php">
<table> <!--- DATA HERE --> </table>
<input type="submit" value="Submit" id="set" />
</form>
```
I want to use javascript to post the data, my javascript is like this
```
$('#set').live('click', function () {
$('.setForm').attr('action', '');
var setData = $('.setForm').serialize();
$.ajax({
type: 'post',
url: 'func.php',
data: setData,
success: function(response) {
$('#status').fadeIn('500').text('Loading..');
}
});
});
```
but i am getting an error i dont know what error it is, (It is not visible in console) i have Break on errors enabled in firebug which returns
```
(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1)}}}}}return ab};F.matches=function(T,U){return F(T,null,null,U)};F.find=function(aa,T,ab){var Z,X;if(!aa){return[]}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break}}}}if(!Z){Z=T.getElementsByTagName("*")}return{set:Z,expr:aa}};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[]}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true}else{if(Y===true){continue}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true}else{aa[X]=false}}else{if(ae){ai.push(af);T=true}}}}}if(ah!==g){if(!ag){aa=ai}ad=ad.replace(I.match[ab],"");if(!T){return[]}break}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad}else{break}}V=ad}return aa};var I=F.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(T){return T.getAttribute("href")}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase()}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T}}if(Y){F.filter(T,aa,true)}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U}}if(X){F.filter(U,Z,true)}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("parentNode",U,V,W,X,Y)},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("previousSibling",U,V,W,X,Y)}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[]}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W])}}return U.length===0?null:U}},TAG:function(T,U){return U.getElementsByTagName(T[1])}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return U<T[3]-0},gt:function(V,U,T){return U>T[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false}}return true}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false}}if(Z=="first"){return true}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X}}ab.sizcache=Y}var aa=T.nodeIndex-ac;if(V==0){return aa==0}else{return(aa%V==0&&aa/V>=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V])}}else{for(var V=0;X[V];V++){U.push(X[V])}}}return U}}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true}return V}}else{if("sourceIndex" in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true}return V}}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true}return X}}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W}if(T.nodeName===Z){X=T;break}T=T[U]}ad[W]=X}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W}if(typeof Z!=="string"){if(T===Z){X=true;break}}else{if(F.filter(Z,[T]).length>0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W)}return F.filter(X,W)};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++])}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false}))},hover:function(E,F){return this.mouseenter(E).mouseleave(F)},ready:function(E){B();if(o.isReady){E.call(document,o)}else{o.readyList.push(E)}return this},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J})}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest")});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false)}});return G}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".")}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o)});o.readyList=null}o(document).triggerHandler("ready")}}});var x=false;function B(){if(x){return}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready()}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return}try{document.documentElement.doScroll("left")}catch(E){setTimeout(arguments.callee,0);return}o.ready()})()}}}o.event.add(l,"load",o.ready)}o.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E)}});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem)}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.innerHTML=' <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"))}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J]}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee)});K.cloneNode(true).fireEvent("onclick")}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none"})})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G)}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.d
```
| Stop reload for ajax submitted form | CC BY-SA 2.5 | null | 2009-09-09T16:12:46.057 | 2013-08-05T16:07:54.400 | 2009-09-09T16:16:59.430 | 8,590 | 107,129 | [
"javascript",
"jquery"
] |
1,401,311 | 1 | null | null | 3 | 2,528 | If you go to the following link you'll see a really cool Javascript simulation of a cube that rotates based on your mouse position.
Simulation: [here.](http://maettig.com/code/javascript/3d_dots.html)

If you view the source of the cube rotating script you'll see:
```
<script type="text/javascript">
/* I wrote this script in a few minutes just for fun. It's not made to win any
competition. */
var dimension = 1, a = 0, b = 0, i = 27;
while (i--) document.write('<b id="l' + i + '">+</b>');
function f()
{
i = 0;
for (x = -dimension; x <= dimension; x += dimension)
for (y = -dimension; y <= dimension; y += dimension)
for (z = -dimension; z <= dimension; z += dimension)
{
u = x;
v = y;
w = z;
u2 = u * Math.cos(a) - v * Math.sin(a);
v2 = u * Math.sin(a) + v * Math.cos(a);
w2 = w;
u = u2; v = v2; w = w2;
u2 = u;
v2 = v * Math.cos(b) - w * Math.sin(b);
w2 = v * Math.sin(b) + w * Math.cos(b);
u = u2; v = v2; w = w2;
var c = Math.round((w + 2) * 70);
if (c < 0) c = 0;
if (c > 255) c = 255;
s = document.getElementById('l' + i).style;
s.left = 300 + u * (w + 2) * 50;
s.top = 300 + v * (w + 2) * 50;
s.color = 'rgb(' + c + ', ' + c + ', 0)';
s.fontSize = (w + 2) * 16 + 'px';
/* The Digg users missed depth sort, so here it is. */
s.zIndex = Math.round((w + 2) * 10);
i++;
}
}
/* Using a timer instead of the onmousemove handler wastes CPU time but makes
the animation much smoother. */
setInterval('f()', 17);
</script>
```
I've looked over it several times, and I still don't understand how the points for the cube are calculated. Is this using "Euler Rotations"? One of the big problems I've had is the use of single letter variable names that mean nothing to me.
Would anyone with the requisite math knowledge help explain how the math works behind rotating the cube in this simulation? I'd like to make similar things but when it comes to calculating the points positions, I'm a little lost.
| Could someone explain the math behind how this cube-rotating script works? | CC BY-SA 2.5 | 0 | 2009-09-09T18:31:56.777 | 2009-09-10T01:36:09.617 | null | null | 64,878 | [
"language-agnostic",
"math",
"rotation",
"cube"
] |
1,402,638 | 1 | 1,419,154 | null | 3 | 2,389 | This is only remotely development related, but basically I wanted to install the MS Azure SDK which relies on an installed IIS 7, ASP.Net but also a working installation of the 'WCF HTTP Activation' component.
Now following the [article on MSDN](http://msdn.microsoft.com/en-us/library/dd179419.aspx), I always get the following error:

Does anyone have an idea what I'm missing or what I should do? The error message is not very self-explaining and I am a tad lost here.. Software version wise Vista is SP2, Visual Studio 2008 SP1 & .Net 3.5 SP1 is also installed..
Any ideas / suggestions?
| Installing 'WCF HTTP Activation' on Windows Vista fails? | CC BY-SA 2.5 | 0 | 2009-09-09T23:16:54.900 | 2010-01-06T17:39:18.110 | 2017-02-08T14:15:10.600 | -1 | 2,591 | [
".net",
"wcf",
"windows-vista"
] |
1,407,156 | 1 | null | null | 1 | 98 | Sorry for bad english. We use Sql Server Reporting service (SSRS) and there is a problem with the header

It seems that this web section is unable to fetch the required CSS.
| SSRS Header not formatted | CC BY-SA 3.0 | null | 2009-09-10T19:12:14.000 | 2015-05-12T16:55:11.577 | 2015-05-12T16:55:11.577 | 4,840,746 | 160,764 | [
"sql-server",
"reporting-services"
] |
1,408,104 | 1 | 1,408,147 | null | 1 | 461 | Imagine you are drawing a map of county borders. You are given a set of polygons, one for each boundary, and you draw each polygon.
In places where two counties share a border you just end up drawing the border twice. In the absence of partial transparency effects, and with a solid pen, this is no problem.
But, on maps, borders of this kind are customarily shown by dash-dotted lines. In this case, situations like the one depicted below can happen:

Notice how the dash pattern, which normally is dash-dot-dot, gets screwed up where the two areas share a border. In this case, it happened to become a longdash-dot pattern, but in general it could do anything from coincidentally looking normal to creating a solid line.
How does/should map rendering software prevent artifacts of this kind from occuring?
| Drawing dashed borders | CC BY-SA 3.0 | null | 2009-09-10T22:42:57.377 | 2015-06-20T18:40:43.457 | 2015-06-20T18:26:23.697 | 1,159,643 | 11,173 | [
"mapping",
"geometry",
"gdi+",
"rendering"
] |
1,409,097 | 1 | 1,609,098 | null | 6 | 1,406 | I'm trying to enable PerlCritic support in Komodo.
The official word from ActiveState, the makers of Komodo IDE 5.1 (Win 32) is:
"To enable PerlCritic support, please install the 'Perl-Critic' and 'criticism' modules."
Well, installing Perl-Critic was a piece of cake:
```
ppm install Bundle-Perl-Critic
```
However, I've search every repository in PPM4, (trouchelle and the usual suspects) and they don't seem to have the module called 'criticism'. I've installed lots of modules using CPAN and PPM, but this module proves to be the most elusive so far. Am I missing something here?
Has anyone got any luck enabling PerlCritic support in Komodo 5.1 on Windows? Hope to hear from you. The feature works perfectly in MacOS and Linux though...hmmm.

| How do I enable PerlCritic support in Komodo IDE 5.1 on Windows? | CC BY-SA 3.0 | null | 2009-09-11T05:14:45.627 | 2015-06-20T18:18:16.847 | 2015-06-20T18:18:16.847 | 1,159,643 | 22,556 | [
"perl",
"ide",
"winapi",
"komodo",
"perl-critic"
] |
1,414,224 | 1 | 1,492,680 | null | 0 | 2,444 | I've got an iPhone app that I'm working on that uses Push Notifications.
In the payload I'm specifying a few things:
- - -
The notification is getting to my iPhone just fine. It shows a message without buttons. So body and action-loc-key are working just fine. But, it's not playing any sound.
However, there are a couple of things I've noticed during troubleshooting:
1. if I implement application:didReceiveRemoteNotification, everything looks fine. The Dictionary argument contains a key for sound, whose value is indeed the name of the file I want to play.
2. The sound file itself "works" because if I play it inside of the app (using the SoundEffect class from the BubbleLevel sample) it works just fine.
Despite these two facts, the sound effect simply isn't playing.
In the settings app, everything looks right - Push is turned on for my app, and I have both "sounds" and "alerts" set to on as well.
The iPhone documentation center suggests using Quicktime to look at the format of the file. This is what it looks like.

Finally, if I look at the info for this file in XCode, it says the file type is simply the default, "file." From what I could tell there is no audio-caf option in the list. I tried audio-WAV (the sound engineer told me the original files were WAVs) but that didn't change anything.
In addition, the code:
```
- (void)applicationDidFinishLaunching:(UIApplication *)application {
// view controller set up stuff
// ...
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeSound)];
```
}
| Push Notifications - sound not working? | CC BY-SA 2.5 | null | 2009-09-12T03:50:30.063 | 2009-09-29T13:46:30.533 | 2017-02-08T14:15:14.650 | -1 | 543 | [
"iphone",
"audio",
"push-notification"
] |
1,415,807 | 1 | 1,415,813 | null | 0 | 200 | I was going over AdventureWorks2008 database and wanted to create a new table that associates a product to a sales person.
There is a many-to-many relationship between those tables.

The question is,
Of two schemas, `Sales` and `Production`, does `ProductSalesPerson` table belong to?
`ProductSalesPerson` doesn't neccessarily belong to either schema.
Should I create a new schema for this associative table?
| Which schema does this associative table belong to? | CC BY-SA 2.5 | null | 2009-09-12T18:34:27.113 | 2009-09-12T19:59:55.590 | 2017-02-08T14:15:15.193 | -1 | 4,035 | [
"sql",
"sql-server",
"database",
"database-design",
"associative-table"
] |
1,415,911 | 1 | 1,415,981 | null | -1 | 528 | While dividing my C# application in layers, I have solved the problem of circular dependency among layers in the following way:
```
using System;
using System.Collections.Generic;
using System.Text;
using SolvingCircularDependency.Common;
using SolvingCircularDependency.DA;
namespace SolvingCircularDependency.BO
{
public class MyClass : IPersistent
{
private string _message;
public string Message
{
get { return _message; }
set { _message = value; }
}
public bool Save()
{
return MyClassDA.Save(this);
}
}
}
using System;
using System.Collections.Generic;
using System.Text;
namespace SolvingCircularDependency.Common
{
public interface IPersistent
{
bool Save();
string Message { get;}
}
}
using System;
using System.Collections.Generic;
using System.Text;
using SolvingCircularDependency.Common;
namespace SolvingCircularDependency.DA
{
public class MyClassDA
{
public static bool Save(IPersistent obj)
{
Console.WriteLine(obj.Message);
return true;
}
}
}
using System;
using System.Collections.Generic;
using System.Text;
using SolvingCircularDependency.BO;
namespace SolvingCircularDependency.UI
{
class Program
{
static void Main(string[] args)
{
MyClass myobj = new MyClass();
myobj.Message = "Goodbye Circular Dependency!";
myobj.Save();
Console.ReadLine();
}
}
}
```

Please take a look at the class MyClassDA in the DA layer and the assembly itself.
How can a MyDA.Get() method return objects of type MyClass when the Data Access layer doesn't know about the MyClass type.
If this design is not efficient, How can I change/modify it?
| Unable to Get data from DA layer. What to do? | CC BY-SA 2.5 | null | 2009-09-12T19:27:32.427 | 2009-09-24T03:02:22.723 | 2017-02-08T14:15:15.610 | -1 | 159,072 | [
"c#",
".net",
"layered"
] |
1,417,782 | 1 | 3,091,433 | null | 29 | 18,628 | I'm running XCode 3.2 on Snow Leopard and I'm trying to run the Zombies instrument against my app but the selection is grayed out and I don't know why. I know about the NSZombieEnabled environment variable. I have that set to YES on my application. I'm not sure if this matters, but, the app is an app that I started developing on Leopard with the previous version of XCode. Here is a screenshot of what my menu looks like:

| How to run iPhone program with Zombies instrument? | CC BY-SA 3.0 | 0 | 2009-09-13T13:46:18.650 | 2015-06-20T18:20:35.210 | 2015-06-20T18:20:35.210 | 1,159,643 | 148,208 | [
"iphone",
"objective-c",
"xcode",
"instruments"
] |
1,418,006 | 1 | 1,418,031 | null | 0 | 1,487 | In ruby on rails how do I find the top 3 records of my table called notices ordered by a particular field, in my case I want to order by the position field which is an integer.
So my notices table looks like this:

Any help would be greatly appreciated.
| Top 3 records ordered by a field in rails | CC BY-SA 3.0 | null | 2009-09-13T15:33:22.783 | 2016-11-29T09:06:42.947 | 2017-02-08T14:15:16.043 | -1 | 165,327 | [
"ruby-on-rails",
"field"
] |
1,420,638 | 1 | 1,420,711 | null | 1 | 301 | I have a problem committing a bunch of .jar files with eclipse.
Maybe eclipse thinks they are text files and not binaries?
If that's the problem, how do I check that? And how do I change it?
If it is not, then what is it?

| "An Internal Error Ocurred during SVN commit: length 16416 out of range, must be between 0 and 1384" | CC BY-SA 3.0 | null | 2009-09-14T09:57:48.670 | 2015-06-20T18:21:47.520 | 2015-06-20T18:21:47.520 | 1,159,643 | 63,051 | [
"eclipse",
"svn",
"version-control",
"subclipse"
] |
1,422,343 | 1 | 1,423,894 | null | 14 | 5,235 | I'm trying to wrap my mind around the MVP pattern used in a C#/Winforms app. So I created a simple "notepad" like application to try to work out all the details. My goal is to create something that does the classic windows behaviors of open, save, new as well as reflecting the name of the saved file in the title bar. Also, when there are unsaved changes, the title bar should include an *.
So I created a view & a presenter that manage the application's persistence state. One improvement I've considered is breaking out the text handling code so the view/presenter is truly a single-purpose entity.
Here is a screen shot for reference ...

I'm including all of the relevant files below. I'm interested in feedback about whether I've done it the right way or if there are ways to improve.
NoteModel.cs:
```
public class NoteModel : INotifyPropertyChanged
{
public string Filename { get; set; }
public bool IsDirty { get; set; }
string _sText;
public readonly string DefaultName = "Untitled.txt";
public string TheText
{
get { return _sText; }
set
{
_sText = value;
PropertyHasChanged("TheText");
}
}
public NoteModel()
{
Filename = DefaultName;
}
public void Save(string sFilename)
{
FileInfo fi = new FileInfo(sFilename);
TextWriter tw = new StreamWriter(fi.FullName);
tw.Write(TheText);
tw.Close();
Filename = fi.FullName;
IsDirty = false;
}
public void Open(string sFilename)
{
FileInfo fi = new FileInfo(sFilename);
TextReader tr = new StreamReader(fi.FullName);
TheText = tr.ReadToEnd();
tr.Close();
Filename = fi.FullName;
IsDirty = false;
}
private void PropertyHasChanged(string sPropName)
{
IsDirty = true;
PropertyChanged.Invoke(this, new PropertyChangedEventArgs(sPropName));
}
#region INotifyPropertyChanged Members
public event PropertyChangedEventHandler PropertyChanged;
#endregion
}
```
Form2.cs:
```
public partial class Form2 : Form, IPersistenceStateView
{
PersistenceStatePresenter _peristencePresenter;
public Form2()
{
InitializeComponent();
}
#region IPersistenceStateView Members
public string TheText
{
get { return this.textBox1.Text; }
set { textBox1.Text = value; }
}
public void UpdateFormTitle(string sTitle)
{
this.Text = sTitle;
}
public string AskUserForSaveFilename()
{
SaveFileDialog dlg = new SaveFileDialog();
DialogResult result = dlg.ShowDialog();
if (result == DialogResult.Cancel)
return null;
else
return dlg.FileName;
}
public string AskUserForOpenFilename()
{
OpenFileDialog dlg = new OpenFileDialog();
DialogResult result = dlg.ShowDialog();
if (result == DialogResult.Cancel)
return null;
else
return dlg.FileName;
}
public bool AskUserOkDiscardChanges()
{
DialogResult result = MessageBox.Show("You have unsaved changes. Do you want to continue without saving your changes?", "Disregard changes?", MessageBoxButtons.YesNo);
if (result == DialogResult.Yes)
return true;
else
return false;
}
public void NotifyUser(string sMessage)
{
MessageBox.Show(sMessage);
}
public void CloseView()
{
this.Dispose();
}
public void ClearView()
{
this.textBox1.Text = String.Empty;
}
#endregion
private void btnSave_Click(object sender, EventArgs e)
{
_peristencePresenter.Save();
}
private void btnOpen_Click(object sender, EventArgs e)
{
_peristencePresenter.Open();
}
private void btnNew_Click(object sender, EventArgs e)
{
_peristencePresenter.CleanSlate();
}
private void Form2_Load(object sender, EventArgs e)
{
_peristencePresenter = new PersistenceStatePresenter(this);
}
private void Form2_FormClosing(object sender, FormClosingEventArgs e)
{
_peristencePresenter.Close();
e.Cancel = true; // let the presenter handle the decision
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
_peristencePresenter.TextModified();
}
}
```
IPersistenceStateView.cs
```
public interface IPersistenceStateView
{
string TheText { get; set; }
void UpdateFormTitle(string sTitle);
string AskUserForSaveFilename();
string AskUserForOpenFilename();
bool AskUserOkDiscardChanges();
void NotifyUser(string sMessage);
void CloseView();
void ClearView();
}
```
PersistenceStatePresenter.cs
```
public class PersistenceStatePresenter
{
IPersistenceStateView _view;
NoteModel _model;
public PersistenceStatePresenter(IPersistenceStateView view)
{
_view = view;
InitializeModel();
InitializeView();
}
private void InitializeModel()
{
_model = new NoteModel(); // could also be passed in as an argument.
_model.PropertyChanged += new PropertyChangedEventHandler(_model_PropertyChanged);
}
private void InitializeView()
{
UpdateFormTitle();
}
private void _model_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
{
if (e.PropertyName == "TheText")
_view.TheText = _model.TheText;
UpdateFormTitle();
}
private void UpdateFormTitle()
{
string sTitle = _model.Filename;
if (_model.IsDirty)
sTitle += "*";
_view.UpdateFormTitle(sTitle);
}
public void Save()
{
string sFilename;
if (_model.Filename == _model.DefaultName || _model.Filename == null)
{
sFilename = _view.AskUserForSaveFilename();
if (sFilename == null)
return; // user canceled the save request.
}
else
sFilename = _model.Filename;
try
{
_model.Save(sFilename);
}
catch (Exception ex)
{
_view.NotifyUser("Could not save your file.");
}
UpdateFormTitle();
}
public void TextModified()
{
_model.TheText = _view.TheText;
}
public void Open()
{
CleanSlate();
string sFilename = _view.AskUserForOpenFilename();
if (sFilename == null)
return;
_model.Open(sFilename);
_model.IsDirty = false;
UpdateFormTitle();
}
public void Close()
{
bool bCanClose = true;
if (_model.IsDirty)
bCanClose = _view.AskUserOkDiscardChanges();
if (bCanClose)
{
_view.CloseView();
}
}
public void CleanSlate()
{
bool bCanClear = true;
if (_model.IsDirty)
bCanClear = _view.AskUserOkDiscardChanges();
if (bCanClear)
{
_view.ClearView();
InitializeModel();
InitializeView();
}
}
}
```
| Critique my simple MVP Winforms app | CC BY-SA 3.0 | 0 | 2009-09-14T15:37:50.150 | 2015-06-20T18:19:25.963 | 2015-06-20T18:19:25.963 | 1,159,643 | 5,208 | [
"c#",
"winforms",
"model-view-controller",
"design-patterns",
"mvp"
] |
1,422,602 | 1 | 1,422,875 | null | 0 | 2,206 | I have written a function that positions a tooltip just above a textbox.
The function takes two arguments:
- - The ID of the textbox above which the tooltip will appear.- - - The ID of the tooltip which will appear above the textbox.-
```
function positionTooltip(textBoxId, toolTipId){
var hoverElementOffsetLeft = $(textBoxId).offset().left;
var hoverElementOffsetWidth = $(textBoxId)[0].offsetWidth;
var toolTipElementOffsetLeft = $(toolTipId).offset().left;
var toolTipElementOffsetWidth = $(toolTipId)[0].offsetWidth;
// calcluate the x coordinate of the center of the hover element.
var hoverElementCenterX =
hoverElementOffsetLeft + (hoverElementOffsetWidth / 2);
// calculate half the width of the toolTipElement
var toolTipElementHalfWidth = toolTipElementOffsetWidth / 2;
var toolTipElementLeft = hoverElementCenterX - toolTipElementHalfWidth;
$(toolTipId)[0].style.left = toolTipElementLeft + "px";
var toolTipElementHeight = $(toolTipId)[0].offsetHeight;
var hoverElementOffsetTop = $(textBoxId).offset().top;
var toolTipYCoord = hoverElementOffsetTop - toolTipElementHeight;
toolTipYCoord = toolTipYCoord - 10;
$(toolTipId)[0].style.top = toolTipYCoord + "px";
$(toolTipId).hide();
$(textBoxId).hover(
function(){ $(toolTipId + ':hidden').fadeIn(); },
function(){ $(toolTipId + ':visible').fadeOut(); }
);
$(textBoxId).focus (
function(){ $(toolTipId + ':hidden').fadeIn(); }
);
$(textBoxId).blur (
function(){ $(toolTipId+ ':visible').fadeOut(); }
);
}
```
---
The function works fine upon initial page load:

---
However, after the user resizes the window the tooltips move to locations that no longer display above their associated textbox.

---
I've tried writing some code to fix the problem by calling the positionTooltip() function when the window is resized but for some reason the tooltips do not get repositioned as they did when the page loaded:
```
var _resize_timer = null;
$(window).resize(function() {
if (_resize_timer) {clearTimeout(_resize_timer);}
_resize_timer = setTimeout(function(){
positionTooltip('#textBoxA', ('#toolTipA'));
}, 1000);
});
```
I'm really at a loss here as to why it doesn't reposition the tooltip correctly as it did when the page was initially loaded after a resize.
| Re-Centering JQuery Tooltips when resizing the window | CC BY-SA 2.5 | 0 | 2009-09-14T16:27:07.510 | 2010-06-07T23:33:35.437 | 2017-02-08T14:15:16.743 | -1 | 18,149 | [
"javascript",
"jquery",
"textbox",
"tooltip"
] |
1,424,189 | 1 | 1,424,274 | null | 6 | 2,933 | I'm using ggplot2 to make some bullseye charts in R. They look delightful, and everyone is very pleased - except that they'd like to have the values of the bullseye layers plotted on the chart. I'd be happy just to put them in the lower-right corner of the plot, or even in the plot margins, but I'm having some difficulty doing this.
Here's the example data again:
```
critters <- structure(list(Zoo = "Omaha", Animals = 50, Bears = 10, PolarBears = 3), .Names = c("Zoo",
"Animals", "Bears", "PolarBears"), row.names = c(NA, -1L), class = "data.frame")
```
And how to plot it:
```
d <- data.frame(animal=factor(c(rep("Animals", critters$Animals),
rep("Bears", critters$Bears), rep("PolarBears", critters$PolarBears)),
levels = c("PolarBears", "Bears", "Animals"), ordered= TRUE))
grr <- ggplot(d, aes(x = factor(1), fill = factor(animal))) + geom_bar() +
coord_polar() + labs(x = NULL, fill = NULL) +
scale_fill_manual(values = c("firebrick2", "yellow2", "green3")) +
opts(title = paste("Animals, Bears and Polar Bears:\nOmaha Zoo", sep=""))
```
I'd like to add a list to, say, the lower right corner of this plot saying,
```
Animals: 50
Bears: 10
PolarBears: 3
```
But I can't figure out how. My efforts so far with `annotate()` have been thwarted, in part by the polar coordinates. If I have to add the numbers to the title, so be it - but I always hold out hope for a more elegant solution.
EDIT:
An important note for those who come after: the bullseye is a bar plot mapped to polar coordinates. The ggplot2 default for bar plots is, sensibly, to stack them. However, that means that the rings of your bullseye will also be stacked (e.g. the radius in my example equals the sum of all three groups, 63, instead of the size of the largest group, 50). I think that's what most people expect from a bullseye plot, especially when the groups are nested. Using `geom_bar(position = position_identity())` will turn the stacked rings into layered circles.
EDIT 2: Example from [ggplot2](http://docs.ggplot2.org/current/coord_polar.html) docs:

| More bullseye plotting in R | CC BY-SA 4.0 | 0 | 2009-09-14T22:18:53.920 | 2021-12-09T08:29:20.287 | 2021-12-09T08:29:20.287 | 12,892,553 | 143,319 | [
"r",
"ggplot2",
"plot"
] |
1,424,481 | 1 | 1,424,497 | null | 8 | 273 | In the form designer, I sometimes need to see the of a property, so I know what kind of input it expects. Unfortunately the Object Inspector doesn't seem to show it.
---

This component clearly wants me to link a "Grid", but I have no idea what type of grid I need. TDbGrid? TDrawGrid? TColorGrid? TGridPanel?
Of course I can see this by looking into the source of the component, but does anyone know a faster way?
| How can I see the type of a property in the Object Inspector? | CC BY-SA 2.5 | 0 | 2009-09-15T00:01:47.130 | 2009-09-15T00:08:26.930 | 2017-02-08T14:15:18.107 | -1 | 38,813 | [
"delphi"
] |
1,427,871 | 1 | 1,571,095 | null | 16 | 14,700 | Whilst debugging in Xcode_3.1.2 I am pretty sure I could see the contents of my NSString arrays. However after upgrading to 3.2 I only see the following ...

I know I can print the object in (gdb) using "po planetArray" or simply click in the debugger and "print description to console" I am just curious, as I am sure it worked prior to upgrading. Anyone know anything about this?
cheers gary
edit: data formatters is on and it shows what you see above ...
| Xcode 3.2 Debug: Seeing whats in an array? | CC BY-SA 2.5 | 0 | 2009-09-15T15:26:49.510 | 2009-10-15T08:43:03.327 | 2017-02-08T14:15:19.130 | -1 | 164,216 | [
"xcode",
"debugging"
] |
1,428,498 | 1 | 1,428,841 | null | 5 | 2,488 | I use the SVN plugin, Subclipse, for the Eclipse IDE. I recently noticed one of my directories get tagged with the icon seen below. After reviewing the Subclipse label decorators, I didn't see this one. Does anyone know what it represents?

| Unknown icon when using Subclipse 1.6.5 | CC BY-SA 3.0 | 0 | 2009-09-15T17:20:44.913 | 2016-03-21T10:58:46.627 | 2013-07-22T06:27:38.500 | 6,309 | 10,040 | [
"eclipse",
"svn",
"subclipse"
] |
1,429,810 | 1 | 1,504,130 | null | 0 | 1,531 | I have a setup where I am using amcharts that is feed data via appendData from an AJAX call. The call goes to a URL which simply renders the Time.now as the X and 8 lines using the function 2cos(x/2)+2ln (ln is the line number). AJAX request is made every 1 second.
The backend is always correct and always returns a single point, unless it is a duplicate X in which it throws an error. The error causes not to complete and therefore not call appendData.
Anybody have any idea what is going wrong with amcharts? It seems to be an issue only with appendData (which I need to simulate a sliding window).
The Javascript code is below. It assumes that the page creates a line chart with 8 points graphs and passes it to setup_chart_loader. Netcordia.rapid_poller.updateChart is used to update the chart using the Ajax request
```
Ext.ns("Netcordia.rapid_poller");
Netcordia.rapid_poller.refresh_rate = 1; //seconds
Netcordia.rapid_poller.pause = false; //causes the AJAX to suspend
Netcordia.rapid_poller.chart = null;
Netcordia.rapid_poller.stop = false;
/* This function does everything that is required to get the chart data correct */
Netcordia.rapid_poller.setup_chart_loader = function(chart){
assert(Netcordia.rapid_poller.displaySizeInMinutes,"No display size");
assert(Netcordia.rapid_poller.delta_url, "Data URL is empty");
assert(Netcordia.rapid_poller.delta_params, "No Data params");
if(typeof(chart) !== 'object'){
chart = document.getElementById(chart);
}
Netcordia.rapid_poller.chart = chart;
// 5 seconds raw polling
var maxPoints = Netcordia.rapid_poller.displaySizeInMinutes * 60 / 5;
var count = 0;
var lastUpdate = '';
debug("max number of points: "+maxPoints);
debug('creating updateChart function');
Netcordia.rapid_poller.updateChart = function(){
debug("Sending Data request");
var params = {last: lastUpdate, max: 1}; //maxPoints};
//I have to do this otherwise amcharts get a lot of data and only renders
// one item, then the counts is off
if(lastUpdate === ''){params['max'] = maxPoints;}
if (Netcordia.rapid_poller.pause){
alert("pausing");
params['historical'] = 1;
params['max'] = maxPoints;
}
Ext.apply(params, Netcordia.rapid_poller.delta_params);
//this might need to be moved to within the Ajax request
// incase things start piling up
if(!Netcordia.rapid_poller.stop){
setTimeout(Netcordia.rapid_poller.updateChart,1000*Netcordia.rapid_poller.refresh_rate);
} else {
debug("skipping next poll");
return;
}
Ext.Ajax.request({
url: Netcordia.rapid_poller.delta_url,
baseParams: Netcordia.rapid_poller.delta_params,
params: params,
success: function(response){
//if(Netcordia.rapid_poller.pause){
// debug("Data stopped");
// return;
//}
var json = Ext.util.JSON.decode(response.responseText);
lastUpdate = json.lastUpdate;
if( json.count === 0 ){
debug("no data to append");
return;
}
debug("appending "+json.count);
var remove = (count + json.count) - maxPoints;
if(remove <= 0){ remove = 0; }
count += json.count;
if(count > maxPoints){ count = maxPoints; }
debug("removing "+remove);
debug("count: "+count);
if(Netcordia.rapid_poller.pause){
alert("Pausing for historical");
//append a zero point and delete the existing data
// amcharts can leak extra points onto the screen so deleting
// twice the number is
chart.appendData("00:00:00;0;0;0;0;0;0;0;0",(count*2).toString());
count = json.count;
remove = 1;
Netcordia.rapid_poller.stop = true;
}
chart.appendData(json.lines.toString(),remove.toString());
}
});
};
};
```
The rails code that returns the data is as follows:
```
def get_delta
max = 1
begin
current = Time.parse(params[:last])
rescue
current = Time.now
end
if params[:historical]
max = params[:max].to_i || 10
current = Time.at(current.to_i - (max/2))
end
logger.info(current.to_i)
logger.info(max)
n = current.to_i
m = n+max-1
data = (n..m).collect do |x|
logger.info "For Point: #{x}"
point = Math.cos(x/2)
data = [Time.at(x).strftime("%H:%M:%S")]
for i in (1..8)
data.push(2*point+(2*i));
end
data.join(";")
end
render :json => {count: data.size, lastUpdate: Time.now.strftime('%Y-%m-%d %H:%M:%S'), lines: data.join("\n")}
end
```

| Amcharts rendering data incorrectly | CC BY-SA 2.5 | null | 2009-09-15T21:48:15.950 | 2009-10-01T13:58:28.793 | 2017-02-08T14:15:19.807 | -1 | 141,463 | [
"ruby-on-rails",
"ajax",
"extjs",
"charts"
] |
1,430,404 | 1 | 6,003,007 | null | 3 | 1,968 | I made a grouped UITableView in iPhone OS 3.0 that looked like the left image. The result is the right image in OS 3.1.

The imageView is under the separators.
I've tried to put the content view in front. The separatorStyle propriety seems ignored when the tableView is in grouped style (to draw the separator myself). Changing the separator color gives strings results.
Thanks for your help!
Edit: This is the code with no change made :
```
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
cell.textLabel.font = [UIFont boldSystemFontOfSize:18.0];
}
cell.textLabel.text = [[metro.arretDirection objectAtIndex:indexPath.row] name];
NSString* name;
if (indexPath.row == 0) {
name = @"Begining";
}
else if (indexPath.row + 1 == [metro.arretDirection count]) {
name = @"End";
}
else {
if ([[[metro.arretDirection objectAtIndex:indexPath.row] lines] count]== 1) name = @"Little";
else name = @"Big";
}
UIImage* metroImage = [[UIImage alloc] initWithContentsOfFile:[[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:[NSString stringWithFormat:@"%i%@.png", metro.metroNumber, name]]];
cell.imageView.image = metroImage;
[metroImage release];
return cell;
```
| Hiding UITableView separator behind the contentView | CC BY-SA 2.5 | 0 | 2009-09-16T01:05:01.413 | 2011-05-14T16:00:40.680 | 2017-02-08T14:15:20.157 | -1 | 111,783 | [
"iphone",
"cocoa-touch",
"uitableview",
"separator"
] |
1,434,306 | 1 | 1,682,317 | null | 0 | 2,218 | I have a customer who is currently using Excel to do their staff planning. They have many workbooks for different projects and each project contains 1 or more sheets containing the actual staffing data:

The customer wants to consolidate all of the data from all of these many sheets and workbooks into a single pivot table. A 'consolidated' pivot is not an option because they want to be able to mess with all of the (non-date) fields in the source data. They don't want to be limited to only 'Row' and 'Column'. My current solution is a macro that consolidates all of the data within a workbook through a fairly convoluted copy and rotate process. I copy a row of 'meta data' (everything that's not a date) first, then I copy / transpose the dates for the meta data row into a single 'Date' column. Then I extend the meta data so that the same data is defined for each date.
I have a separate workbook that grabs the consolidated sheet from each workbook and builds a single pivot table from them.
It works, but it's pretty inefficient, since the total number of tasks / assignments number in the many thousands. In my dreams, I would love to eliminate the consolidation step completely, but I don't see that happening. A more efficient consolidation approach is about the best I'm hoping for at this point.
If anyone has some 'outside the box' ideas, I'm all ears!
The solutions needs to work on windows XP, Office 2002 and 2003.
| How to build a consolidated pivot table when the source data contains column headings that are dates? | CC BY-SA 2.5 | null | 2009-09-16T17:14:42.173 | 2009-11-06T02:01:33.173 | 2017-02-08T14:15:22.187 | -1 | 167,483 | [
"excel",
"pivot",
"consolidation"
] |
1,434,763 | 1 | 1,434,789 | null | 0 | 680 | I wrote a simple file upload application using ASP.NET MVC. I tested it successfully on my development machine, but when I attempt to use it on my live server any action I try results in a Page Not Found page.
With my hosting provider ([reliablesite.net](http://www.reliablesite.net/v3/index.asp)), I needed to specifically upload the `System.Web.Mvc` dll to my `bin` folder, so it is possible I am missing an assembly or something...but I should be getting a hard error like this one if that is the case:

[link to live site](http://anders-leet.com), try clicking the about or the upload etc to see what I am talking about.
Thanks!
| Page Not Found error in ASP.NET MVC application on live server | CC BY-SA 2.5 | null | 2009-09-16T18:41:35.893 | 2009-09-16T18:50:18.937 | null | null | 25,515 | [
"asp.net-mvc"
] |
1,435,092 | 1 | 1,437,150 | null | 1 | 1,345 | I would like to upgrade from Netbeans 6.5 to Netbeans 6.7. However, I've encountered an annoyance. Netbeans 6.5 recognizes jsf tags, but Netbeans 6.7 does not. Here are the screenshots:


| How can I make Netbeans 6.7 recognize JSF tags in facelets? | CC BY-SA 2.5 | null | 2009-09-16T19:49:28.600 | 2009-09-17T07:04:49.723 | 2017-02-08T14:15:22.847 | -1 | 28,991 | [
"java",
"ide",
"jsf",
"netbeans",
"facelets"
] |
1,439,239 | 1 | 1,439,296 | null | 2 | 9,257 | I'm trying to do a very rough measurement of the amount of memory my large financial calculation requires in order to run. Its a very simple command line tool which prices up a large number of financial instruments and then prints out a result.
I decided to use Process Explorer to view the memory requirements of the program. Can somebody kindly explain the difference between the two fields labeled a and b in the screenshot:
I currently believe that:
The value labeled "a" (Peak Private Bytes) is the largest amount of memory (both actual physical memory and virtual memory on disk) which was allocated to the process at any instantaneous moment.
The value labeled "b" (Peal Working Set) is the largest amount of physical memory allocated at any instant during the life of the process.

| Help me understand these memory statistics from Process Explorer | CC BY-SA 2.5 | 0 | 2009-09-17T14:27:07.443 | 2014-02-03T17:39:47.423 | 2017-02-08T14:15:24.217 | -1 | 46,411 | [
"windows",
"memory-management",
"process-explorer"
] |
1,441,273 | 1 | null | null | 1 | 763 | So after a lot of old fashioned comment-out-debugging to narrow down a leak in instruments. The leak occurs when I push a new TableViewController onto the stack.
I found that I'm getting a leak from this code:
```
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell;
cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
}
if(![feedData isFinishedLoading]){
[[cell textLabel] setText:@"Loading..."];
[[cell detailTextLabel] setText:@"..."];
}
else{
NSDictionary *dict = [[feedData items] objectAtIndex:indexPath.row];
[[cell textLabel] setText:[dict valueForKey:@"title"]];
[[cell detailTextLabel] setText:[dict valueForKey:@"description"]];
[cell setAccessoryType:UITableViewCellAccessoryDetailDisclosureButton];
}
return cell;
}
```
This version doesn't leak:
```
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell;
cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
}
// if(![feedData isFinishedLoading]){
// [[cell textLabel] setText:@"Loading..."];
// [[cell detailTextLabel] setText:@"..."];
// }
// else{
// NSDictionary *dict = [[feedData items] objectAtIndex:indexPath.row];
// [[cell textLabel] setText:[dict valueForKey:@"title"]];
// [[cell detailTextLabel] setText:[dict valueForKey:@"description"]];
// [cell setAccessoryType:UITableViewCellAccessoryDetailDisclosureButton];
// }
return cell;
}
```
This version does:
```
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell;
cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
}
// if(![feedData isFinishedLoading]){
[[cell textLabel] setText:@"Loading..."];
[[cell detailTextLabel] setText:@"..."];
// }
// else{
// NSDictionary *dict = [[feedData items] objectAtIndex:indexPath.row];
// [[cell textLabel] setText:[dict valueForKey:@"title"]];
// [[cell detailTextLabel] setText:[dict valueForKey:@"description"]];
// [cell setAccessoryType:UITableViewCellAccessoryDetailDisclosureButton];
// }
return cell;
}
```
Here's a screen cap of instruments:

Is the problem in my code somewhere? Or is it a bug in the framework/simulator?
| Why do these UITableViewCells cause a leak in instruments? | CC BY-SA 3.0 | null | 2009-09-17T20:50:04.010 | 2011-12-04T12:14:44.083 | 2011-12-04T12:14:44.083 | 84,042 | null | [
"iphone",
"cocoa-touch"
] |
1,442,231 | 1 | 1,442,506 | null | 7 | 2,478 | I've found several code completion elisp packages for emacs that do code completion, but most bind to a key such as M-/ to toggle completion. Is there something similar to Vim's omnicomplete where you can set it to automatically pop up a list of autocompletion options where you can either navigate through them, or just keep typing.
See screenshot for example:

| Vim style Omnicomplete for emacs? | CC BY-SA 2.5 | 0 | 2009-09-18T01:46:13.810 | 2009-09-20T15:53:09.080 | 2009-09-20T15:53:09.080 | 73,603 | 27,314 | [
"emacs",
"autocomplete",
"elisp",
"omnicomplete"
] |
1,443,598 | 1 | 4,364,521 | null | 14 | 7,700 | I have to do a "grid" like this:

[Harmonic table](http://www.c-thru-music.com/cgi/?page=layout_octaves)
I'm trying to create a `ListView` with `ItemsSource="List<Note>"` where every odd note in the list is moved on the bottom...
Is the `ListView` the right control?
How can I draw an exact hexagon with faces that is near next object?
hexagon drawing is solved... this is the xaml:
```
<Path d:LayoutOverrides="None"
d:LastTangent="0,0" Stroke="Blue" Fill="Red"
HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
Margin="0" Width="100" Height="100" x:Name="Path"
Stretch="Fill"
Data="M8.660254,0 L17.320508,5 17.320508,15 8.660254,20 0,15 0,5 8.660254,0 z"/>
```
| Creating grid of hexagons | CC BY-SA 3.0 | 0 | 2009-09-18T10:04:30.457 | 2017-07-21T21:18:05.233 | 2011-08-16T17:54:06.910 | 305,637 | 78,484 | [
"wpf",
"xaml",
"listview",
"hexagonal-tiles"
] |
1,446,356 | 1 | 1,446,472 | null | 2 | 156 | I'm relatively new to git, having used Subversion primarily in the past. I recently cloned a Subversion repository, made changes, then set up a remote bare git repository that fellow developers will use as we move towards git. I haven't pushed changes to the SVN repository yet (at least I haven't intentionally done this!). I tried to pull in new changes from Subversion with git svn rebase, and that's about where the trouble began. I think the best illustration of my problem is output from gitk:

Any ideas on how to delete this duplicate history?
It's looking like this helped (from helpful people at #git):
```
git rebase --onto master~2^1 master~2 master
```
What is this doing?
| Strange git-svn history - how do I fix this? | CC BY-SA 2.5 | 0 | 2009-09-18T19:08:27.780 | 2009-09-18T21:27:27.327 | 2009-09-18T21:27:27.327 | 147,427 | 147,427 | [
"git"
] |
1,446,502 | 1 | 1,446,614 | null | 8 | 5,034 | I'm building a CFG (Context-free grammar), and I'd like the exit node to always be at the bottom of the graph. Sometimes it happens naturally, sometimes it doesn't.
Example:
```
digraph G {
0;
1;
4;
5;
7;
8;
0 -> 4;
5 -> 7;
7 -> 8;
7 -> 1;
8 -> 5;
4 -> 7;
}
```
Draws (using dot):

Node 1 is my exit node, I'd like that to be at the bottom. Suggestions?
| Graphviz: Is there a way to force a node to the bottom? | CC BY-SA 3.0 | 0 | 2009-09-18T19:47:19.847 | 2012-01-17T23:42:51.400 | 2012-01-17T23:42:51.400 | 55,267 | 104,021 | [
"attributes",
"constraints",
"graph",
"graphviz"
] |
1,447,484 | 1 | 1,458,417 | null | 5 | 2,806 | from Wikipedia: [fourier division](http://en.wikipedia.org/wiki/Fourier_division#Method).
Here is a screenshot of the same:

([view in full-resolution](https://imgur.com/Sw5e0.jpg))
What is the logic behind this algorithm?
I know it can be used to divide very large numbers, but
| What is the logic behind Fourier division algorithm? | CC BY-SA 2.5 | 0 | 2009-09-19T01:50:48.937 | 2010-10-02T09:34:41.737 | 2009-09-21T11:58:36.380 | 143,804 | 113,124 | [
"algorithm",
"math",
"division",
"largenumber",
"fft"
] |
1,448,843 | 1 | 1,448,948 | null | 5 | 974 | The SPE IDE that I use for my Python code uses this "visual cue" that looks like a vertical dashed line for alignment of (what I would call) function blocks. How can I get this option in Visual Studio 2008?
Here is what it looks like:

| What is this dashed line called that aligns function blocks in my IDE? | CC BY-SA 2.5 | null | 2009-09-19T16:06:20.777 | 2009-09-19T17:26:00.817 | 2009-09-19T16:16:55.763 | 24,874 | 173,926 | [
"visual-studio",
"visual-studio-addins",
"code-organization"
] |
1,448,976 | 1 | 1,449,039 | null | 17 | 1,022 |
OK, so it's been a little while since I first posted this question. It seems to me that many of the initial responders failed to really get what I was saying--a common response was some variation on "What you're saying doesn't make any sense"--and so I've made some handy diagrams to really illustrate my point.
When we speak of numbers, we are generally referring to points on what grade school children learn is called the Number Line:

Now, when we learn arithmetic, our minds learn to perform a very interesting transformation of this concept. Evalutating the expression `1 + 0.5`, for example, if we simply applied our "number line thinking", would require us to somehow make sense of this:

It's difficult to really illustrate that, because it's difficult to about that: "adding" two points. This is where a lot of responders struggled with the idea of adding dates (or simply dismissed it as absurd), because they were thinking of dates as points.
However, the expression `1 + 0.5` make sense to us, because when we think of it, we're really imagining this:

That is, the (or ) 1, plus the [vector](http://en.wikipedia.org/wiki/Euclidean_vector) 0.5, resulting in 1.5.
Alternately, we may be imagining this:

That is, the 1, plus the 0.5, resulting in the 1.5.
In other words, when dealing with numbers, we treat points and vectors interchangeably. But what about dates? Dates are, after all, basically numbers. If you don't believe me, compare this line to the number line above:

Notice the correspondence between the timeline and the number line? This was my point: if we perform the transformation above with , we ought to be able to do it with dates as well. So, applying "timeline thinking", the expression `0001-Jan-02 00:00:00 + 0001-Jan-01 12:00:00` doesn't make a lot of sense, as plenty of responders pointed out:

, if we do the same conceptual transformation in our head that we perform , we can easily "rethink" the above as this:

So clearly, the difference between a `DateTime` and a `TimeSpan` is the same difference that exists between a point and a vector. What I think caused a lot of people to respond negatively to my suggestion is that it just feels so unnatural to think of dates as magnitudes in this way. But I don't buy the argument that there's no obvious reference point to use as zero.
Don't get me wrong: I'm not questioning the of drawing a conceptual divide between the notion of a `DateTime` and a `TimeSpan`. Really, my question all along should have been (as ChrisW indirectly suggested), why we treat numbers and vectors interchangeably when dealing with regular numeric types? (Or: why do we have just one `int` type, instead of `int` and `intspan`?) There's a big difference, and yet we don't ever really think about it until sometime in junior high or high school, when we begin geometry. And then it's treated as this new mathematical concept, when in reality it's something we've been utilizing ever since we learned to add numbers by counting with our fingers.
In the end, the best answer came from Strilanc, who pointed out that the use of `DateTime` and `TimeSpan` is really an implementation of an [affine space](http://en.wikipedia.org/wiki/Affine_space), which has the convenient property of not needing a reference point to treat as the origin. So thanks, Strilanc. I'm giving the accepted answer to ChrisW, however, for being the first one to bring up the concept of vectors and points, which really got to the crux of the matter.
---
I am certainly no programming jack of all trades, but I know both PHP and .NET have a `TimeSpan` class in addition to a `DateTime` class (or structure in .NET), and I am guessing this is the case in a variety of other languages and frameworks as well (though I am writing this primarily with reference to the .NET structures). This might seem a strange question, but isn't `TimeSpan` redundant?
In case you think the answer is obvious ("A `DateTime` is an absolute point in time, while a `TimeSpan` is a range of time -- simple as that!"), consider this: an integer can be conceptualized as either an absolute value (the point on the number line) or a distance values--and we don't need two separate data types for these different conceptualizations. I can still write 5 + 6 without any ambiguity as to what I mean.
As long as there is a consistent zero-point reference, it seems to me there should be no reason why one would need a `TimeSpan` object to perform arithmetic operations on `DateTime` objects, or to get the distance between them.
What am I missing? Why can't the unique methods and properties of the `TimeSpan` structure simply be folded into `DateTime`?
(Disclaimer: It isn't like I'm passionate about this or anything; I'm fine using `DateTime` and `TimeSpan` objects as they're intended all the time. I'm just asking a question.)
: Okay, over-simplified example to illustrate my point:
Consider the equation 10 - 5 = 5. One could read this as "Start at 10 (value), move 5 to the left (span), and you end up at 5 (value)."
Suppose, just to make things easy, we let January 1 1900 be point zero and we define `TimeSpan` objects in terms of days only.
Then 10 - 5 = 5 could be understood, in `DateTime` terms, as January 11 1900 - January 6 1900 = January 6 1900. . The fact that we are viewing the 10 as a , the first 5 as a , and the last 5 as a again is merely for our own conceptual benefit. My point is just this: that the only difference is in how you think of the number, not in what it actually is. This is why we don't have separate structures for, say, integer values and integer spans -- a plain old integer covers all our bases.
Am I making any sense?
| Is TimeSpan unnecessary? | CC BY-SA 2.5 | 0 | 2009-09-19T17:06:25.967 | 2012-07-19T21:05:32.623 | 2017-02-08T14:15:28.480 | -1 | 105,570 | [
"language-agnostic",
"datetime",
"timespan"
] |
1,450,654 | 1 | 1,518,397 | null | 5 | 19,472 | I am using Eclipse CDT with Cygwin GCC 3 as compiler. My project is using a custom Makefile.
The problem is that when debugging the code, it couldn't locate the source files, even though I added a custom path mapping for: `/cygdrive/c <-> c:\`
That in addition to the fact that I am getting "" for all standard header files, even though the program compiles and run fine.
I traced the problem to the "" option, which shows the following error:

Note that I made sure that the workspace directory is on a path without any spaces. The weird thing is that when I run that problematic command in the shell, it runs just fine with the following output:
```
$ gcc -E -P -v -dD C:/Users/Amro/workspace/.metadata/.plugins/org.eclipse.cdt.make.core/specs.c
Reading specs from /usr/lib/gcc/i686-pc-cygwin/3.4.4/specs
Configured with: /managed/gcc-build/final-v3-bootstrap/gcc-3.4.4-999/configure --verbose --program-suffix=-3 --prefix=/usr --exec-prefix=/usr --sysconfdir=/etc --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --enable-languages=c,ada,c++,d,f77,pascal,java,objc --enable-nls --without-included-gettext --enable-version-specific-runtime-libs --without-x --enable-libgcj --disable-java-awt --with-system-zlib --enable-interpreter --disable-libgcj-debug --enable-threads=posix --enable-java-gc=boehm --disable-win32-registry --enable-sjlj-exceptions --enable-hash-synchronization --enable-libstdcxx-debug
Thread model: posix
gcc version 3.4.4 (cygming special, gdc 0.12, using dmd 0.125)
/usr/lib/gcc/i686-pc-cygwin/3.4.4/cc1.exe -E -quiet -v -P -D__CYGWIN32__ -D__CYGWIN__ -Dunix -D__unix__ -D__unix -idirafter /usr/lib/gcc/i686-pc-cygwin/3.4.4/../../../../include/w32api -idirafter /usr/lib/gcc/i686-pc-cygwin/3.4.4/../../../../i686-pc-cygwin/lib/../../include/w32api C:/Users/Amro/workspace/.metadata/.plugins/org.eclipse.cdt.make.core/specs.c -mtune=pentiumpro -dD
ignoring nonexistent directory "/usr/local/include"
ignoring nonexistent directory "/usr/lib/gcc/i686-pc-cygwin/3.4.4/../../../../i686-pc-cygwin/include"
ignoring duplicate directory "/usr/lib/gcc/i686-pc-cygwin/3.4.4/../../../../i686-pc-cygwin/lib/../../include/w32api"
#include "..." search starts here:
#include <...> search starts here:
/usr/lib/gcc/i686-pc-cygwin/3.4.4/include
/usr/include
/usr/lib/gcc/i686-pc-cygwin/3.4.4/../../../../include/w32api
End of search list.
#define __STDC_HOSTED__ 1
#define __GNUC__ 3
[.... truncated ....]
#define __unix__ 1
#define __unix 1
```
I also tried to manually add to the include path:

How can I fix this so that it discovers both the include paths and the defined symbols? Should I try turn off the auto discovery and hardcode the required paths in the file? Any help is appreciated (I only ask that you don't suggest using MinGW instead of Cygwin!)
| Eclipse CDT with Cygwin GCC: automatic discovery of symbols and paths | CC BY-SA 3.0 | null | 2009-09-20T09:22:00.837 | 2014-05-25T19:47:04.080 | 2014-05-25T19:47:04.080 | 97,160 | 97,160 | [
"c++",
"c",
"eclipse",
"cygwin",
"eclipse-cdt"
] |
1,452,949 | 1 | null | null | 0 | 1,029 | I am trying to have a fixed width size for the labels in my Google chars. The problem is that I am showing several charts, one below the other. Since the y axis is filled with the names of people, depending on the names' lengths, I get a wider or narrower lebel area. The final result is ugly because each chart has a different label width and worst of all, the area where the data is actually shown is wider or narrower. I would like all of them to be aligned. Just to make sure I make myself understood, I am posting a very dirty solution below. While trying, I came up with this (I am not keeping). See the ______________ line as if it was one item. When using this huge line, all my labels get aligned, but the result is poor. Besides being ugly, it steals the position that would be occupied by one of the names. Any help will be very much appreciated. Thanks!
```
![<img src="https://chart.apis.google.com/chart?chs=750x134&cht=bhg&chco=FF9900,FFCC99&chg=10,0,2,5&chbh=12,3,15&chxt=x,y&chxl=0:|0|1|2|3|4|5|6|7|8|9|10|1:|______________________________|Carlos+Roberto+Ramos|Antonio+Rodrigues|Ana+Rosa|&chxs=1,666666,14,1&chd=t:10,20,20,-1&chm=r,a0bae9,0,0,0.20|r,356bd0,0,0.20,0.202" />][1]
```
[1]: 
| Label width in Google Charts | CC BY-SA 2.5 | null | 2009-09-21T04:57:00.710 | 2012-03-09T15:20:09.483 | 2017-02-08T14:15:30.247 | -1 | 55,563 | [
"api",
"charts"
] |
1,456,162 | 1 | 1,456,530 | null | 3 | 2,237 | I need to create a spline with two endpoints and 'n' control points.
As far as I am aware, a Bezier curve allows for only one control point, and a Bezier spline allows for two control points. However, I need to be able to add as many control points as I see fit, not limited to one or two.
Here is an example of what I want to achieve, with 4 control points:
(Source: [Wikipedia article on NURBS](http://en.wikipedia.org/wiki/NURBS))

So far I've only been able to combine a series of BezierSegments together like this:
[http://img297.imageshack.us/img297/3706/bezierpath.png](http://img297.imageshack.us/img297/3706/bezierpath.png)
```
<Polyline Stroke="Green" Stretch="Uniform"
Points="0,0 1,2 2,1 3,3 4,3 5,2 6,3 7,2 8,1.75 9,2.5" />
<Path Stroke="Red" Stretch="Uniform">
<Path.Data>
<PathGeometry>
<PathGeometry.Figures>
<PathFigureCollection>
<PathFigure StartPoint="0,0">
<PathFigure.Segments>
<PathSegmentCollection>
<BezierSegment Point1="1,2" Point2="2,1" Point3="3,3" />
<BezierSegment Point1="4,3" Point2="5,2" Point3="6,3" />
<BezierSegment Point1="7,2" Point2="8,1.75" Point3="9,2.5" />
</PathSegmentCollection>
</PathFigure.Segments>
</PathFigure>
</PathFigureCollection>
</PathGeometry.Figures>
</PathGeometry>
</Path.Data>
</Path>
```
| How can I create a simple 2D NURBS using XAML? | CC BY-SA 2.5 | 0 | 2009-09-21T18:49:02.150 | 2010-12-17T18:15:51.927 | 2017-02-08T14:15:31.360 | -1 | 120,888 | [
".net",
"wpf",
"xaml",
".net-3.5",
"bezier"
] |
1,456,623 | 1 | 1,457,235 | null | 3 | 1,109 | I'm trying to create a view that's similar to Motion's properties views.

Each of my property objects contains a definition of the kind of cell it wants to display as. But at the same time, I'd like to use bindings so that values are automatically updated as they can be changed elsewhere.
I've tried a few different approaches to the problem.
- Multiple cells and `dataCellForTableColumn:` while this allows rendering to happen properly for all cell types, I lose bindings.- NSProxy: I've also tried using a proxy object that I thought would forward all methods to the selected cell type behind it, but again, bindings don't seem to work here.
Has anybody had any experience with this kind of problem before? Or is this one of the cases where bindings isn't going to cut it, and I'll need to do the heavy lifting myself?
Cheers!
| NSTableView, multiple cells and bindings | CC BY-SA 3.0 | 0 | 2009-09-21T20:20:47.907 | 2012-05-17T19:05:42.460 | 2012-05-17T19:05:42.460 | 1,028,709 | 176,548 | [
"objective-c",
"cocoa",
"cocoa-bindings",
"nstableview"
] |
1,457,005 | 1 | 1,457,085 | null | 0 | 5,857 | I'm having some trouble programmatically causing an HTML checkbox object to become highlighted after gaining focus. Here is a simple example of the code I'm using:
```
<script type="text/javascript">
function doIt(){
document.getElementById("theCheckbox").focus();
}
</script>
<input type="button" onClick="doIt()" value="Push Me">
<br/>
<input type="checkbox" id="theCheckbox">
```
Clicking the "Push Me" button causes the checkbox to gain focus. I know this because the checkbox becomes checked if you hit the spacebar after clicking the button. However, at no point is the checkbox highlighted. The type of highlighting I'm talking about appears to work in IE naturally under the following circumstances...
Press the Tab key until the "Push Me" button is outlined in a dotted line. Now click the "Push Me" button again. The checkbox should be outlined in the dotted line I'm trying to programmatically create (without having to mess around by hitting the Tab key first).
Image of the desired effect that I can only seem to achieve after messing with the Tab key:

This was all done in IE7.
| How to focus an HTML checkbox in IE, causing it to gain highlight | CC BY-SA 2.5 | null | 2009-09-21T21:33:50.503 | 2009-09-21T21:51:20.930 | null | null | 19,147 | [
"javascript",
"html",
"internet-explorer"
] |
1,457,254 | 1 | 1,457,335 | null | 1 | 2,082 | I'm messing around with some jQuery stuff for a mockup and noticed some odd behavior. I'm hoping someone here can shed some light on it.
This is all mockup / test code, so please excuse the sloppyness.
So I have a table that I'm using in conjunction with the jQuery datatable plugin:
[http://www.datatables.net/](http://www.datatables.net/)
My table markup is as follows:
```
<table id="dexterIndex">
<thead>
<tr>
<th>Name</th>
<th>Col 2</th>
<th>Col 3</th>
<th>Col 4</th>
<th>Col 5</th>
</tr>
</thead>
<tbody>
<tr>
<td>Test 1</td>
<td>Yes</td>
<td>2009-2010</td>
<td>Fall 2010</td>
<td>Fall 2010</td>
</tr>
<tr>
<td>Test 2</td>
<td>No</td>
<td>2009-2010</td>
<td>Fall 2010</td>
<td>Fall 2010</td>
</tr>
<tr>
<td>Test 3</td>
<td>Yes</td>
<td>2009-2010</td>
<td>Fall 2010</td>
<td>Fall 2010</td>
</tr>
<tr>
<td>Test 4</td>
<td>No</td>
<td>2009-2010</td>
<td>Fall 2010</td>
<td>Fall 2010</td>
</tr>
<tr>
<td>Test 5</td>
<td>No</td>
<td>2009-2010</td>
<td>Fall 2010</td>
<td>Fall 2010</td>
</tr>
<tr>
<td>Test 6</td>
<td>No</td>
<td>2009-2010</td>
<td>Fall 2010</td>
<td>Fall 2010</td>
</tr>
<tr>
<td>Test 7</td>
<td>Yes</td>
<td>2008-2009</td>
<td>Fall 2009</td>
<td>Fall 2009</td>
</tr>
</tbody>
</table>
```
Now, the functionality I'm going for is:
On hover change the row background color
If hovering for more than 'x' seconds slide down a sub-row for the row being hovered over.
Here is a screenshot of the effect working correctly (generally):

Upon leaving the row with one's mouse the sub-row slides back up.
This all works, but it seems that each time it slides back up it falls short by about a pixel. Here is an image after hovering/un-hovering 10 times. This is the table in the state after the sub-row slides up (meaning it's not just the sub-row showing with no text).

If I change slideUp/slideDown to fadeIn/fadeOut everything works fine and I don't get extra pixels. (I'll probably end up just using the fades, but i'm curious about this behavior).
This is what safari is reporting about the DOM in the bugged state (also, why can't I copy/paste in the Safari Web Inspector?):

And finally, here is some sloppy jQuery that handles the actual moving parts:
```
<script language="javascript" type="text/javascript">
$(document).ready(function() {
$('#dexterIndex').dataTable()
$('#dexterIndex tbody tr')
.hover(function() {
var table_row = this
table_row.hovering = true
window.setTimeout(function() {
if (table_row.hovering) {
$('.school-info').slideUp('fast', function() {
$(this).remove()
})
table_row.hovering = false
var tr = $('<tr />').attr({'class': 'school-info',})
$(table_row).after(tr)
$('<td />')
.attr({
'colspan': 5
})
.css({
'display': 'none'
})
.text("Sub Row")
.appendTo(tr)
.slideDown('fast')
}
}, 2000)
$(this).children().each(function() {
(this.oldColor === undefined)? this.oldColor = $(this).css('background-color'): null;
$(this).css({'background-color': '#f3ffc0'})
})
},
function() {
this.hovering = false
$('.school-info').slideUp('fast', function() {
$(this).remove()
})
$(this).children().each(function() {
$(this).css({'background-color': this.oldColor})
})
})
})
```
TL;DR: slideUp slides up one pixel less each time, fadeOut doesn't have any issues.
If anyone can shed some light on this issue it'd be greatly appreciated.
| jQuery slideUp bug? | CC BY-SA 2.5 | null | 2009-09-21T22:37:18.020 | 2009-09-21T23:05:11.897 | null | null | 1,742,702 | [
"javascript",
"jquery",
"html",
"dom",
"safari"
] |
1,457,487 | 1 | 1,457,711 | null | 9 | 379 | Has anyone done any research on user acceptance of the following voting systems for different target audiences?

Or

I'm not interested which is more accurate or how the votes will be used for ranking. What I'm interested is from a user perspective, which is more intuitive - based on the demographic of that user.
Obviously, as developers, we all understand the StackOverflow style voting system, but I'm curious as to whether this only makes sense because of the way we [as developers] think. Does the Amazon style star system make more sense to the voter on sites targetted a more basic users?
Has anyone done any research on this and if so what was the outcome? Does anyone have any links to research results?
| Is there any research on numbered vs. star voting systems? | CC BY-SA 2.5 | 0 | 2009-09-21T23:52:56.223 | 2009-09-22T13:53:08.967 | 2017-02-08T14:15:32.040 | -1 | 40,650 | [
"user-interface",
"user-experience",
"ui-design"
] |
1,460,300 | 1 | 1,536,555 | null | 2 | 2,616 | I'm using `authopen` inside one of my programs to modify files owned by root. As can be seen in the screenshot below `authopen` asks for a admin password. What I'd like to achieve is that the dialog shows my app's name and then passes the authorization to `authopen`.

## Code
Launching `authopen` which returns an authorized file descriptor.
```
int pipe[2];
socketpair(AF_UNIX, SOCK_STREAM, 0, pipe);
if (fork() == 0) { // child
// close parent's pipe
close(pipe[0]);
dup2(pipe[1], STDOUT_FILENO);
const char *authopenPath = "/usr/libexec/authopen";
execl(authopenPath,
authopenPath,
"-stdoutpipe",
[self.device.devicePath fileSystemRepresentation],
NULL);
NSLog(@"Fatal error, we should never reach %s:%d", __FILE__, __LINE__);
exit(-1);
} else { // parent
close(pipe[1]);
}
// get file descriptor through sockets
```
I'd really like to use `AuthorizationExecuteWithPrivileges` because then I'd have to get more rights than I want to.
| How can I pre-authorize authopen? | CC BY-SA 3.0 | 0 | 2009-09-22T14:02:56.403 | 2013-11-01T14:00:40.303 | 2013-11-01T14:00:40.303 | 24,587 | 24,587 | [
"macos",
"authorization"
] |
1,461,285 | 1 | 1,461,315 | null | 0 | 277 | I'm trying to change text-selection on my HTML page. I want to change the hex value in css for the selected text whenever i select some text from para. How can i do that in CSS ?
For example as shown in this image below it is changing color to cyan.

Is it possible to do ? if So How ? any field in CSS ?
| text-selection in CSS? | CC BY-SA 3.0 | 0 | 2009-09-22T16:59:07.813 | 2015-06-20T18:24:54.163 | 2015-06-20T18:24:54.163 | 1,159,643 | 176,550 | [
"css"
] |
1,462,104 | 1 | 1,462,266 | null | 8 | 3,965 | I am looking for an algorithm to prune short line segments from the output of an edge detector. As can be seen in the image (and link) below, there are several small edges detected that aren't "long" lines. Ideally I'd like just the 4 sides of the quadrangle to show up after processing, but if there are a couple of stray lines, it won't be a big deal... Any suggestions?

[Image Link](http://www.flickr.com/photos/33402726@N03/3945611168/)
| Pruning short line segments from edge detector output? | CC BY-SA 2.5 | 0 | 2009-09-22T19:27:36.250 | 2016-08-31T08:02:25.717 | 2017-02-08T14:15:32.743 | -1 | 21,293 | [
"c",
"algorithm",
"image-processing",
"computer-vision"
] |
1,463,267 | 1 | 1,463,279 | null | 7 | 19,470 | I can't get IE padding around my <a> tags to work correctly. This only works in Firefox, Safari, Chrome, but not IE - please help!
My simplified HTML code looks like this:
```
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<div id="mydiv">
<table>
<tr>
<td>
<a style="padding: 20px; background: red;" href="#">Some link</a>
</td>
</tr>
</table>
</div>
</html>
```
Firefox Result (which is what I want):

Internet Explorer (7) Result (incorrect padding):
[(broken image)](http://img22.imageshack.us/img22/8555/linkissueie.jpg)
How can I fix this to work in IE? Many thanks in advance!
| Padding around <a> tags not working in Internet Explorer | CC BY-SA 4.0 | 0 | 2009-09-23T00:04:36.203 | 2019-04-26T05:20:53.407 | 2019-04-26T05:20:53.407 | 4,751,173 | 114,916 | [
"css",
"internet-explorer"
] |
1,466,695 | 1 | null | null | 13 | 29,399 | Running in compatibility mode the calendar below renders behind the textboxes below. IE8 displays the calendar how I need it to.
My CSS
```
.MyCalendar .ajax__calendar_container
{
border:1px solid #7F9DB9;
background-color: #ffffff;
z-index : 1004 ;
width:190px;
}
```
the textboxes which are overlaying the calendar don't have their z-index set anywhere although I have tried in my server side code to set their z-index to -1 if I detect IE7 to no avail. Any suggestions?

| IE7 does not respect z-index | CC BY-SA 4.0 | 0 | 2009-09-23T15:21:40.473 | 2019-05-02T13:49:05.350 | 2019-05-02T13:49:05.350 | 4,751,173 | 48,408 | [
"css",
"internet-explorer-8",
"internet-explorer-7",
"z-index"
] |
1,469,727 | 1 | 1,469,737 | null | 13 | 11,002 | I'm currently learning WPF. I really am enjoying it so far. I love how easy it is to make great looking apps, and would like to create an app that has a custom window border. I would like for it to look something like this:

I know I could just easily change the Window type to not have a boarder and go from there, but that seems to much like WinForms. Wouldn't it be better to just create a class that derived from `Window` and styled it? If so how can I do this? Thanks!
| Creating custom forms in WPF? | CC BY-SA 2.5 | 0 | 2009-09-24T04:09:37.593 | 2009-10-12T13:17:06.267 | 2017-02-08T14:15:34.460 | -1 | 126,196 | [
"c#",
"wpf"
] |
1,469,860 | 1 | 1,469,935 | null | 19 | 4,551 | I've started using Eclipe+PyDev as an environment for developing my first app for Google App Engine. Eclipse is configured according to [this tutorial](http://code.google.com/appengine/articles/eclipse.html).
Everything was working until I start to use memcache. PyDev reports the errors and I don't know how to fix it:

Error: Undefined variable from import: get
How to fix this?
Sure, it is only PyDev checker problem. Code is correct and run on GAE.
UPDATE:
1. I'm using PyDev 1.5.0 but experienced the same with 1.4.8.
2. My PYTHONPATH includes (set in Project Properties/PyDev - PYTHONPATH): C:\Program Files\Google\google_appengine C:\Program Files\Google\google_appengine\lib\django C:\Program Files\Google\google_appengine\lib\webob C:\Program Files\Google\google_appengine\lib\yaml\lib
UPDATE 2:
I took a look at `C:\Program Files\Google\google_appengine\google\appengine\api\memcache\__init__.py` and found `get()` is not declared as `memcache` module function. They use the following trick to do that (I didn't hear about such possibility):
```
_CLIENT = None
def setup_client(client_obj):
"""Sets the Client object instance to use for all module-level methods.
Use this method if you want to have customer persistent_id() or
persistent_load() functions associated with your client.
Args:
client_obj: Instance of the memcache.Client object.
"""
global _CLIENT
var_dict = globals()
_CLIENT = client_obj
var_dict['set_servers'] = _CLIENT.set_servers
var_dict['disconnect_all'] = _CLIENT.disconnect_all
var_dict['forget_dead_hosts'] = _CLIENT.forget_dead_hosts
var_dict['debuglog'] = _CLIENT.debuglog
var_dict['get'] = _CLIENT.get
var_dict['get_multi'] = _CLIENT.get_multi
var_dict['set'] = _CLIENT.set
var_dict['set_multi'] = _CLIENT.set_multi
var_dict['add'] = _CLIENT.add
var_dict['add_multi'] = _CLIENT.add_multi
var_dict['replace'] = _CLIENT.replace
var_dict['replace_multi'] = _CLIENT.replace_multi
var_dict['delete'] = _CLIENT.delete
var_dict['delete_multi'] = _CLIENT.delete_multi
var_dict['incr'] = _CLIENT.incr
var_dict['decr'] = _CLIENT.decr
var_dict['flush_all'] = _CLIENT.flush_all
var_dict['get_stats'] = _CLIENT.get_stats
setup_client(Client())
```
Hmm... Any idea how to force PyDev to recognize that?
| Eclipse+PyDev+GAE memcache "Undefined variable from import: get" | CC BY-SA 4.0 | 0 | 2009-09-24T05:12:28.603 | 2019-05-04T11:29:40.807 | 2019-05-04T11:29:40.807 | 4,751,173 | 158,307 | [
"python",
"eclipse",
"google-app-engine",
"pydev"
] |
1,471,147 | 1 | 1,471,167 | null | 7 | 4,593 | How does SQL Server implement group by clauses (aggregates)?
As inspiration, take the execution plan of [this question's](https://stackoverflow.com/questions/1465827/select-at-onece) query:
```
select p_id, DATEDIFF(D, MIN(TreatmentDate), MAX(TreatmentDate)) from
patientsTable group by p_id
```
Before query data, simple select statement and its execution plan is this:

After retrieving the data with the query and execution plan:

| How do aggregates (group by) work on SQL Server? | CC BY-SA 2.5 | 0 | 2009-09-24T11:41:05.283 | 2009-09-29T00:05:10.933 | 2017-05-23T12:24:21.067 | -1 | 104,085 | [
"sql",
"sql-server"
] |
1,473,830 | 1 | 1,478,144 | null | 1 | 2,281 |
So far in my endeavor to create a line between a point and its projected
location on a line has been long but I'm almost there. As of yesterday, and
before including any nearest neighbor analysis, I got the results shown in
this image:

As you can see, each point in pink is connecting to all the projected points, whereas, I only want to connect each pink x to its respective projection.
On IRC, It was recommended that I use [BostonGIS's nearest neighbor method](http://www.bostongis.com/PrinterFriendly.aspx?content_name=postgis_nearest_neighbor_generic). I inputed the function to PostgreSQL and tried it unsuccessfully as outlined below. I am assuming that my error is due the wrong parameter type. I played around with that, changed some of the columns' type to varchar, but still I can't get it to work.
Any Ideas on what I'm doing wrong? any suggestions on how to fix it?
Code:
```
-- this sql script creates a line table that connects points
-- convert multi lines into lines
CREATE TABLE exploded_roads AS
SELECT the_geom
FROM (
SELECT ST_GeometryN(
the_geom,
generate_series(1, ST_NumGeometries(the_geom)))
AS the_geom
FROM "StreetCenterLines"
)
AS foo;
-- Create line table that'll connect the centroids to the projected points on exploded lines
CREATE TABLE lines_from_centroids_to_roads (
the_geom geometry,
edge_id SERIAL
);
-- Populate Table
INSERT INTO lines_from_centroids_to_roads ( the_geom )
SELECT
ST_MakeLine(
centroids.the_geom,
(pgis_fn_nn(centroids.the_geom, 1000000, 1,1000, 'exploded_roads' ,'true', 'gid',
ST_Line_Interpolate_Point(
exploded_roads.the_geom,
ST_Line_Locate_Point(
exploded_roads.the_geom,
centroids.the_geom
)
)
)).*
)
FROM exploded_roads, fred_city_o6_da_centroids centroids;
DROP TABLE exploded_roads;
```
```
NOTICE: CREATE TABLE will create implicit sequence "lines_from_centroids_to_roads_edge_id_seq" for serial column "lines_from_centroids_to_roads.edge_id"
ERROR: function pgis_fn_nn(geometry, integer, integer, integer, unknown, unknown, unknown, geometry) does not exist
LINE 28: (pgis_fn_nn(centroids.the_geom, 1000000, 1,1000, 'exploded...
^
HINT: No function matches the given name and argument types. You might need to add explicit type casts.
********** Error **********
ERROR: function pgis_fn_nn(geometry, integer, integer, integer, unknown, unknown, unknown, geometry) does not exist
SQL state: 42883
Hint: No function matches the given name and argument types. You might need to add explicit type casts.
Character: 584
```
| Drawing a line in PostGIS using Nearest Neighbour Method | CC BY-SA 2.5 | 0 | 2009-09-24T19:58:07.167 | 2009-09-25T15:53:44.243 | null | null | 104,071 | [
"sql",
"postgresql",
"postgis",
"nearest-neighbor"
] |
1,476,241 | 1 | 1,476,694 | null | 19 | 12,130 | I'm trying to model a certain flow using graphviz, and I can't figure out how to model the following graph to share the same horizontal center
```
digraph exmp {
A -> B -> C -> D
C -> E [constraint=false]
A -> C [style="dotted", constraint=false]
A -> D [style="dotted", constraint=false]
B -> D [constraint=false]
D -> A [style="dashed", constraint=false]
C -> A [style="dashed", constraint=false]
subgraph cluster_hackToSinkIt { E -> F }
{ rank="sink" E F }
}
```
this results in the following graph:

My question is, how can I get the E -> F to be positioned under D such that is lies in the same column?
| How to force all nodes in the same column in graphviz? | CC BY-SA 3.0 | 0 | 2009-09-25T09:05:45.147 | 2015-06-29T14:17:11.837 | 2015-06-29T14:15:32.920 | 1,139,697 | 11,098 | [
"graph",
"graphviz",
"dot"
] |
1,476,275 | 1 | null | null | 4 | 15,926 | I'm using Toad 8.6 and when I try to add new records using the Schema Browser, Data tab, my 'insert record' is grayed out. So, I installed the 9.6 version and the same problem persists.
See the grayed out buttons in red in the picture.

I'm able to add records through the SQL insert statement at the SQL Editor of Toad.
How can I solve this?
| Toad Add/Insert and Delete records Button Disabled | CC BY-SA 3.0 | 0 | 2009-09-25T09:12:36.173 | 2021-11-04T12:18:04.337 | 2014-10-31T04:10:09.257 | 495,455 | 91,607 | [
"oracle",
"button",
"toad",
"disabled-control"
] |
1,476,285 | 1 | 1,476,538 | null | 0 | 414 | Let's say we have a long list:
```
<ul>
<li>one</li>
<li>two</li>
...
<li>fifty-three</li>
</ul>
```
Even if you specify the height of the ul:
```
ul {
height: 100px;
}
```
The li elements will overflow outside of it.
Is it possible to have the elements wrap themselves on the right like a window manager's "list view" or like [https://stackoverflow.com/tags](https://stackoverflow.com/tags) (without the tables).
either through pure CSS or turning to JS.

| ul wrapping li based on its height instead of hiding | CC BY-SA 2.5 | null | 2009-09-25T09:15:01.040 | 2009-09-25T10:23:41.167 | 2017-05-23T12:24:21.067 | -1 | 63,658 | [
"css",
"listview"
] |
1,479,980 | 1 | 1,480,017 | null | 5 | 3,010 | My inner loop contains a calculation that profiling shows to be problematic.
The idea is to take a greyscale pixel x (0 <= x <= 1), and "increase its contrast". My requirements are fairly loose, just the following:
- - - - -
So the graph must look something like this:
.
I have two implementations (their results differ but both are conformant):
```
float cosContrastize(float i) {
return .5 - cos(x * pi) / 2;
}
float mulContrastize(float i) {
if (i < .5) return i * i * 2;
i = 1 - i;
return 1 - i * i * 2;
}
```
So I request either a microoptimization for one of these implementations, or an original, faster formula of your own.
Maybe one of you can even twiddle the bits ;)
| Fast formula for a "high contrast" curve | CC BY-SA 3.0 | 0 | 2009-09-25T23:35:18.703 | 2019-04-26T19:56:43.457 | 2015-06-20T18:26:50.047 | 1,159,643 | 122,687 | [
"optimization",
"math",
"formula"
] |
1,480,387 | 1 | null | null | 0 | 1,457 | I'm completely stumped with this problem. I made a custom search control that uses a few different classes. For some reason, when an NSTextField is anywhere over these different pieces, it displays a solid black border around it, and the cursor doesn't blink.
If anyone has a couple minutes - I've put together my code on pastebin.
Here's a picture of the search control, and what it looks like in this particular case:

The search control is sitting on top of a gradient view:
[http://pastebin.com/m43fde2b6](http://pastebin.com/m43fde2b6)
The search control is pieced together with this code:
[http://pastebin.com/m5be08c32](http://pastebin.com/m5be08c32)
The actual graphical part of the search control is built from two classes:
[http://pastebin.com/m5bfa9439](http://pastebin.com/m5bfa9439)
[http://pastebin.com/m5e909a2f](http://pastebin.com/m5e909a2f) (extends above class)
I cannot find what the heck is wrong. The text works, but there's a black border, and the cursor doesn't blink. What am I doing wrong?
Arg, I've been pulling my hair out for days on this one.
| NSTextField on top of custom drawing - black outline and cursor not blinking? | CC BY-SA 3.0 | null | 2009-09-26T03:48:26.943 | 2011-12-04T00:41:38.260 | 2011-12-04T00:41:38.260 | 84,042 | 175,804 | [
"cocoa",
"nstextfield",
"nstextfieldcell"
] |
1,481,337 | 1 | 1,481,365 | null | 1 | 2,391 |
### Not the same as "footnote spacing in latex".
When I add footnotes in latex, there is often a little bit of space due to the punctuation mark before them:

I can't help but feel this might be a little bit nicer if the footnote mark was a tiny tiny bit to the left, sort of like kerning. Any ideas how to do this? Especially if it automatically decides if it should do the kerning (as opposed to have one footnote with ! and one without).
| Latex: kerning between footnote marks and punctuation marks | CC BY-SA 2.5 | null | 2009-09-26T14:35:34.023 | 2015-02-25T14:12:55.483 | 2017-05-23T10:30:53.317 | -1 | 104,021 | [
"latex",
"footnotes"
] |
1,483,261 | 1 | null | null | 0 | 2,276 | I've got a tabbed menu that looks something like this:

The html for it is simple:
```
<div id="menuContainer">
<ul id="menu" class="undecorated ">
<li id="menuHome"><%= Html.ActionLink<HomeController>(c=>c.Index(), "Home") %> </li>
<li id="menuAbout"><%= Html.ActionLink<UsergroupController>(c=>c.About(), "About") %> </li>
<li id="menuArchives"><%= Html.ActionLink<UsergroupController>(c=>c.Archives(), "Archives") %> </li>
<li id="menuLinks"><%= Html.ActionLink<UsergroupController>(c=>c.Links(), "Links") %> </li>
</ul>
<div id="menuBar" class="container"> </div>
</div>
```
And the JQuery:
```
$(function() {
$('.container').corner();
$('ul#menu li').corner('30px top');
});
```
and on each page something like:
```
$(function() {
$('#menuHome').addClass('current')
})
```
I would like to indicate the "current" tab with a drop shadow behind it. I am thinking I would do this by
1. Create a shadow 'li' with $('.current').after(' 
2. Use CSS to set the shadow color and round the top right corner with jquery
3. Shift it over with CSS position: relative; top: 5px; left: -5px;
The problem that I am having is that the shadow appears on top of the element to the left. Setting its z-index low makes it disappear altogether for some reason. How do I make it appear behind the previous list-item?
Alternatively, what's a better way to do this?
| How to add drop shadow to the current element in a tab menu? | CC BY-SA 2.5 | null | 2009-09-27T10:16:46.330 | 2011-11-22T16:52:32.820 | 2017-02-08T14:15:40.133 | -1 | 5,056 | [
"jquery",
"css",
"menu"
] |
1,487,318 | 1 | 1,487,353 | null | 1 | 1,245 | I'm about to start writing a GUI for a modular synthesis app (like Alsa Modular Synth, Pure Data, Ingen) that will be used for patch (sound) editing.
What I need to do is something like this:
[](https://i.stack.imgur.com/U0OEd.png)
[drobilla.net](http://drobilla.net/blog/wp-content/uploads/2008/09/ingen.png)

[](https://i.stack.imgur.com/vti02.jpg)
[mcgill.ca](https://www.cim.mcgill.ca/~clark/nordmodularbook/images/hallseymrk1.jpg)
So, basically, it's an area where I can draw some rectangles (boxes) that represent synth modules with input and output ports that I can connect with wires.
The problem is that I can't figure out how two create a widget for the editing area: Using a simple 2D drawing context where I draw the boxes manually seems to be the only logical way to do this, but doing this I loose all the great event management that qt gives me.
I'm wondering if there's the possibility of creating a custom layout that simply takes coordinates of created "boxes" and put them on the screen, so that I implement the boxes as subclasses of QWidget (and reusing qt's event handling system) and I add them to the window as I do usually.
Or maybe there's a better way?
Thank you
| Qt4 modular synth editing widget | CC BY-SA 4.0 | 0 | 2009-09-28T14:23:09.570 | 2019-04-27T04:05:57.967 | 2019-04-27T04:05:57.967 | 4,751,173 | 180,411 | [
"c++",
"user-interface",
"open-source",
"qt4",
"synthesizer"
] |
1,488,094 | 1 | null | null | 5 | 5,275 | I have the following domain set up for persistence with NHibernate:

I am using the PaperConfiguration as the root aggregate.
I want to select all PaperConfiguration objects for a given Tier and AcademicYearConfiguration. This works really well as per the following example:
```
ICriteria criteria =
session.CreateCriteria<PaperConfiguration>()
.Add(Restrictions.Eq("AcademicYearConfiguration", configuration))
.CreateCriteria("Paper")
.CreateCriteria("Unit")
.CreateCriteria("Tier")
.Add(Restrictions.Eq("Id", tier.Id))
return criteria.List<PaperConfiguration>();
```
(Perhaps there is a better way of doing this though).
Yet also need to know how many ReferenceMaterials there are for each PaperConfiguration and I would like to get it in the same call. Avoid HQL - I already have an HQL solution for it.
I know this is what projections are for and [this question](https://stackoverflow.com/questions/532483/nhibernate-and-collection-counts) suggests an idea but I can't get it to work.
I have a PaperConfigurationView that has, instead of `IList<ReferenceMaterial> ReferenceMaterials` the ReferenceMaterialCount and was thinking along the lines of
```
ICriteria criteria =
session.CreateCriteria<PaperConfiguration>()
.Add(Restrictions.Eq("AcademicYearConfiguration", configuration))
.CreateCriteria("Paper")
.CreateCriteria("Unit")
.CreateCriteria("Tier")
.Add(Restrictions.Eq("Id", tier.Id))
.SetProjection(
Projections.ProjectionList()
.Add(Projections.Property("IsSelected"), "IsSelected")
.Add(Projections.Property("Paper"), "Paper")
// and so on for all relevant properties
.Add(Projections.Count("ReferenceMaterials"), "ReferenceMaterialCount")
.SetResultTransformer(Transformers.AliasToBean<PaperConfigurationView>());
return criteria.List< PaperConfigurationView >();
```
unfortunately this does not work. What am I doing wrong?
The following simplified query:
```
ICriteria criteria =
session.CreateCriteria<PaperConfiguration>()
.CreateCriteria("ReferenceMaterials")
.SetProjection(
Projections.ProjectionList()
.Add(Projections.Property("Id"), "Id")
.Add(Projections.Count("ReferenceMaterials"), "ReferenceMaterialCount")
).SetResultTransformer(Transformers.AliasToBean<PaperConfigurationView>());
return criteria.List< PaperConfigurationView >();
```
creates this rather unexpected SQL:
```
SELECT
this_.Id as y0_,
count(this_.Id) as y1_
FROM Domain.PaperConfiguration this_
inner join Domain.ReferenceMaterial referencem1_
on this_.Id=referencem1_.PaperConfigurationId
```
The above query fails with ADO.NET error as it obviously is not a correct SQL since it is missing a group by or the count being count(referencem1_.Id) rather than (this_.Id).
NHibernate mappings:
```
<class name="PaperConfiguration" table="PaperConfiguration">
<id name="Id" type="Int32">
<column name="Id" sql-type="int" not-null="true" unique="true" index="PK_PaperConfiguration"/>
<generator class="native" />
</id>
<!-- IPersistent -->
<version name="VersionLock" />
<!-- IAuditable -->
<property name="WhenCreated" type="DateTime" />
<property name="CreatedBy" type="String" length="50" />
<property name="WhenChanged" type="DateTime" />
<property name="ChangedBy" type="String" length="50" />
<property name="IsEmeEnabled" type="boolean" not-null="true" />
<property name="IsSelected" type="boolean" not-null="true" />
<many-to-one name="Paper" column="PaperId" class="Paper" not-null="true" access="field.camelcase"/>
<many-to-one name="AcademicYearConfiguration" column="AcademicYearConfigurationId" class="AcademicYearConfiguration" not-null="true" access="field.camelcase"/>
<bag name="ReferenceMaterials" generic="true" cascade="delete" lazy="true" inverse="true">
<key column="PaperConfigurationId" not-null="true" />
<one-to-many class="ReferenceMaterial" />
</bag>
</class>
<class name="ReferenceMaterial" table="ReferenceMaterial">
<id name="Id" type="Int32">
<column name="Id" sql-type="int" not-null="true" unique="true" index="PK_ReferenceMaterial"/>
<generator class="native" />
</id>
<!-- IPersistent -->
<version name="VersionLock" />
<!-- IAuditable -->
<property name="WhenCreated" type="DateTime" />
<property name="CreatedBy" type="String" length="50" />
<property name="WhenChanged" type="DateTime" />
<property name="ChangedBy" type="String" length="50" />
<property name="Name" type="String" not-null="true" />
<property name="ContentFile" type="String" not-null="false" />
<property name="Position" type="int" not-null="false" />
<property name="CommentaryName" type="String" not-null="false" />
<property name="CommentarySubjectTask" type="String" not-null="false" />
<property name="CommentaryPointScore" type="String" not-null="false" />
<property name="CommentaryContentFile" type="String" not-null="false" />
<many-to-one name="PaperConfiguration" column="PaperConfigurationId" class="PaperConfiguration" not-null="true"/>
</class>
```
| Using NHibernate Criteria API to select specific set of data together with a count | CC BY-SA 2.5 | 0 | 2009-09-28T16:43:59.770 | 2011-01-07T23:21:34.310 | 2017-05-23T12:34:42.373 | -1 | 59,009 | [
"c#",
"nhibernate",
"icriteria",
"criteria-api"
] |
1,488,837 | 1 | 1,490,990 | null | 1 | 3,111 | I need to render the following form:

One Radio must be followed by Data (in panel grid).
SelectOneRadio is rendered using an html table, and PanelGrid is also redered using owned html table.
Can somebody help me to build this form using JSF
| JSF Render a SelectOneRadio with a PanelGrid | CC BY-SA 3.0 | 0 | 2009-09-28T19:14:54.903 | 2015-06-20T18:26:24.400 | 2015-06-20T18:26:24.400 | 1,159,643 | 138,133 | [
"jsf"
] |
1,490,778 | 1 | null | null | 15 | 109,577 | I am drawing a graph using the function, but by default it doesn't show the axes.
Actually my graph is something like:
And I want a horizontal line corresponding to .
| How to show x and y axes in a MATLAB graph? | CC BY-SA 2.5 | 0 | 2009-09-29T05:55:25.660 | 2016-04-01T00:44:07.650 | 2010-09-04T07:52:57.530 | 63,550 | 113,124 | [
"matlab",
"graph",
"draw",
"axes"
] |
1,492,482 | 1 | null | null | 2 | 168 | Check out how it looks right now:

How can I make the ContentPlaceHolder go where I outlined? Thanks for the help.
I mainly program in WinForms, so I'm used to just dragging things around. Why can't I do this here. Help me SO!
Edit: Here's what I have in my CSS:
```
.Form
{
position:absolute;
left:60px;
}
```
How can I use this on my Form code:
```
<%@ Page Title="" Language="C#" MasterPageFile="~/EndUserMasterPage.Master" AutoEventWireup="true" CodeBehind="RegistroNuevoPostulante.aspx.cs" Inherits="WebSite.RegistroNuevoPostulante" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
</asp:Content>
```
| How to position my WebForm where I want it to be *sigh*....? | CC BY-SA 2.5 | null | 2009-09-29T13:17:52.600 | 2009-09-29T14:28:24.823 | 2009-09-29T13:26:06.760 | 112,355 | 112,355 | [
"asp.net",
"asp.net-3.5"
] |
1,494,616 | 1 | 1,497,776 | null | 0 | 168 | Is it possible to hide disabled builds in Team Explorer in Visual Studio? I don't want to see these anymore.

| Hide disabled builds in Visual Studio Team Explorer | CC BY-SA 2.5 | null | 2009-09-29T20:02:52.667 | 2016-02-18T15:24:06.393 | 2016-02-18T15:24:06.393 | 781,754 | 88,803 | [
"visual-studio",
"tfs",
"team-explorer"
] |
1,500,061 | 1 | 1,636,693 | null | 6 | 4,805 | I'm trying to mimic what every other tabular view does with the DataGridView control, but I can't seem to get the headers correct.
I want a blank header to the right of all headers, that does not move, and is not actually a header. Is there a way to paint the default header along the top?
Basically, this is my problem:

| DataGridView White Space After Last Column Header | CC BY-SA 3.0 | 0 | 2009-09-30T19:04:46.950 | 2014-01-14T18:39:20.720 | 2014-01-14T18:39:20.720 | 1,366,033 | 88,364 | [
".net",
"datagridview",
"header",
"paint"
] |
1,500,700 | 1 | 1,501,874 | null | 2 | 673 | I may be doing this all wrong, but I thought I was on the right track until I hit this little snag. Basically I was putting together a toy using NSCollectionView and trying to understand how to hook that all up using IB. I have a button which will add a couple of strings to the NSArrayController:

The first time I press this button, my strings appear in the collection view as expected:

The second time I press the button, the views scroll down and room is made - but the items don't appear to get added. I just see blank space:

The button is implemented as follows (controller is a pointer to the NSArrayController I added in IB):
```
- (IBAction)addStuff:(id)control
{
[controller addObjects:[NSArray arrayWithObjects:@"String 1",@"String 2",@"String 3",nil]];
}
```
I'm not sure what I'm doing wrong. Rather than try to explain all the connections/binds/etc, if you need more info, I'd be grateful if you could just take a quick look at the [toy project](http://dl.getdropbox.com/u/545670/Toy.zip) itself.
After more experimentation as suggested by James Williams, it seems the problem stems from having multiple objects with the same memory address in the array. This confuses either NSArrayController or NSCollectionView (not sure which). Changing my addStuff: to this resulted in the behavior I originally expected:
```
[controller addObjects:[NSArray arrayWithObjects:[NSMutableString stringWithString:@"String 1"],[NSMutableString stringWithString:@"String 2"],[NSMutableString stringWithString:@"String 3"],nil]];
```
So the question now, I guess, is if this is a bug I should report to Apple or if this is intended/documented behavior and I just missed it?
| NSCollectionView: Can the same object not be in the array more than once or is this a bug? | CC BY-SA 2.5 | 0 | 2009-09-30T21:13:24.843 | 2010-04-15T03:02:49.347 | 2017-02-08T14:15:47.750 | -1 | 177,379 | [
"objective-c",
"cocoa",
"interface-builder"
] |
1,501,959 | 1 | 1,512,511 | null | 10 | 14,407 | When I set the UITableViewCells `backgroundColor` to a semi-transparent color, it looks good, but the color doesn't cover the entire cell.
The area around the `imageView` and `accessoryView` are coming up as `[UIColor clearColor]`...

I've tried explicitly setting the `cell.accessoryView.backgroundColor` and `cell.imageView.backgroundColor` to be the same color as the cell's `backgroundColor`, but it doesn't work. It puts a tiny box around the icon, but doesn't expand to fill the left edge. The right edge seems unaffected by this.
How can I fix this?
: Here is the raw table cell code:
```
- (UITableViewCell *)tableView:(UITableView *)tv cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
cell.opaque = NO;
cell.textLabel.backgroundColor = [UIColor clearColor];
cell.backgroundColor = [UIColor colorWithRed:.1 green:.1 blue:.1 alpha:.4];
cell.textColor = [UIColor whiteColor];
}
cell.imageView.image = [icons objectAtIndex:indexPath.row];
cell.textLabel.text = [items objectAtIndex:indexPath.row];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
return cell;
}
```
| UITableViewCell transparent background (including imageView/accessoryView) | CC BY-SA 2.5 | 0 | 2009-10-01T04:55:54.847 | 2015-11-30T05:43:08.427 | 2017-02-08T14:15:48.433 | -1 | 3,381 | [
"iphone",
"iphone-sdk-3.0",
"uitableview"
] |
1,504,043 | 1 | 1,504,634 | null | 4 | 2,224 | I am working with the ADO.NET Entity Data Model for this side project I am working on. Typically I would include the whole connection string (user and password) inside the web.config, but I was feeling frisky this morning so I decided to exclude the password from the connection string. Unfortunately for me, I cannot seem to figure out how to pass or set the password before I manipulate the database, and all the searching I've done so far have not yielded any fruitful results. All I have currently are a couple of lines that add a new record:
```
_entities.AddToUploadSet(uploadFile);
_entities.SaveChanges();
```
I see there is a `ConnectionString` property inside of `_entities.Connection`, but I failed to find anything useful like a password property.
Can anyone help me out? Thanks!
# edit
For clarification, this screenshot shows the step where I can choose whether or not to include the password in the web.config file:

So as you can see, I need to set it in my application code as the prompt suggests.
| Using ADO.NET Entity Data Model, how do I pass (or set) the connection string password? | CC BY-SA 2.5 | null | 2009-10-01T13:40:09.143 | 2009-10-01T15:28:08.050 | 2009-10-01T14:02:24.183 | 25,515 | 25,515 | [
"c#",
"asp.net-mvc",
"ado.net"
] |
1,504,140 | 1 | 1,504,176 | null | 0 | 2,061 | If I have an EditText component on my screen that I have specified `inputType="decimal"` for (i.e. a numeric/decimal field), what is the best way to convert it to an decimal value in the application code?

[Google recommends](http://developer.android.com/guide/practices/design/performance.html#avoidfloat) avoiding `float`s, and avoiding creating objects unnecessarily (and I assume any auto-unboxing code is bad too), so I take these as my constraints. I realise a small application probably doesn't need to worry too much, but I haven't been able to find a 'best-practice' solution to this.
The most common solution appears to be this:
```
double value = Double.parseDouble(txtInput);
```
| Converting from a text field to an numeric in Android | CC BY-SA 2.5 | null | 2009-10-01T14:00:20.770 | 2013-03-16T03:15:14.850 | 2017-02-08T14:15:49.473 | -1 | 6,340 | [
"java",
"android",
"mobile",
"floating-point"
] |
1,504,241 | 1 | 1,504,340 | null | 0 | 774 | I'm trying to build a Silverlight App that accesses and presents data from a MySQL database. I'm trying to use Entity Framework to model the MySQL data and RIA Services to make the data via EF available to Silverlight.
My Silverlight App is showing the correct columns in the datagrid, but it does not show the data ([alternate link to image](http://screencast.com/t/yc6lXUjU0)) :

When I look at the DomainService file (used for RIA Services), I see this:
```
public IQueryable<saw_order> GetSaw_order(int intOrder)
{
return this.Context.saw_order
.Where(o => o.Wo == intOrder);
}
```
To test this step, I modified the LINQ to remove the where so that all I had was `return this.Context.saw_order;`. When I did this, I was able to check the MySQL server and verify that the query was in fact sent to the MySQL server and the MySQL server was "Writing to NET" and trying to send data back. The query sent from my test machine was valid.
From my test above, it seems that data is correctly being sent to the MySQL server but is lost somewhere on its return. My difficulty now is trying to figure out where in the chain (Entity Framework to RIA Services to Silverlight client) the data is getting lost and I'm not sure how to debug this at different points.
For example, what are other ways I might test Entity Framework to make sure EF is not the problem? How might I test RIA services? Should I test on the Silverlight Client?
I'm struggling with learning C# and am not sure what to do to test. How might I "catch" the return in the DomainService so I can do some basic debugging.
Any help is very much appreciated.
| Need help debugging: Having trouble getting data to Silverlight App through RIA Services, Entity Framework, MySQL | CC BY-SA 2.5 | null | 2009-10-01T14:18:39.580 | 2009-10-01T15:21:41.587 | 2017-02-08T14:15:49.813 | -1 | 166,258 | [
"c#",
"mysql",
"silverlight",
"entity-framework",
"wcf-ria-services"
] |
1,504,583 | 1 | 1,504,697 | null | 6 | 703 | 
CredTypeID is a number the CredType is the type of Credential
I need the query to display the Credential in a drop down list so I can change the credential by selecting a new one.
Currently I have to know the CredTypeID number to change the Credential.
I just want to select it from a drop down list.
Currently to change Betty Smith to an RN I have to type “3” in the CredTypeID. I just want to be able to select “RN” from a drop down list.
Here is the table layout and sql view (from access)

```
SELECT Lawson_Employees.LawsonID, Lawson_Employees.LastName,
Lawson_Employees.FirstName, Lawson_DeptInfo.DisplayName,
Lawson_Employees.CredTypeID, tblCredTypes.CredType
FROM (Lawson_Employees
INNER JOIN Lawson_DeptInfo
ON Lawson_Employees.AccCode = Lawson_DeptInfo.AccCode)
INNER JOIN tblCredTypes
ON Lawson_Employees.CredTypeID = tblCredTypes.CredTypeID;
```
| Help with Query design in MS-Access | CC BY-SA 2.5 | 0 | 2009-10-01T15:19:03.687 | 2009-10-02T09:18:03.770 | 2017-02-08T14:15:50.483 | -1 | 152,094 | [
"sql",
"ms-access"
] |
1,506,568 | 1 | 1,506,625 | null | 41 | 128,653 | I'm trying to style a TabControl and have got 75% of the way there, but I'm having difficulty styling the actual TabItems:

What I am trying to achieve is remove the default ContentPresenter so that I can make the tab items partially transparent with rounded edges instead of the place holder red and green i have now.
I'm sure it's probably not that difficult, but I just can't figure it out so any help would be most appreciated!
Here's the XAML for the TabControl so far:
```
<TabControl TabStripPlacement="Left" HorizontalAlignment="Stretch" BorderBrush="#41020202">
<TabControl.BitmapEffect>
<DropShadowBitmapEffect Color="Black" Direction="270"/>
</TabControl.BitmapEffect>
<TabControl.Resources>
<Style TargetType="{x:Type TabItem}">
<Setter Property="BorderThickness" Value="0"/>
<Setter Property="Padding" Value="0" />
<Setter Property="HeaderTemplate">
<Setter.Value>
<DataTemplate>
<Border x:Name="grid" Background="Red">
<ContentPresenter>
<ContentPresenter.Content>
<TextBlock Margin="4" FontSize="15" Text="{TemplateBinding Content}"/>
</ContentPresenter.Content>
<ContentPresenter.LayoutTransform>
<RotateTransform Angle="270" />
</ContentPresenter.LayoutTransform>
</ContentPresenter>
</Border>
<DataTemplate.Triggers>
<DataTrigger Binding="{Binding RelativeSource={RelativeSource Mode=FindAncestor,AncestorType={x:Type TabItem}},Path=IsSelected}" Value="True">
<Setter TargetName="grid" Property="Background" Value="Green"/>
</DataTrigger>
</DataTemplate.Triggers>
</DataTemplate>
</Setter.Value>
</Setter>
</Style>
</TabControl.Resources>
<TabControl.Background>
<RadialGradientBrush Center="-0.047,0.553" GradientOrigin="-0.047,0.553" RadiusY="1.231" RadiusX="0.8">
<GradientStop Offset="1" Color="#06FFFFFF"/>
<GradientStop Color="#14FFFFFF"/>
</RadialGradientBrush>
</TabControl.Background>
<TabItem Header="Tab Item 1" />
<TabItem Header="Tab Item 2" />
<TabItem Header="Tab Item 3" />
<TabItem Header="Tab Item 4" />
</TabControl>
```
| WPF TabItem Header Styling | CC BY-SA 4.0 | 0 | 2009-10-01T21:19:32.360 | 2019-09-10T20:46:48.577 | 2019-09-10T20:46:48.577 | 2,596,334 | 128,837 | [
"wpf",
"xaml",
"header",
"styles",
"tabcontrol"
] |
1,506,998 | 1 | 1,507,102 | null | 2 | 1,330 | I was wondering what was the look and feel used in the java application
[Violet UML Editor](http://violet.sourceforge.net/). It seem it name is "Blue Vista" but I can't find it on google.
Pictures :


| What is the look and feel of Violet UML Editor | CC BY-SA 2.5 | 0 | 2009-10-01T23:22:39.570 | 2009-10-02T00:13:55.673 | 2009-10-01T23:30:27.853 | 70,604 | 182,804 | [
"java",
"look-and-feel"
] |
1,507,286 | 1 | 1,507,373 | null | 5 | 1,616 | I am new to repository pattern but i tried, my goal is to make a design which will let me easily with just some few edits "dependency injection, or configuration edits" to be able to switch to another ORM without touching other solution layers.
I reached this implementation:

and here is the code:
```
public interface IRepository<T>
{
T Get(int key);
IQueryable<T> GetAll();
void Save(T entity);
T Update(T entity);
// Common data will be added here
}
public interface ICustomerRepository : IRepository<Customer>
{
// Specific operations for the customers repository
}
public class CustomerRepository : ICustomerRepository
{
#region ICustomerRepository Members
public IQueryable<Customer> GetAll()
{
DataClasses1DataContext context = new DataClasses1DataContext();
return from customer in context.Customers select customer;
}
#endregion
#region IRepository<Customer> Members
public Customer Get(int key)
{
throw new NotImplementedException();
}
public void Save(Customer entity)
{
throw new NotImplementedException();
}
public Customer Update(Customer entity)
{
throw new NotImplementedException();
}
#endregion
}
```
usage in my aspx page:
```
protected void Page_Load(object sender, EventArgs e)
{
IRepository<Customer> repository = new CustomerRepository();
var customers = repository.GetAll();
this.GridView1.DataSource = customers;
this.GridView1.DataBind();
}
```
As you saw in the previous code i am now using LINQ to sql, and as you see my code is tied to LINQ to sql, how to change this code design to achieve my goal "be able to change to another ORM easly, for example to ADO.net entity framework, or subsonic"
Please advice with simple sample code
| how to design Repository pattern to be easy switch to another ORM later? | CC BY-SA 2.5 | 0 | 2009-10-02T01:00:39.993 | 2009-10-04T03:23:55.807 | 2017-02-08T14:15:52.533 | -1 | 20,126 | [
"c#",
".net",
"linq-to-sql",
"design-patterns",
"repository-pattern"
] |
1,507,378 | 1 | 1,507,397 | null | 27 | 19,164 | I'm using jQuery UI and the tab control on a series of pages.
It seems like, when loading a page, the tabs initially load as a simple list, then they jump to the tabstrip.
When I initially load the page I get this:

Then, after a few seconds it switches over to this (the way is should be):

Any idea why this is happening? Do I need to load the .js and/or .css files in a particular order? Or, is there a way to hide the initial list and only display the tabs once they are 'loaded'?
| jQuery UI tabs loading first as <ul> then as tabs | CC BY-SA 2.5 | 0 | 2009-10-02T01:34:29.963 | 2019-02-02T20:20:23.257 | 2017-02-08T14:15:53.203 | -1 | 99,401 | [
"jquery-ui"
] |
1,508,231 | 1 | 1,508,408 | null | 1 | 2,584 | I'm working on styling a TabControl on a PC runnnig Windows 7 and everything looked fine, but when I tried running it in Windows XP, I get a hideous white border around the TabControl:

I believe it's the same problem fighting with luna (described here [TabControl without border wpf (XP)](https://stackoverflow.com/questions/952896/tabcontrol-without-border-wpf-xp)), but I'm at a loss as to what to change in the template...
The style for the TabControl is as follows:
```
<Style TargetType="{x:Type TabItem}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type TabItem}">
<Grid>
<Border Name="Border" Margin="0,10,0,-10" BorderBrush="Transparent" BorderThickness="1,1,0,0" CornerRadius="5,0,0,5">
<Border.Background>
<LinearGradientBrush EndPoint="1.407,0.5" StartPoint="-0.407,0.5">
<GradientStop Color="#49000000" Offset="0"/>
<GradientStop Offset="1" Color="#09FFFFFF"/>
</LinearGradientBrush>
</Border.Background>
<ContentPresenter x:Name="ContentSite"
TextBlock.FontSize="15"
TextBlock.Foreground="#22ffffff"
VerticalAlignment="Center"
HorizontalAlignment="Center"
ContentSource="Header"
Margin="5,5,2,5"
RecognizesAccessKey="True">
<ContentPresenter.LayoutTransform>
<RotateTransform Angle="270" />
</ContentPresenter.LayoutTransform>
</ContentPresenter>
</Border>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Panel.ZIndex" Value="100" />
<Setter TargetName="Border" Property="Background" Value="Red" />
<Setter TargetName="Border" Property="BorderThickness" Value="1,1,0,0" />
<Setter TargetName="ContentSite" Property="TextBlock.Foreground" Value="White"/>
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter TargetName="Border" Property="Background" Value="DarkRed" />
<Setter TargetName="Border" Property="BorderBrush" Value="Black" />
<Setter Property="Foreground" Value="DarkGray" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
```
and the actual TabControl' XAML (nothing fancy) is:
```
<TabControl Grid.Row="1" Grid.Column="0" Margin="5,5" TabStripPlacement="Left"
Background="Transparent" HorizontalAlignment="Stretch" BorderThickness="0,0,0,0">
<TabControl.BitmapEffect>
<DropShadowBitmapEffect Color="Black" Direction="270"/>
</TabControl.BitmapEffect>
<TabItem Header="Tab Item 1"/>
<TabItem Header="Tab Item 2"/>
<TabItem Header="Tab Item 3"/>
<TabItem Header="Tab Item 4"/>
</TabControl>
```
any help would be much appreciated!
| WPF TabControl XP Styling Problem | CC BY-SA 2.5 | null | 2009-10-02T07:58:57.237 | 2011-08-15T19:03:35.433 | 2017-05-23T11:45:25.150 | -1 | 128,837 | [
"wpf",
"windows-xp",
"styles",
"tabcontrol"
] |
1,509,712 | 1 | null | null | 1 | 14,935 | i am trying to insert the value in the table by passing the value in a function
like this:
```
public void insert(long r,String s_n,char sex,String sf_n,String sm_n,int c,char sec,long tel,long amount,String add,int age,String house)
{
try{
this.ps=this.con.prepareStatement("insert into s_table values(?,?,?,?,?,?,?,?,?,?,?,?);");
this.ps.setLong(1,r);
this.ps.setString(2,s_n);
this.ps.setObject(3,sex,java.sql.Types.CHAR);
this.ps.setString(4,sf_n);
this.ps.setString(5,sm_n);
this.ps.setInt(6,c);
this.ps.setObject(7,sec,java.sql.Types.CHAR);
this.ps.setLong(8,tel);
this.ps.setLong(9,amount);
this.ps.setString(10,add);
this.ps.setInt(11, age);
this.ps.setString(12,house);
this.ps.executeUpdate();
this.ps.close();
con.close();
}catch(SQLException e){System.out.println("The statement is not established while inserting the element bco'z of "+e.getMessage());
e.printStackTrace();}
}
```
the jsp page model is:
but it is showing data truncation error.
FYI:connection has been established
| error :Data-Truncation while inserting in table | CC BY-SA 2.5 | 0 | 2009-10-02T14:03:26.950 | 2014-07-23T08:48:39.053 | 2017-02-08T14:15:54.557 | -1 | 148,453 | [
"sql",
"jdbc"
] |
1,511,788 | 1 | 1,515,076 | null | 0 | 4,816 | I am trying to use conditional formatting to highlight a row of cells containing key value pairs in another column when certain watch cells are yellow. I have a three columns (A,B,C) containing numeric digits and then two columns (key 1, key2) that is also numeric. Next to the two columns are sensor attribute data that is yellowed under (AB,BC,AC). My code below is supposed to look at athe attribute cells and see under which columns (AB,BC,AC) are yellow. Then it takes the key pairs (key 1, key2) and finds a match in the three column matrix in terms of values and the relative order of the value in the three columns. I've been doing this manually and its so much of a pain I need to try to code it but I don't know if its possible. The problem I have is that the yellowed cells tells the relative order of the key pairs to find the match in the three columns and I do not know how to pull that off.

Sample file here: [http://www.filefactory.com/file/a0egf75/n/Relative_Position_Macro_xls](http://www.filefactory.com/file/a0egf75/n/Relative_Position_Macro_xls)
If anyone can offer me some suggestions, I would really appreciate it.
```
Dim WatchRange As Range, Target As Range, cell As Range
Set WatchRange = Range("C4:H32")
Set Target = Range("J4:J32")
For Each cell In WatchRange.Cells
If ColorIndex: = 6 , A4 = J4, B4 = K4 Then: targetCell.Interior.ColorIndex = 3
Next watchCell
Else: cell.Interior.ColorIndex = xlNone
End If
Next cell
```
End Sub
| Excel VBA Macro Conditional Formatting By Referencing Cell Pair Relative Location | CC BY-SA 2.5 | null | 2009-10-02T21:07:14.980 | 2009-10-04T18:17:56.533 | 2018-07-09T19:34:03.733 | -1 | 180,467 | [
"excel",
"vba"
] |
1,513,383 | 1 | 1,518,907 | null | 4 | 2,897 | I have a number of spherical longitude/latitude coordinates for points on a sphere that I need to visualize. For that purpose, I transformed the points to cartesian coordinates and built a mesh of triangles that I can render with VTK. Works so far.
Now I want to use a texture for the sphere model. Therefore I transformed the spherical coordinates to texture coordinates and assigned these to each point. This works for the majority of the sphere's surface triangles and the result looks acceptable.
But, for the triangles on the opposite side of the prime meridian, where the texture wraps, the triangles are textured incorrectly: Instead of repeating the texture and mapping “over the texture boundary”, the whole texture gets squeezed onto the single triangle.
Here is a picture of how it looks like:

The zick-zack line is obviously wrong, the blue line should be visible instead. The whole texture is mapped on the triangles, resulting in red and white stripes. This makes sense since, for the triangles in question, the texture coordinates span the whole texture space.
To illustrate this problem, which is not specific to spheres but all closed objects, I have created the following figure:

In the upper rectangle, we see a triangle that spans over the texture boundaries with computed texture coordinates A, B and C. Since the texture can be tiled, this is how I would like the triangle to be rendered.
The lower triangle shows how the texture coordinates are interpreted currently. The coordinates of the edges A, B and C are the same, but this time, the majority of the texture is used for the triangle, instead of tiling the texture at the borders.
I am sure there is quite a common mistake I made but I didn't find anything to help me yet. Have any hints for me?
| Texturing error on a Sphere | CC BY-SA 2.5 | 0 | 2009-10-03T09:59:40.130 | 2017-10-08T05:35:28.520 | 2017-09-21T15:15:10.693 | 34,855 | 34,855 | [
"3d",
"geometry",
"textures",
"vtk"
] |
1,513,811 | 1 | 1,513,979 | null | 27 | 54,803 | I started playing around with OpenGL and GLUT. I would like to draw some points, but the problem is that they turn out to be squares, and I would like them to be round dots (filled circles).
This is what I do:
```
void onInitialization( )
{
glEnable( GL_POINT_SMOOTH );
glEnable( GL_BLEND );
glBlendFunc( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA );
glPointSize( 6.0 );
}
void onDisplay()
{
glClearColor( 1.0f, 1.0f, 1.0f, 1.0f );
glClear( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT );
glBegin( GL_POINTS );
glColor3f( 0.95f, 0.207, 0.031f );
for ( int i = 0; i < g_numPoints; ++i )
{
glVertex2f( g_points[i].X, g_points[i].Y );
}
glEnd();
glFinish();
glutSwapBuffers();
}
```
This is the result:

The points show up where expected, only their shape is wrong.
| Getting smooth, big points in OpenGL | CC BY-SA 3.0 | 0 | 2009-10-03T14:00:07.550 | 2019-04-28T07:06:40.043 | 2019-04-27T18:00:52.640 | 2,631,715 | 140,367 | [
"c",
"opengl",
"glut"
] |
1,514,955 | 1 | 1,514,971 | null | 1 | 741 | Microsoft Books Online (BOL) on [Using Change Data](http://msdn.microsoft.com/en-us/library/cc645858.aspx) explains a misleading error messages for `cdc.fn_cdc_get_all_changes_*` & `cdc.fn_cdc_get_net_changes_*` when an invalid, out-of-range LSN (Log Sequence Number) has been passed to them.
---
```
Msg 313, Level 16, State 3, Line 1
An insufficient number of arguments were supplied for the procedure or function `cdc.fn_cdc_get_all_changes_` ...
Msg 313, Level 16, State 3, Line 1
An insufficient number of arguments were supplied for the procedure or function `cdc.fn_cdc_get_net_changes_` ...
```
---
Their explanation on this misleading error message is as following
> Note:
It is recognized that the
message for Msg 313 is misleading and
does not convey the actual cause of
the failure. This awkward usage stems
from the inability to raise an
explicit error from within a TVF.
Nevertheless, the value of returning a
recognizable, if inaccurate, error was
deemed preferable to simply returning
an empty result. An empty result set
would not be distinguishable from a
valid query returning no changes.
Here is a demonstration of what the note meant [RAISERROR](http://msdn.microsoft.com/en-us/library/ms178592.aspx)

There are times when I'd like to throw an error and you cannot use [TRY..CATCH](http://msdn.microsoft.com/en-us/library/ms175976.aspx) within UDF since it also has a side-effect like `RAISERROR`.
Now the is, how do get around this problem?
I am sure that you have faced with this restriction before.
What alternative would you suggest?
---
Let's suppose that you are forced to use `UDF`.
| How to get around UDF restriction on side-effecting operators? | CC BY-SA 2.5 | null | 2009-10-03T21:56:18.057 | 2013-12-06T06:18:12.700 | 2017-02-08T14:15:56.587 | -1 | 4,035 | [
"sql-server",
"tsql",
"user-defined-functions"
] |
1,515,977 | 1 | 1,516,004 | null | 20 | 82,687 | I have some 9000 points that are plotted on a graph:
[[Full resolution](https://imgur.com/WTdmJ.jpg)]

Actually, the plot is not as smooth as I wanted it to be.
Or some form of thresholding so that I can selectively smoothen out the parts that is too bumpy?
I am not sure but can [fast-fourier-transform](http://www.mathworks.com/access/helpdesk/help/techdoc/index.html?/access/helpdesk/help/techdoc/ref/fft.html) help?
| How to smoothen a plot in MATLAB? | CC BY-SA 2.5 | 0 | 2009-10-04T09:03:34.377 | 2014-07-26T16:47:51.753 | null | null | 113,124 | [
"matlab",
"plot",
"smoothing",
"curvesmoothing"
] |
1,516,141 | 1 | 1,516,315 | null | 0 | 305 | What is the syntax to use the [TestDescriptionAttribute][1] of a test to populate the Description column in the Test Results window?
Context: Visual Studio 2008 Team System
I've read the documentation, but am not able to find a concrete example.
Based, loosely, on Ngu's suggestion, I've tried:
```
using GlobalSim;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Microsoft.VisualStudio.TestTools.WebTesting;
namespace GlobalSimTests {
/// <summary>
///This is a test class for PongerTest and is intended
///to contain all PongerTest Unit Tests
///</summary>
[TestClass()]
[TestDescriptionAttribute( "hello" )]
public class PongerTest {
private TestContext testContextInstance;
/// <summary>
///Gets or sets the test context which provides
///information about and functionality for the current test run.
///</summary>
public TestContext TestContext {
get {
return testContextInstance;
}
set {
testContextInstance = value;
}
}
/// <summary>
///A test for Ping
///</summary>
[TestMethod()]
public void PingTest () {
Ponger target = new Ponger();
string expected = "Pong";
string actual;
actual = target.Ping();
Assert.AreEqual( expected, actual );
}
}
}
```
This compiles, but doesn't display the test description in the Description column of the Test Results window.

I've also tried this syntax:
```
/// <summary>
///A test for Ping
///</summary>
[TestMethod()]
[TestDescription( "hello" )]
public void PingTest () {
Ponger target = new Ponger();
string expected = "Pong";
string actual;
actual = target.Ping();
Assert.AreEqual( expected, actual );
}
```
Which returns from the compiler:
Attribute 'TestDescription' is not valid on this declaration type. It is only valid on 'class' declarations.
Here is the syntax that works. Thanks all!
```
/// <summary>
///A test for Ping
///</summary>
[TestMethod()]
[Description( "Hello" )]
public void PingTest () {
Ponger target = new Ponger();
string expected = "Pong";
string actual;
actual = target.Ping();
Assert.AreEqual( expected, actual );
}
```
| VisualStudio.TestTools.WebTesting.TestDescriptionAttribute Syntax | CC BY-SA 2.5 | null | 2009-10-04T10:51:32.407 | 2016-12-29T20:05:46.737 | 2017-02-08T14:15:56.940 | -1 | 90,837 | [
"unit-testing",
"visual-studio-2008",
"attributes",
"mstest"
] |
1,516,296 | 1 | 1,516,330 | null | 15 | 26,608 | As you may be able to tell from [this screenshot](https://i.stack.imgur.com/Rn8a6.jpg), I am trying to make a physics engine for a platformer I am working on, but I have run into a definite problem: I need to be able to find out the angle of any one of the triangles that you can see make up this mesh, so that I can work out the rotation and therefore angular acceleration of the player on that triangle.

I can use an algorithm that I created to find the locations of all 3 points of any triangle that the player is in contact with, but I don't know how to use those points to work out the rotation of the triangle.
By the rotation, I mean the direction of the normal away from the centre of the face, i.e., the angle at which a person would be leaning if they stood on that surface. Can someone come up with a series of equations that will allow for this problem to be solved?
| Find the normal angle of the face of a triangle in 3D, given the co-ordinates of its vertices | CC BY-SA 3.0 | 0 | 2009-10-04T12:29:31.413 | 2015-07-01T12:32:05.977 | 2015-07-01T12:32:05.977 | 815,724 | null | [
"math",
"3d",
"geometry",
"trigonometry"
] |
1,516,560 | 1 | 1,516,641 | null | 1 | 2,013 | I installed sql server 2008 on my windows 7 rtm, but as you see in the screen shot all its services are stop and when i try to start it fail, also when i try to install SP, it give me a big error message.
Is it not possible to install sql 2008 on windows 7 or what should i fix?
feel free to ask me to know more about the problem.

| running sql server 2008 on windows 7 and setup its sp problems | CC BY-SA 2.5 | null | 2009-10-04T14:38:26.743 | 2009-10-04T15:15:25.107 | 2017-02-08T14:15:57.443 | -1 | 20,126 | [
"sql-server-2008",
"windows-7"
] |
1,516,740 | 1 | 1,516,910 | null | 9 | 86,828 | I have this plot
[[Full Resolution](https://imgur.com/WTdmJ.jpg)]

I need to make a straight line at a point on x axis that the and of that vertical line with my plot.
How can this be done in MATLAB?
the user enters 1020 then a straight vertical line will be drawn at 1020 that meets the plot at some point and the coordinates of that point will be shown somehow.
| How to mark a point in a MATLAB plot? | CC BY-SA 2.5 | 0 | 2009-10-04T15:58:12.993 | 2014-10-29T12:43:34.277 | null | null | 113,124 | [
"matlab",
"graph",
"plot",
"intersection"
] |
1,518,620 | 1 | 1,518,681 | null | 7 | 3,183 | Windows 7 Aero Theme has a brand new taskbar [with extensions](http://msdn.microsoft.com/en-us/library/dd378460(VS.85).aspx).

What is the current status of Taskbar Extensions (jump lists, etc.) support in Qt?
| Qt: what is the current status of Windows 7 Taskbar Extensions support? | CC BY-SA 2.5 | 0 | 2009-10-05T07:12:04.177 | 2010-09-12T09:55:03.830 | 2017-02-08T14:15:57.827 | -1 | 13,543 | [
"qt",
"windows-7",
"themes",
"taskbar",
"aero"
] |
1,518,946 | 1 | 1,519,372 | null | 2 | 41,429 | Below is the code to insert value into mysql database, using datagridview.
But the selectcommand is working.It is not happening since i get error stating "Column 'username' cannot be null ".
This error does not pop up if i use ms access database.
Can anyone help me on this. is there any other method to do so.
---
```
private void button1_Click(object sender, EventArgs e)
{ //Even using functions we can easily update the datagridview
//Select_function();
try
{ //The container which displays the details.
dataGridView1.Visible = true;
//The binding object which binds the datagridview with backend.
BindingSource bs = new BindingSource();
//The datatable through which data is exported to datagridview
table = new DataTable();
bs.DataSource = table;
this.dataGridView1.DataSource = bs;
MySqlConnection conn = new MySqlConnection(db);
conn.Open();
string s = "select *from user";
cmd = new MySqlCommand(s, conn);
da = new MySqlDataAdapter();
da.SelectCommand = new MySqlCommand(s, conn);
//There is issue in below sytax of insert command.
MySqlCommand insertcommand = new MySqlCommand("insert into user(username,password) values(@username ,@password)", conn);
insertcommand.Parameters.Add("username",MySqlDbType.VarChar,50,"username");
insertcommand.Parameters.Add("password", MySqlDbType.VarChar, 50, "password");
da.InsertCommand = insertcommand;
//Demonstrates update command
MySqlCommand updatecommand = new MySqlCommand("update user set username=@username,password=@password where (username=@username)", conn);
updatecommand.Parameters.Add("@username", MySqlDbType.VarChar, 50, "username");
updatecommand.Parameters.Add("@password", MySqlDbType.VarChar, 50, "password");
da.UpdateCommand = updatecommand;
//Demonstration of delete Command
MySqlCommand deletecommand = new MySqlCommand("delete from user where username=@username", conn);
deletecommand.Parameters.Add("@username", MySqlDbType.VarChar, 50, "username");
da.DeleteCommand = deletecommand;
da.Fill(table);
conn.Close();
}
catch (Exception err) { MessageBox.Show(err.Message); }
}
private void button2_Click(object sender, EventArgs e)
{ da.Update(table);
}
```
---

| How to insert,delete,select,update values in datagridview in C# using MYSQL | CC BY-SA 3.0 | 0 | 2009-10-05T09:03:02.867 | 2015-06-20T17:57:38.320 | 2015-06-20T17:57:38.320 | 1,159,643 | 128,036 | [
"c#",
"mysql",
"datagridview"
] |
1,520,411 | 1 | 1,520,723 | null | 1 | 783 | I've want to know what is the best practice or approach in dealing with multiple and complex columns with a form inside.
here's an example of the form I'm dealing with

How to properly write a HTML markup for this? If I wrap every form element with a 'DIV' for every column it would take a lot 'DIVs' and styles; and the width for every column that is not repeating.
So what I did is, I put all form element in the table. And I think that is not the standard way to do it.
If your in my shoes,
How would you deal with the columns with non-repeating width?
| Standard and Best practice in dealing with Muliple/Complex Columns with Forms | CC BY-SA 3.0 | 0 | 2009-10-05T14:21:47.967 | 2012-05-17T14:47:30.413 | 2012-05-17T14:47:30.413 | 106,224 | 173,072 | [
"html",
"css",
"standards",
"standards-compliance"
] |
1,522,564 | 1 | 1,527,012 | null | 105 | 761,600 | I used Komodo Edit 5 to write some .py files. My IDE window looks like this:

How do I actually run the .py file to test the program? I tried pressing F5 but it didn't appear to do anything.
I also tried using IDLE, but it seems like you can only run a couple of lines at a time.
| How do I run a Python program? | CC BY-SA 4.0 | 0 | 2009-10-05T21:42:30.373 | 2023-01-18T11:54:58.533 | 2023-01-18T11:54:58.533 | 523,612 | 112,355 | [
"python",
"komodo"
] |
1,523,997 | 1 | 1,524,807 | null | 6 | 9,641 | I'm trying to create a titled border frame in GWT, which results in this:

This can be done using HTML fieldset and legend tags, such as
```
<fieldset>
<legend>Connection parameters</legend>
... the rest ...
</fieldset>
```
I want to create a custom widget in GWT that implements that. I managed to do that, but the problem is that events that happen inside the widget (button click etc) does not get fired although I have added the handler.
My implementation of the widget is as follows:
```
public class TitledPanel extends Widget {
private Element legend;
private Widget content = null;
public TitledPanel() {
Element fieldset = DOM.createFieldSet();
legend = DOM.createLegend();
DOM.appendChild(fieldset, legend);
setElement(fieldset);
}
public TitledPanel(String title) {
this();
setTitle(title);
}
@Override
public String getTitle() {
return DOM.getInnerHTML(legend);
}
@Override
public void setTitle(String html) {
DOM.setInnerHTML(legend, html);
}
public Widget getContent() {
return content;
}
public void setContent(Widget content) {
if (this.content != null) {
DOM.removeChild(getElement(), this.content.getElement());
}
this.content = content;
DOM.appendChild(getElement(), content.getElement());
}
}
```
Do I need to extend Composite, or need to manually reroute the events, or is there other ways?
| Titled frame panel for GWT (using FIELDSET and LEGEND html tags) | CC BY-SA 3.0 | null | 2009-10-06T06:57:29.050 | 2015-06-20T18:25:29.263 | 2015-06-20T18:25:29.263 | 1,159,643 | 11,238 | [
"html",
"gwt",
"event-handling",
"fieldset",
"legend"
] |
1,524,057 | 1 | 1,527,852 | null | 6 | 1,955 | So far it looks like Fabrice Bellard's base 2 equation is the way to go

Ironically this will require a BigReal type; do we have this for .Net? .Net 4.0 has BigInteger.
Anyone have a Haskell version?
| Computing π to "infinite" binary precision in C# | CC BY-SA 2.5 | 0 | 2009-10-06T07:20:38.723 | 2015-11-03T07:53:35.237 | 2017-02-08T14:16:00.897 | -1 | 444,976 | [
"c#",
"haskell",
"pi"
] |
Subsets and Splits