I hereby claim:
- I am xanathar on github.
- I am xanathar (https://keybase.io/xanathar) on keybase.
- I have a public key ASDfOxyAg1rjE0mIvUeDO3OVbP5bXw7q6Whv-1Lw2vS9ogo
To claim this, I am signing this object:
{ | |
// The following are sample configurations for common case scenarios of debugging | |
// Rust in Visual Studio Code | |
// | |
// For syntax, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
// | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Launch an application", |
use std::collections::VecDeque; | |
use crate::errors::{ Result, Error }; | |
use crate::langvalue::LangValue; | |
// Grammar | |
// | |
// name := <string> | |
// condop: GreaterThan | LessThan | GreaterThanEqual | LessThanEqual | Equals | NotEquals | Contains | |
// notop := Not |
I hereby claim:
To claim this, I am signing this object:
#! /bin/bash | |
sudo modprobe v4l2loopback exclusive_caps=1 | |
ffmpeg -f v4l2 -input_format mjpeg -pix_fmt=yuyv422 -i /dev/video0 -vf "vflip" -f v4l2 /dev/video1 |
NullReferenceException: Object reference not set to an instance of an object | |
at OEIFormats.ClassExtender.GetExtendedPropertyValue (System.String propertyName) [0x00000] in <filename unknown>:0 | |
at Game.FlowChartPlayer..ctor (Game.FlowChart flowChart, Int32 startNodeID, UnityEngine.GameObject ownerObject) [0x00000] in <filename unknown>:0 | |
at Game.ConversationManager.StartConversation (Game.Conversation conversation, Int32 startNode, UnityEngine.GameObject owner, Boolean disableVO) [0x00000] in <filename unknown>:0 | |
at Game.ConversationManager.StartConversation (Guid conversationID, Int32 startNode, UnityEngine.GameObject owner, Boolean disableVo) [0x00000] in <filename unknown>:0 | |
at Game.ConversationManager.StartConversation (Guid conversationID, Int32 startNode, UnityEngine.GameObject owner) [0x00000] in <filename unknown>:0 | |
at Game.FlowChart.MoveToNode (Int32 nodeID, Game.FlowChartPlayer player) [0x00000] in <filename unknown>:0 | |
at Game.Conversation.StartFlowChart (Game.FlowChartPlayer play |
{ | |
"\UF729" = moveToBeginningOfLine:; // home | |
"\UF72B" = moveToEndOfLine:; // end | |
"$\UF729" = moveToBeginningOfLineAndModifySelection:; // shift-home | |
"$\UF72B" = moveToEndOfLineAndModifySelection:; // shift-end | |
"#," = ("insertText:", "."); // dot keypad | |
} | |
#! /bin/bash | |
if [ $# -eq 0 ]; then | |
FILE1=$(winepath -w . 2>/dev/null) | |
wine "C:\program files (x86)\WinMerge\WinMergeU.exe" "$FILE1" | |
elif [ $# -eq 1 ]; then | |
FILE1=$(winepath -w "$1" 2>/dev/null) | |
wine "C:\program files (x86)\WinMerge\WinMergeU.exe" "$FILE1" | |
else | |
FILE1=$(winepath -w "$1" 2>/dev/null) |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Net.Http; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using System.Web; | |
using System.Web.Http.ExceptionHandling; | |
using Castle.Core.Logging; |
// | |
// main.cpp | |
// LuaTests | |
// | |
// Created by Marco Mastropaolo on 08/06/16. | |
// Copyright © 2016 Marco Mastropaolo. All rights reserved. | |
// | |
#include <iostream> | |
#include "../include/lua.hpp" |
using MoonSharp.Interpreter; | |
using System; | |
namespace Test | |
{ | |
class Program | |
{ | |
private static void CaptureNewIndex(Table table, DynValue index, DynValue value) | |
{ | |
if (index.String == "math") |