Skip to content

Instantly share code, notes, and snippets.

@Stasonix
Stasonix / crecs.md
Last active August 29, 2015 13:56
Animated Rectangles by jQuery
  • jQuery
function DeLight(dly,clr,eq)
{
    setTimeout(function(){
        $('li:eq('+eq+')').find('div').css('background',clr);
    },dly);
}
@Stasonix
Stasonix / .htaccess
Created July 30, 2012 11:09
ЧПУ в php Пример .htaccess
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([a-zA-Z]*).html$ /?cat=$1 [L]
RewriteRule ^([a-zA-Z]*)/([a-zA-Z]*)\.html$ /?cat=$1&page=$2 [QSA,L]
@Stasonix
Stasonix / index.php
Created July 30, 2012 11:06
ЧПУ в php Пример index.php
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>test.loc</title>
</head>
<body>
<p>Список категорий</p>
<ul>
<!-- ВЫВОД ВСЕХ КАТЕГОРИЙ -->
@Stasonix
Stasonix / ipua.php
Created July 28, 2012 05:56
PHP Украинский ip ( функция проверки )
<?php
/* функция проверки является ли пользователь из Украины
* @param (string) ip - ip адрес пользователя
* @return (bool) - если пользователь из Украины вернет TRUE, если нет, то FALSE
*/
function ipUA($uIp)
{
$bytes = explode(".",$uIp);
@Stasonix
Stasonix / Form1.cs
Created July 26, 2012 08:52
GLOBAL HOOK example C#
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Text.RegularExpressions;
using System.IO;
@Stasonix
Stasonix / Form1.cs
Created July 26, 2012 08:34
Test IMG project (SO) form1.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
@Stasonix
Stasonix / doimg.cs
Created July 26, 2012 08:34
Test IMG project (SO) doimg.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Drawing;
using System.Drawing.Imaging;
using System.Drawing.Printing;
@Stasonix
Stasonix / Form1.cs
Created July 26, 2012 07:17
Test IMG project
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace testimg
@Stasonix
Stasonix / doimg.cs
Created July 26, 2012 07:16
Test IMG project
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Drawing;
using System.Drawing.Imaging;
using System.Drawing.Printing;
@Stasonix
Stasonix / glarr.cs
Created July 12, 2012 08:46
global arrays C#
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Microsoft.Practices.ServiceLocation;