Skip to content

Instantly share code, notes, and snippets.

View EgorBo's full-sized avatar
🛠️
Working from home

Egor Bogatov EgorBo

🛠️
Working from home
View GitHub Profile
System.Net.Sockets.SocketException occurred
HResult=0x80004005
Message=An existing connection was forcibly closed by the remote host
Source=<Cannot evaluate the exception source>
StackTrace:
at System.Net.Sockets.Socket.DoBeginReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint endPointSnapshot, SocketAddress socketAddress, OriginalAddressOverlappedAsyncResult asyncResult) in F:\CCCC\corefx\src\System.Net.Sockets\src\System\Net\Sockets\Socket.cs:line 3535
at System.Net.Sockets.Socket.BeginReceiveFrom(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags, EndPoint& remoteEP, AsyncCallback callback, Object state) in F:\CCCC\corefx\src\System.Net.Sockets\src\System\Net\Sockets\Socket.cs:line 3477
at System.Net.Sockets.UdpClient.BeginReceive(AsyncCallback requestCallback, Object state) in F:\CCCC\corefx\src\System.Net.Sockets\src\System\Net\Sockets\UDPClient.cs:line 376
at System.Net.Sockets.UdpClient.<>c.<ReceiveAsync>b__56_0(AsyncCallback callbac
@EgorBo
EgorBo / load image.cs
Created July 18, 2017 18:26
load image.cs
byte[] imageBytes = ... //png,jpg, etc..
var image = new Image();
image.Load(new Urho.MemoryBuffer(imageBytes));
var texture = new Texture2D();
texture.SetData(image, true);
var material = new Material();
material.SetTechnique(0, CoreAssets.Techniques.Diff, 0, 0);
@EgorBo
EgorBo / shader.metal
Created July 24, 2017 13:16
shader.metal
// Captured image fragment function
fragment float4 capturedImageFragmentShader(ImageColorInOut in [[stage_in]],
texture2d<float, access::sample> capturedImageTextureY [[ texture(kTextureIndexY) ]],
texture2d<float, access::sample> capturedImageTextureCbCr [[ texture(kTextureIndexCbCr) ]]) {
constexpr sampler colorSampler(mip_filter::linear,
mag_filter::linear,
min_filter::linear);
const float4x4 ycbcrToRGBTransform = float4x4(
@EgorBo
EgorBo / ARCamera.cs
Created July 24, 2017 16:52
ARCamera.cs
protected override void OnUpdate(float timeStep)
{
var frame = arSession?.CurrentFrame;
if (frame == null)
return;
var arcamera = frame.Camera;
var transform = arcamera.Transform;
var projection = arcamera.ProjectionMatrix;
@EgorBo
EgorBo / CVPixelBuffer issue.cs
Last active July 25, 2017 22:08
CVPixelBuffer issue.cs
// called 60 times per second (60fps)
unsafe void DisplayBackground(CVPixelBuffer capturedImage)
{
capturedImage.Lock(CVPixelBufferLock.None);
var baseAddress = capturedImage.BaseAddress;
var format = capturedImage.PixelFormatType; //CV420YpCbCr8BiPlanarFullRange
var width = (int)capturedImage.Width; //1280
var height = (int)capturedImage.Height; //720
2017-07-25 22:09:39.428 Playgrounds.iOS[11144:809859] critical: Stacktrace:
2017-07-25 22:09:39.429 Playgrounds.iOS[11144:809859] critical: at <unknown> <0xffffffff>
2017-07-25 22:09:39.430 Playgrounds.iOS[11144:809859] critical: at (wrapper managed-to-native) CoreVideo.CVBuffer.CVBufferRelease (intptr) <0x00007>
2017-07-25 22:09:39.440 Playgrounds.iOS[11144:809913] -[__NSCFType trackingState]: unrecognized selector sent to instance 0x1c473dec0
2017-07-25 22:09:39.441 Playgrounds.iOS[11144:809859] critical: at CoreVideo.CVBuffer.Dispose (bool) [0x00015] in /Users/builder/data/lanes/5024/218eee7c/source/xamarin-macios/src/CoreVideo/CVBuffer.cs:116
2017-07-25 22:09:39.441 Playgrounds.iOS[11144:809859] critical: at CoreVideo.CVBuffer.Finalize () [0x00000] in /Users/builder/data/lanes/5024/218eee7c/source/xamarin-macios/src/CoreVideo/CVBuffer.cs:94
2017-07-25 22:09:39.442 Playgrounds.iOS[11144:809859] critical: at (wrapper runtime-invoke) object.runtime_invoke_virtual_void__this__ (object,intptr,intptr
@EgorBo
EgorBo / shader.glsl
Created July 26, 2017 11:38
shader.glsl
#include "Uniforms.glsl"
#include "Samplers.glsl"
#include "Transform.glsl"
#include "ScreenPos.glsl"
varying highp vec2 vScreenPos;
void VS()
{
mat4 modelMatrix = iModelMatrix;
@EgorBo
EgorBo / test.cs
Created July 28, 2017 12:21
test.cs
[DllImport("foo", CallingConvention = CallingConvention.Cdecl)]
static extern int GetHashNative(string str);
static int GetHashManaged(string str)
{
int hash = 0;
if (string.IsNullOrEmpty(str))
return hash;
for (int i = 0; i < str.Length; i++)
@EgorBo
EgorBo / bug.cs
Last active August 3, 2017 01:03
bug.cs
using System;
using System.Data.SqlClient;
namespace sqldata
{
class MainClass
{
public static void Main(string[] args)
{
for (int i = 0; i < 200; i++)
@EgorBo
EgorBo / compmodeattrs.cs
Created August 10, 2017 16:04
compmodeattrs.cs
[System.ComponentModel.BrowsableAttribute(false)]
[System.ComponentModel.DefaultValueAttribute(true)]
[System.ComponentModel.DesignOnlyAttribute(true)]
[System.ComponentModel.DisplayNameAttribute("ApplicationIntent")]
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
[System.ComponentModel.DesignerSerializationVisibilityAttribute((System.ComponentModel.DesignerSerializationVisibility)(2))]
[System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
[System.ComponentModel.RecommendedAsConfigurableAttribute(true)]
[System.ComponentModel.DefaultPropertyAttribute("DataSource")]