Niby się nie wiesza, widzi kabel neta, ale plot() z scilab nie działa (w sumie to na ubu też nie), flash nie działa, dźwięku znowu nie ma...
Co by tu teraz posadzić?

double val = double.Parse("123.321");
$(document).bind('mousemove click keydown', function()...
try { if($this->exists($destination_parent_id)===FALSE) { return FALSE; } if( $destination_parent_id == self::ROOT_ID ){ return FALSE; } DB::query(NULL, 'START TRANSACTION')->execute(); DB::query(Database::SELECT,'SELECT @destination_parent_left := lft FROM categories WHERE id = :destination_parent_id') ->param(':destination_parent_id',$destination_parent_id) ->execute(); DB::query(Database::UPDATE,'UPDATE categories SET rgt = rgt + 2 WHERE rgt > @destination_parent_left') ->execute(); DB::query(Database::UPDATE,'UPDATE categories SET lft = lft + 2 WHERE lft > @destination_parent_left') ->execute(); $insert_db_res = DB::query(Database::INSERT,'INSERT INTO categories(name, slug, lft, rgt, active) VALUES(:name, :slug, @destination_parent_left +1, @destination_parent_left +2, 0)') ->param(':name',$name) ->execute(); $siblings = $this->get_siblings($insert_db_res[0]); { foreach($siblings AS $sibling) { { throw new Exception('Category with same slug exists'); } } } DB::query(NULL, 'COMMIT')->execute(); Cache::instance('sqlite')->delete_tag('jstree'); return $insert_db_res[0]; } catch(Exception $e) { DB::query(NULL, 'ROLLBACK')->execute(); return FALSE; }
$siblings = $this->get_siblings($insert_db_res[0]);