Skip to content

Instantly share code, notes, and snippets.

View igentuman's full-sized avatar
🤖
Development

Sergey igentuman

🤖
Development
View GitHub Profile
@igentuman
igentuman / install_3proxy.sh
Last active August 15, 2024 20:30
UBUNTU install 3proxy server
#!/bin/bash
echo -n "Enter Proxy Username: "
read PROXYUSER
echo -n "Enter Proxy Password: "
read PROXYPASS
echo -n "Enter Proxy Port (Default 9128): "
read PROXYPORT
DEFAULTNS=$(cat /etc/resolv.conf | gawk 'match($0, /nameserver\s([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)/, a) {print a[1]}')
echo -n "Enter nameserver from /etc/resolv.conf (Autodected $DEFAULTNS): "
read DNS
@igentuman
igentuman / BodySourceManager.cs
Created December 21, 2015 14:38
FaceToCam unity3d
using UnityEngine;
using System.Collections;
using Windows.Kinect;
public class BodySourceManager : MonoBehaviour
{
private KinectSensor _Sensor;
private BodyFrameReader _Reader;
private Body[] _Data = null;