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
#include <iostream> | |
#include <fstream> | |
#include <string> | |
#include <vector> | |
#include <conio.h> | |
#include <cstdlib> | |
#include <ctime> | |
using namespace std; | |
int main () | |
{ |
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 | |
namespace Simpleshop\Modules\Admin\Presenters; | |
use Nette\Application\UI\Presenter; | |
use Simpleshop\Modules\Admin\Events\MenuEvent; | |
use Smf\Events\IEventDispatcher; | |
use Smf\Menu\Control\Factory; | |
abstract class BasePresenter extends Presenter | |
{ |
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
Detect Safari (if( $.browser.safari)), | |
Detect IE6 and over (if ($.browser.msie && $.browser.version > 6 )), | |
Detect IE6 and below (if ($.browser.msie && $.browser.version <= 6 )), | |
Detect FireFox 2 and above (if ($.browser.mozilla && $.browser.version >= '1.8' )) |
NewerOlder