This file contains 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
powerproxy.airstrike: | |
AirstrikePower: | |
Image: bombicnh | |
ChargeTime: 240 | |
Description: Air Strike | |
LongDesc: Deploy an aerial napalm strike.\nBurns buildings and infantry along a line. | |
EndChargeSound: airredy1.aud | |
SelectTargetSound: select1.aud | |
UnitType: a10 |
This file contains 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
#region Copyright & License Information | |
/* | |
* Copyright 2007-2012 The OpenRA Developers (see AUTHORS) | |
* This file is part of OpenRA, which is free software. It is made | |
* available to you under the terms of the GNU General Public License | |
* as published by the Free Software Foundation. For more information, | |
* see COPYING. | |
*/ | |
#endregion |
This file contains 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
#region Copyright & License Information | |
/* | |
* Copyright 2007-2012 The OpenRA Developers (see AUTHORS) | |
* This file is part of OpenRA, which is free software. It is made | |
* available to you under the terms of the GNU General Public License | |
* as published by the Free Software Foundation. For more information, | |
* see COPYING. | |
*/ | |
#endregion |
This file contains 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
diff -upa steam-1.0.0.22/usr/bin/steamdeps.rpmnames steam-1.0.0.22/usr/bin/steamdeps | |
--- steam-1.0.0.22/usr/bin/steamdeps.rpmnames 2013-02-07 11:07:03.935551942 -0500 | |
+++ steam-1.0.0.22/usr/bin/steamdeps 2013-02-07 11:08:23.219557155 -0500 | |
@@ -280,6 +280,54 @@ def checkConfig( config ): | |
return True | |
+### | |
+def debtorpm( val ): | |
+ arch32 = ':i386' |
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<assemblies> | |
<assembly name="ICSharpCode.SharpZipLib" version="0.86.0.518"> | |
<attributes> | |
<attribute name="System.Reflection.AssemblyTitleAttribute"> | |
<properties> | |
<property name="Title" value="SharpZipLib for .NET Framework 1.1" /> | |
</properties> | |
</attribute> | |
<attribute name="System.Reflection.AssemblyDescriptionAttribute"> |
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<assemblies> | |
<assembly name="ICSharpCode.SharpZipLib" version="0.86.0.518"> | |
<attributes> | |
<attribute name="System.Reflection.AssemblyTitleAttribute"> | |
<properties> | |
<property name="Title" value="SharpZipLib for .NET Framework 1.1" /> | |
</properties> | |
</attribute> | |
<attribute name="System.Reflection.AssemblyDescriptionAttribute"> |
This file contains 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
void GetNetworkStats(string host, int pingAmount, int timeout, out int averagePing, out int packetLoss) | |
{ | |
Ping pingSender = new Ping(); | |
PingOptions options = new PingOptions(); // default is: don't fragment and 128 Time-to-Live | |
string data = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"; | |
byte[] buffer = Encoding.ASCII.GetBytes(data); // 32 bytes of data | |
var failedPings = 0; | |
var latencySum = 0; |
This file contains 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 ClassicProductionQueueInfo : ProductionQueueInfo, Requires<TechTreeInfo>, Requires<PowerManagerInfo>, Requires<PlayerResourcesInfo> | |
{ | |
public readonly bool SpeedUp = false; | |
public readonly int BuildTimeSpeedUpDivisor = 2; | |
public readonly int MaxBuildTimeReductionSteps = 6; | |
public override object Create(ActorInitializer init) { return new ClassicProductionQueue(init.self, this); } | |
} | |
[...] |
This file contains 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> | |
<html> | |
<head> | |
<title>OpenRA Master Server</title> | |
</head> | |
<body> | |
<h1>OpenRA Master Server</h1> | |
<div id="list"></div> | |
<script type="text/javascript" src="jquery.js"></script> |
This file contains 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> | |
<html> | |
<head> | |
<title>OpenRA Master Server</title> | |
</head> | |
<body> | |
<h1>OpenRA Master Server</h1> | |
<script type="text/javascript" src="jquery-1.9.1.js"></script> |
OlderNewer