This file contains hidden or 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
/** | |
* A `tail -f` implementation in Node.js. | |
* | |
* Original author : Bratish Goswami <bratishgoswami AT gmail DOT com> | |
* Modified by : Michel Bartz <michel.bartz AT manwin DOT com> | |
* | |
*/ | |
var sys = require("sys"), | |
fs = require('fs'), |
This file contains hidden or 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
<?php | |
/** | |
* A Nested Comments manager using Redis only | |
* @author Michel Bartz <michel.bartz@manwin.com> | |
* @date 01/28/2011 | |
*/ | |
class Comments | |
{ | |
private $_redis; |
This file contains hidden or 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 Assets.Scripts.Game.Main; | |
using Assets.Scripts.Game.Main.Event; | |
using Assets.Scripts.Systems.Audio; | |
using Assets.Scripts.Systems.State; | |
using Sirenix.OdinInspector; | |
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEngine.Events; |