[![Screenshot]][Screenshot]
[![Install directly with Stylus][Shield Stylus]][CSS]
- Tricksta's Esix on the front page of e621.net as a mascot.
- Restyled controls on the front page to match the image.
- Small Esix at the bottom of each page.
| <Application x:Class="AwaitableCaliburnExample.App" | |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
| xmlns:local="clr-namespace:AwaitableCaliburnExample"> | |
| <Application.Resources> | |
| <ResourceDictionary> | |
| <ResourceDictionary.MergedDictionaries> | |
| <ResourceDictionary Source="Styles.xaml"/> | |
| <ResourceDictionary> | |
| <local:AppBootstrapper x:Key="Bootstrapper"/> |
| using System; | |
| using System.Threading; | |
| using System.Windows; | |
| using System.Windows.Input; | |
| namespace AwaitableCommandExample | |
| { | |
| public partial class App | |
| { | |
| protected override async void OnStartup(StartupEventArgs e) |
| Iterating over 1000 ints | |
| ------------------------ | |
| PHP [for] 0.00006 sec x1.0 (100%) | |
| PHP [array functions] 0.00011 sec x1.8 (+83%) | |
| YaLinqo 0.00022 sec x3.7 (+267%) | |
| Ginq 0.00077 sec x12.8 (+1183%) | |
| Pinq 0.00040 sec x6.7 (+567%) | |
| Generating array of 1000 integers | |
| --------------------------------- |
| <?php | |
| function oops ($message = '') | |
| { | |
| http_response_code(400); | |
| die($message); | |
| } | |
| function get_json ($url) | |
| { |
| using System; | |
| using System.Windows; | |
| using System.Windows.Controls; | |
| using System.Windows.Media.Imaging; | |
| class Program | |
| { | |
| [STAThread] | |
| static void Main () | |
| { |
| @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); | |
| @-moz-document url("about:fvdsddials") { | |
| /* Hide search bar */ | |
| #searchBar { | |
| display: none !important; | |
| } | |
| /* Bigger group headers, fixed padding */ | |
| #groups_list label { |
| type | |
| TStringBuilder = class | |
| private const | |
| DefaultCapacity = $10; | |
| private | |
| function GetCapacity: Integer; | |
| procedure SetCapacity(Value: Integer); | |
| function GetChars(Index: Integer): Char; | |
| procedure SetChars(Index: Integer; Value: Char); | |
| function GetLength: Integer; inline; |
| // Type: System.Text.StringBuilder | |
| // Assembly: mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 | |
| // Assembly location: C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll | |
| using System; | |
| using System.Diagnostics; | |
| using System.Globalization; | |
| using System.Runtime.CompilerServices; | |
| using System.Runtime.InteropServices; | |
| using System.Runtime.Serialization; |