Skip to content

Instantly share code, notes, and snippets.

View AlexTiTanium's full-sized avatar

Alex Kucherenko AlexTiTanium

View GitHub Profile
@AlexTiTanium
AlexTiTanium / Port forward for node js
Last active December 24, 2015 17:09
Port forward for node js
sudo iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-ports 3000
#!/bin/bash
##############ADD NEW USER##############
HOME_BASE="/home/"
read -p "Enter username : " username
useradd -m -d ${HOME_BASE}$username -s /bin/false $username
chown root:root ${HOME_BASE}$username
#!/bin/bash
##############ADD NEW HOST ##############
HOME_BASE="/home/"
read -p "Enter username : " username
read -p "New host name : " hostname
mkdir ${HOME_BASE}$username/$hostname
mkdir ${HOME_BASE}$username/$hostname/public_html
mkdir ${HOME_BASE}$username/$hostname/log
using System.Collections.Generic;
using UnityEngine;
using System.Collections;
[RequireComponent(typeof(SelectLevelDataSource))]
public class SelectLevelSwipe : MonoBehaviour, IGuiMove, IGuiTouch
{
const float SWIPE_MAX_DURATION = 0.3f;
//**************************************************************************
@AlexTiTanium
AlexTiTanium / gist:6051128
Created July 22, 2013 03:28
Yield example
using System.Collections.Generic;
using UnityEngine;
using System.Collections;
public class GuiTouchListener : RuntimeInteractiveObject
{
const float SWIPE_MIN_LENGTH = 25.0f;
const float TOUCH_BEGIN_DELAY = 0.03f;
// Events methods names
//
// OrdersTableView.m
// apptools
//
// Created by Alex on 5/29/13.
// Copyright (c) 2013 YourWebStyle. All rights reserved.
//
#import "OrdersViewController.h"
#import "OrderTableDataSource.h"
@AlexTiTanium
AlexTiTanium / ParticaleAnimator.cs
Created May 30, 2013 08:27
Time scale independent Particle system in unity3d
using UnityEngine;
using System.Collections;
public class ParticaleAnimator : MonoBehaviour {
private void Awake()
{
particle = GetComponent<ParticleSystem>();
}
using System;
using UnityEngine;
using System.Collections;
public class VictoryDialog : GuiDialog
{
const string ANIMATOR_ACTION = "AnimatorAction";
//**************************************************************************
using System;
using UnityEngine;
using System.Collections;
public class Device {
//**************************************************************************
//
// Const
//
<?php
namespace ODM\Proxies\__CG__\Documents\Shop;
use Doctrine\ODM\MongoDB\Persisters\DocumentPersister;
/**
* THIS CLASS WAS GENERATED BY THE DOCTRINE ODM. DO NOT EDIT THIS FILE.
*/
class Catalog extends \Documents\Shop\Catalog implements \Doctrine\ODM\MongoDB\Proxy\Proxy