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
Mike, | |
My previous email to you regarding the refund for http://hasthelargehadroncolliderdestroyedtheworldyet.com/ | |
being incorrect was apparently leaked onto the internet. The resulting shift in temporal | |
phase has lead to some interesting changes. Most notably the "temporal blowback" still occurs, | |
however the tachyon field disintegration doesn't. Instead our instruments that come back with | |
us registered a 0.00121 milli-ampre increase in the anti-neutrino singularity. While this | |
may not sound like a lot, this small amount is enough to cause any number of strange | |
phenomenon. While it's unlikely the planet is actually physically destroyed, as it was in |
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
ruby 1.8.7 (2008-08-11 patchlevel 72) [i486-linux] | |
.................................................EEEEEEEEEEEEEEEEEEEEEEEEE..............................................E...........................................................................................................................................................................................................................................................................F.........F......................F.........................................................................................................................................................................................................................................................................................................................................................................F............................................................................................................................................................................................ |
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
enable mod_proxy | |
install and enable mod_proxy_html | |
example Apache.conf reverse proxying */integrity to the integrity web server: | |
<VirtualHost *> | |
<Proxy *> | |
Order deny,allow | |
Allow from all | |
</Proxy> |
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
.assembly Example {} | |
.assembly extern mscorlib {} | |
.namespace ExampleNameSpace | |
{ | |
.class public ExampleClass | |
{ | |
.method public virtual instance bool EqualOverride(object obj) |
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 partial class App : Application | |
{ | |
private static bool _bIsBlackSkin = true; | |
public App() | |
{ | |
Window window = (Window)System.Windows.Markup.XamlReader.Load(new System.IO.FileStream("Window1.xaml", System.IO.FileMode.Open)); | |
System.Windows.Controls.Button button = ((System.Windows.Controls.Button)window.FindName("ToggleSkin")); | |
window.Closed += new EventHandler(window_Closed); | |
button.Click +=new RoutedEventHandler(ToggleSkin_Click); | |
this.Run(window); |
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
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string s = "foo"; | |
Action result = | |
s == "bar" ? (Action)(() => { Console.WriteLine("bar"); }): | |
s == "foo" ? (Action)(() => { Console.WriteLine("foo"); }) : | |
(Action)(() => { Console.WriteLine(); }); |
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
namespace Test | |
{ | |
class Test | |
{ | |
public delegate void MyDelegate(); | |
public void TestMethod() | |
{ | |
TestMethod2( delegate() | |
{ | |
goto outLabel; |
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
irb(main):001:0> a = [1, 2, 3] | |
=> [1, 2, 3] | |
irb(main):002:0> a[1] | |
=> 2 | |
irb(main):003:0> a[0] + 1 | |
=> 2 | |
irb(main):004:0> a[1] + 1 | |
=> 3 | |
irb(main):005:0> a = ["1", "2", "3"] | |
=> ["1", "2", "3"] |
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 class Foo | |
{ | |
private baz a; | |
private baz b; | |
private baz c; | |
public void Bar(Fargle f) | |
{ |
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
lock(something) | |
{ | |
try | |
{ | |
if(foo) { Bar(); } | |
else { Baz(); } | |
} | |
catch | |
{ | |
Bampf(); |
OlderNewer