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
import Application from "backbone" | |
class App extends Backbone.Application { | |
version = '0.1'; | |
constructor() { | |
setTimeout(() => this.start(), 1000); | |
} | |
start() { |
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
<?php | |
use App\Cache\Cache; | |
class WhateverController { | |
/** @var \App\Cache\Cache $cache */ | |
private $cache; | |
public function __construct(Cache $cache) { |
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
From github.com:autoadstoday/AutoAdsTomorrow | |
* branch master -> FETCH_HEAD | |
Already up-to-date. | |
bower jquery#~2 cached git://github.com/jquery/jquery.git#2.1.1 | |
bower jquery#~2 validate 2.1.1 against git://github.com/jquery/jquery.git#~2 | |
bower bootstrap#~3 cached git://github.com/twbs/bootstrap.git#3.2.0 | |
bower bootstrap#~3 validate 3.2.0 against git://github.com/twbs/bootstrap.git#~3 | |
bower animate.css#~3.1.1 cached git://github.com/daneden/animate.css.git#3.1.1 | |
bower animate.css#~3.1.1 validate 3.1.1 against git://github.com/daneden/animate.css.git#~3.1.1 | |
bower jquery.cookie#~1.4.1 cached git://github.com/carhartl/jquery-cookie.git#1.4.1 |
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
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.InputStreamReader; | |
import java.io.ObjectInputStream; | |
import java.net.Socket; | |
public class Client | |
{ | |
private static final int USER_THROTTLE = 200; |