Skip to content

Instantly share code, notes, and snippets.

View cursedcoder's full-sized avatar
🐜
Working from nest

Yevhenii Huselietov cursedcoder

🐜
Working from nest
View GitHub Profile
$('textarea').bind('click', function(){
var currentChar = $(this)[0].selectionEnd;
var all = $(this)[0].textLength;
var line = 0;
for (i = 0; i <= all; i++) {
var char = $(this).text()[i];
if (char == "\n") {
line++;
<?php
if (
!$this->isOauthExists()
&& ('oauth' === $driver
|| (isset($fetcherConfig['options']['method']) && 'oauth' === $fetcherConfig['options']['method']))
) {
throw new \InvalidArgumentException('You should install and enable InoriTwitterBundle');
}
<?php
namespace Knp\Bundle\LastTweetsBundle\Tests\Twitter\LastTweetsFetcher;
use Knp\Bundle\LastTweetsBundle\Twitter\LastTweetsFetcher\ApiFetcher;
use Knp\Bundle\LastTweetsBundle\Twitter\Tweet;
class ApiFetcherTest extends \PHPUnit_Framework_TestCase
{
const CLASSNAME = 'Knp\Bundle\LastTweetsBundle\Twitter\LastTweetsFetcher\ApiFetcher';
<?php
namespace Knp\Bundle\LastTweetsBundle\Tests\Twitter\LastTweetsFetcher;
use Knp\Bundle\LastTweetsBundle\Twitter\LastTweetsFetcher\ApiFetcher;
use Knp\Bundle\LastTweetsBundle\Twitter\Tweet;
class ApiFetcherTest extends \PHPUnit_Framework_TestCase
{
const CLASSNAME = 'Knp\Bundle\LastTweetsBundle\Twitter\LastTweetsFetcher\ApiFetcher';
public function testExample()
{
$fixture = json_encode(array(
'one' => array('id_str' => 1, 'text' => 'asdasdasd'),
'two' => array('id_str' => 2, 'text' => 'asdasdasd2'),
'three' => array('id_str' => 3, 'text' => 'asdasdasd3')
));
$mockedBrowser = $this->getMock(
'Buzz\Browser',
<?php
namespace MAD\FileManagerBundle\Core;
class Item {
private $path;
private $name;
<?php
namespace MAD\FileManagerBundle\Core;
class Item {
public function delete() {
}
server {
listen 80;
server_name poli.gon;
root /usr/local/www/poli.gon/web;
index app_dev.php index.html index.htm;
try_files $uri $uri/ @rewrite;