This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public IBar CreateBar(FooBar desired) | |
{ | |
IFoo foo = FooFactory.CreateFoo(desired.foo); | |
return foo.CreateBar(desired.bar); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--[if | |
IE]><acronym | |
title="???">???</acronym><![endif]--><!--[if | |
!IE]> <--><abbr | |
title="???">???</abbr><!--> | |
<![endif]--> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--[if lt IE 7]> | |
<style type="text/css" | |
media="screen">@import | |
url( iescreen.css );</style> | |
<![endif]--> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--[if lt IE 7]><acronym | |
title="???">???</acronym><span | |
class="not"><![endif]--><abbr | |
title="???">???</abbr><!--[if | |
lt IE 7]></span | |
class="not"><![endif]--> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
acronym {border-bottom:1px | |
dotted #000;cursor:help} | |
div#content | |
{width:expression( | |
document.body.clientWidth | |
> 670+parseInt( | |
document.body.currentStyle.fontSize | |
)*2 ? "670px": "auto" );} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var mailtext= ''; | |
while( data[idx]!=n ) { | |
mailtext+=% + (data[idx++]^n).toString(16); | |
} | |
idx++; | |
document.getElementById('mailtag').lastChild.setAttribute( | |
'href', unescape(mailtext)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var mailtext= ''; | |
while( data[idx]!=n ) { | |
mailtext+=String.fromCharCode(data[idx++]^n); | |
} | |
idx++; | |
document.getElementById('mailtag').lastChild.setAttribute( | |
'href', mailtext); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" | |
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" | |
[ <!ATTLIST html id ID #IMPLIED > ] > |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from java import lang | |
class Backplane(lang.Object): | |
def performSetup(self, arg): | |
"@sig public void performSetup(java.lang.String arg)" | |
... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java | |
import java.lang | |
class Backplane(java.lang.Object): | |
def performSetup(self, arg): | |
"@sig public void performSetup(java.lang.String arg)" | |
... |
OlderNewer