Skip to content

Instantly share code, notes, and snippets.

@msarchet
msarchet / plexer.js
Created June 30, 2019 19:19
A Dexplexer example for working with orca on multiple port
const dgram = require('dgram')
const PortMaps = require('./portmaps.json')
this.server = dgram.createSocket('udp4')
this.listener = dgram.createSocket('udp4')
this.listener.on('message', (msg, rinfo) => {
let parts = `${msg}`.split("M")
let maps = parts[0].split("")
@msarchet
msarchet / SelfServer.js
Last active November 2, 2016 05:35
A Javascript file that acts as both a nodejs webserver and the index.html for the site that it serves
//<html>
// <head>
// <title>Self Server</title>
// </head>
// <body>
// <h1>Explanation here: https://gist.github.com/msarchet/d630edffda1522fa8dc0ad238969fdc0</h1>
// <script type='text/javascript'>
// var process = { env: { server: false } }
if (process.env.server) {
const http = require('http')
@msarchet
msarchet / Test.xaml
Created June 24, 2016 17:26
Template-10-UnitTest-Failure
<UserControl
x:Class="DebugCheck.Views.Test"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:DebugCheck.Views"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="300"
d:DesignWidth="400">
@msarchet
msarchet / index.html
Created June 24, 2014 15:31
angular strict
<div ng-app='app' ng-strict-di>
<ng-view></ng-view>
</div>
@msarchet
msarchet / app.js
Last active August 29, 2015 14:02
Flannel. Extendable logging module for angular
(function () {
function homeController(logger) {
logger.log('thing', 123, {
123: 123
});
logger.warn('thing', 123, {
123: 123
});
logger.info('thing', 123, {
123: 123
@msarchet
msarchet / keybase.md
Created May 23, 2014 16:57
keybase.md

Keybase proof

I hereby claim:

  • I am msarchet on github.
  • I am msarchet (https://keybase.io/msarchet) on keybase.
  • I have a public key whose fingerprint is DDD4 7FBD B89E 77D4 42C8 30DE A230 02A9 9BBF 2810

To claim this, I am signing this object:

@msarchet
msarchet / test.html
Created February 20, 2014 18:22
test angular template
<div>
{{test}}
</div>
using System;
namespace Sandbox
{
class Program
{
static void Main(string[] args)
{
// Annoying to have to check Value all the time
Console.WriteLine(Person.LazyPerson.Value == Person.LazyPerson.Value);
public class LayoutController : ApiController
{
[HttpGet]
[Route("", Name = "Index")]
public async Task<HttpResponseMessage> LayoutHtml()
{
var path = HttpContext.Current.IsDebuggingEnabled
? HttpContext.Current.Server.MapPath("~/App/Views/Index.html")
: HttpContext.Current.Server.MapPath("~/App/View/Index_Release.html");
var file = await File.OpenText(path).ReadToEndAsync();
@msarchet
msarchet / BaseActionResult.cs
Last active January 2, 2016 17:59
Generic Inheritance
namespace Services.Core.HttpActionResult
{
using System.Web.Http;
using System.Net.Http;
using System.Threading.Tasks;
public abstract class BaseActionResult : IHttpActionResult
{
protected readonly HttpRequestMessage request;
protected readonly Task task;