This file contains 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
// ==UserScript== | |
// @name ELKA | |
// @namespace http://tampermonkey.net/ | |
// @version 2024-10-06 | |
// @description try to take over the world! | |
// @author You | |
// @match *://*/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=magic-seasons2024.com | |
// @grant none | |
// ==/UserScript== |
This file contains 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/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 |
This file contains 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 UnityEngine; | |
using System.Collections; | |
using Windows.Kinect; | |
public class BodySourceManager : MonoBehaviour | |
{ | |
private KinectSensor _Sensor; | |
private BodyFrameReader _Reader; | |
private Body[] _Data = null; | |