Slipknot light

rated

0
Submitted by user6863

<?xml version=”1.0″ encoding=”utf-8″?>
<colorTheme id=”454″ name=”Sinkpoint light” modified=”2011-02-25 04:20:48″ author=”sinkpoint” website=”http://sinkpoint.com”>;
<searchResultIndication color=”#D8D8D8″ />
<filteredSearchResultIndication color=”#D8D8D8″ />
<occurrenceIndication color=”#000000″ />
<writeOccurrenceIndication color=”#000000″ />
<sourceHoverBackground color=”#D8D8D8″ />
<singleLineComment color=”#AAAAAA” />
<multiLineComment color=”#AAAAAA” />
<commentTaskTag color=”#FF3300″ />
<javadoc color=”#FF3300″ />
<javadocLink color=”#990099″ />
<javadocTag color=”#990099″ />
<javadocKeyword color=”#990099″ />
<class color=”#CC0000″ bold=”true” />
<interface color=”#666666″ />
<method color=”#000099″ />
<methodDeclaration color=”#000099″ />
<bracket color=”#000099″ />
<number color=”#0000FF” />
<string color=”#008800″ bold=”true” />
<operator color=”#0000FF” />
<keyword color=”#0000FF” />
<annotation color=”#990000″ />
<staticMethod color=”#990000″ />
<localVariable color=”#0066FF” />
<localVariableDeclaration color=”#000099″ />
<field color=”#000099″ />
<staticField color=”#552200″ />
<staticFinalField color=”#552200″ />
<deprecatedMember color=”#D8D8D8″ />
<enum color=”#FF0000″ />
<inheritedMethod color=”#000099″ />
<abstractMethod color=”#000099″ />
<parameterVariable color=”#0000FF” />
<typeArgument color=”#0000FF” />
<typeParameter color=”#006600″ />
<constant color=”#552200″ />
<background color=”#FAFAFA” />
<currentLine color=”#D8D8D8″ />
<foreground color=”#333333″ />
<lineNumber color=”#D8D8D8″ />
<selectionBackground color=”#D8D8D8″ />
<selectionForeground color=”#333333″ />
</colorTheme>

Do you like it? Hot or
not

for

We’re using the default font. Log in to change your preferred font



C# code

#region Studio Style
class Program : IThemeable
{
    static int _I = 1;
    delegate void DoSomething();

    /// <summary>
    /// The quick brown fox jumps over the lazy dog
    /// THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG
    /// </summary>
    static void Main(string[] args)
    {
        string normalStr = "The time now is approximately " + DateTime.Now;
        Uri Illegal1Uri = new Uri("http://packmyboxwith/jugs.html?q=five-dozen&t=liquor");
        Regex OperatorRegex = new Regex(@"S#$", RegexOptions.IgnorePatternWhitespace);

        for (int O = 0; O < 123456789; O++)
        {
            _I += (O % 3) * ((O / 1) ^ 2) - 5;
            if (!OperatorRegex.IsMatch(Illegal1Uri.ToString()))
            {
                // no idea what this does!?
                Console.WriteLine(Illegal1Uri + normalStr);
            }
        }
    }
}
#endregion


HTML / ASP.NET (with CSS and Javascript)

<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<List<Person>>" %>
<!DOCTYPE html>
<html>
<head>
    <title>Studio Style ASP.NET</title>
    <style type="text/css">
    .people {
        font-family: 'Arial Narrow';
        font-size: 100% !important; /* comment */
    }
    </style>
</head>
<body>
    <h1>A test page</h1>
    <!-- list of people -->
    <ul class="people">
    <% foreach(Person person in Model) { %>
        <li>
            <%: person.Name %> &gt; (<%: Html.ActionLink("edit", "Edit", new { id = 1 }) %>)
        </li>
    <% } %>
    </ul>

    <script type="text/javascript">
        // TODO: use jQuery instead
        window.onload = function() {
            for(var i = 0; i < 23; i++) {
                alert("Hello");
            }
        }
    </script>
</body>
</html>


XML

<?xml version="1.0" encoding="utf-8" ?>
<!-- this is an example XML file -->
<people xmlns:x="http://studiostyles.info">
  <person name="Jim Jones" ID="27">
    <email html="yes">[email protected]</email>
    <address>
      <post>123 Example St, &#160;South Brisbane</post>
      <city>Brisbane</city>
    </address>
    <x:comments>
    <![CDATA[ See? Data. Don't worry about this <tag>. ]]>
    </x:comments>
  </person>
</people>


XAML

<Window x:Class="WpfApplication1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="100" Width="300">
    <Grid>
        <!-- A comment -->
        <StackPanel HorizontalAlignment="Left">
            <Button Click="Clicked">A button</Button>
            <StackPanel.Resources>
                <Style TargetType="{x:Type Button}">
                    <Setter
                         Property="Rectangle.Stroke"
                         Value="{DynamicResource {x:Static SystemColors.ControlBrush}}" />
                </Style>
            </StackPanel.Resources>
        </StackPanel>
        <x:Code>
            <![CDATA[
            void Clicked(object sender, RoutedEventArgs e) {
                ((Button)sender).Content = "Hello World";
            }
            ]]>
        </x:Code>
    </Grid>
</Window>





schemes