Skip to content

Instantly share code, notes, and snippets.

View IlyaPavlik's full-sized avatar

Ilya Pavlik IlyaPavlik

View GitHub Profile
/**
* Text extraction plugin.
*/
Draw.loadPlugin(function(ui)
{
// Adds resource for action
mxResources.parse('extractText=Extract Text...');
// Adds action
ui.actions.addAction('extractText', function()
@IlyaPavlik
IlyaPavlik / DomainInfo.php
Created October 20, 2014 02:51
Получение доменного имени по ip
<?php
class DomainInfo
{
public static function getDomainNameByIP($ip){
return gethostbyaddr($ip);
}
}
@IlyaPavlik
IlyaPavlik / index.html
Created October 15, 2014 03:34
"Умный" поиск
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>"Умный" поиск</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="smartSearch.js"></script>
</head>
<body>
@IlyaPavlik
IlyaPavlik / index.html
Created October 10, 2014 13:12
Косынка
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Косынка</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="jquery-2.1.1.js"></script>
</head>
<body>
<input type="submit" id="button" onclick="startGame()" value="Начать игру!">