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
| using Chromely.Core.Network; | |
| using System; | |
| using System.Threading; | |
| using USS.Tempus.Shell; | |
| namespace TempusChromely | |
| { | |
| [ControllerProperty(Name = "Shell")] | |
| public class ShellController : ChromelyController | |
| { |
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
| using Newtonsoft.Json; | |
| using Spin.Pillars.FileSystem; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using USS.Tempus.Formats.Progression; | |
| namespace USS.Tempus.Reports | |
| { |
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
| using Microsoft.JSInterop; | |
| using Spin.Pillars.FileSystem; | |
| using System; | |
| using System.Threading.Tasks; | |
| namespace USS.Tempus.Shell | |
| { | |
| public record DialogResponse(bool Cancel, string Value); | |
| public interface IShell |
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
| using Microsoft.JSInterop; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Collections; | |
| namespace Spin.Blazor | |
| { | |
| public class BrowserStorage : IDictionary<string, string> | |
| { |
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
| robear@MinecraftServer:/etc/profile.d$ cat games.sh | |
| function ark(){ | |
| /home/robear/ark.sh | |
| } | |
| function ftb(){ | |
| /home/robear/ftb.sh | |
| } | |
| robear@MinecraftServer:/etc/profile.d$ cat ~/ftb.sh | |
| #! /bin/bash |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.ComponentModel; | |
| using System.Diagnostics; | |
| namespace System.Threading | |
| { | |
| public abstract class Worker : System.Threading.Workers.IWorker |
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
| using System; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text.RegularExpressions; | |
| using Texture = System.Object; | |
| namespace Core3Sandbox | |
| { |
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
| /* | |
| RESULTS ON 7960X | |
| CORE 2.1 | |
| Call 00:00:02.3531091 | |
| Invoke 00:00:02.3209331 | |
| Targeted 00:00:02.3206009 | |
| Targeted Invoke 00:00:02.3417757 | |
| FRAMEWORK 4.7.2 | |
| Call 00:00:02.3320065 |
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 Car { } | |
| class Ford : Car { } | |
| interface ITest | |
| { | |
| Car Foo(); | |
| } | |
| class Covariance : ITest | |
| { |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Text.RegularExpressions; | |
| namespace System.CodeDom | |
| { | |
| public class CsCodeBuilder | |
| { |