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
AutoFileName | |
Babel | |
BracketHighlighter | |
DocBlockr | |
Emmet | |
EncodingHelper | |
GitGutter | |
MarkdownEdititng | |
PackageControl | |
PyV8 |
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
Примеры кода: | |
https://gist.github.com/fimak/17dd70253612ef7e98f1 | |
Bookyou-booking.js | |
Отрывок кода backbone моделей и вьюх из проекта бронирования услуг. | |
bookyou-dhtmlx-calendar.js | |
Отрывок кода, этого же проектаю Переопределял и дополнял некоторые функций библиотеки dhtmlx-calendar | |
Ссылка на проект - https://bookyou.ch/ - но он в каком то странном ссостоянии сейчас |
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 | |
class A | |
{ | |
public function aFunc() | |
{ | |
echo __CLASS__; | |
} | |
} |
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 | |
class ArraySplitter | |
{ | |
public $x; //the X | |
public $a; //array | |
public $n; //count of all elements | |
public $k; //index of searching | |
public $left; //count of $x in left part | |
public $right; //count of !$x in right part |
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 | |
class SiteController extends Controller | |
{ | |
/** | |
* Declares class-based actions. | |
*/ | |
public function actions() | |
{ | |
return array( |
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 | |
class CalcParser | |
{ | |
public function parse($str) | |
{ | |
$result = $this->PlusMinus($str); | |
if (!empty($result->rest)) { | |
echo "Error: can't parse all.<br />"; | |
echo "rest: " . $result->rest; | |
} |