- A Useless Gesture (V)
- Affect Mind (V)
- Clumsy And Stupid
- Crossfire (Endor) (V)
- Crossfire (V)
- Death Star Sentry (V)
- Don't Do That Again (Tatooine) (V)
- Don't Do That Again (V)
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.Runtime.CompilerServices; | |
using System.Runtime.InteropServices; | |
namespace Piranha.Jawbone; | |
file static class UnmanagedQueueExtensions | |
{ | |
public static Span<byte> Write<T>( |
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
// https://en.wikipedia.org/wiki/XXTEA#Reference_code | |
// https://crypto.stackexchange.com/a/12997/50663 | |
public static class Xxtea | |
{ | |
private const uint Delta = 0x9e3779b9; | |
private static uint Mx( | |
ReadOnlySpan<uint> key, | |
uint z, | |
uint y, |
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.Diagnostics; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
using System.Threading; | |
using System.Threading.Tasks; | |
namespace FileScopeNamespacer; |
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.Concurrent; | |
using System.Collections.Generic; | |
using System.Collections.Immutable; | |
using System.Linq; | |
using System.Runtime.CompilerServices; | |
using LanguageExt; | |
namespace Kelly; |
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
static void ConvertLine(string line) | |
{ | |
const string Define = "#define "; | |
if (!line.StartsWith(Define)) | |
return; | |
var begin = Define.Length; | |
var end = begin; |
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.Text; | |
namespace Kelly.Digits; | |
static class Program | |
{ | |
static string Divide(long dividend, long divisor, int maxCycles = 128) | |
{ |
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
#!/bin/sh | |
set -x | |
if [ 64 = "`getconf LONG_BIT`" ] | |
then | |
libdir='lib64' | |
else | |
libdir='lib' | |
fi |
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
// To view the default settings, hold "alt" while clicking on the "Settings" button. | |
// For documentation on these settings, see: https://aka.ms/terminal-documentation | |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{1415b9b5-ffe4-4333-94c5-9b7e93d12c35}", | |
"profiles": |
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.Diagnostics; | |
using System.IO; | |
using System.IO.Pipes; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace PipeDream2020 | |
{ | |
class Program |
NewerOlder