Документ взят из кэша поисковой машины. Адрес оригинального документа : http://www.fds-net.ru/showflat.php?Number=974874&src=alt&showlite=l
Дата изменения: Unknown
Дата индексирования: Tue Feb 26 12:08:53 2013
Кодировка: Windows-1251
Покажи буфер, или же Current буфер - Public forum of MSU united student networks
Alt >> Flood.Poshkes

Страницы: | 0 ... | << | 20 | 40 | 60 | 80 | 100 | 120 | 140 | 160 | 180 | 200 | 220 | показать все | след. страница
Cube : Re: Покажи буфер, или же Current буфер  [re:YonBrover]   08.07.2010 13:23    | Reply | Edit |
1

     Ночь, нож, три кастета.
     По кварталам бродит сон.
     А в музее три "эстета"
     Добывают миллион.
     Тают деньги в кошельке,
     Тают, как туманы.
     А на нашем языке
     Деньги - значит "маны".
    
     Припев:
     Эх, маны, маны, маны,
     Мы не просим каши манной,
     Мы достаточно гуманны и нежны
     Эх, маны, маны, маны,
     Мы не люди, а карманы
     А карманам, как известно,
     Денежки нужны.
    
     Ночь, нож, револьверы.
     Сторожа от страха мрут.
     Аполлоны и Венеры
     Сами в руки к нам плывут.
     Знаем дело, в корень зрим -
     Мелочь не воруем,
     Мы искусство не творим,
     Мы его "творуем".
    
     Припев.

FAQ   [re:Cube]   09.07.2010 17:47    | Reply | Edit |
1

 Личное
Причина: Спам
07.06.2010 11:16 от laikxeor

l_   [re:Poshkes]   10.07.2010 16:48    | Reply | Edit |
1
document.getElementById("tooltip");

Wintermute   [re:l_]   10.07.2010 20:10    | Reply | Edit |
2
if (defined($dateFrom))
{
push(@where, '(t.Date >= ?)');
push(@binds, $dateFrom);
}
if (defined($dateTo))
{
push(@where, '(t.Date <= ?)');
push(@binds, $dateTo);
}
if (@$obsos_accounts > 1)
{
push(@where, '(r.AccountId IN (' . join(',', map { '?' } @$obsos_accounts) . '))');
} else {
push(@where, '(r.AccountId = ?)');
}
push(@binds, map { $_->{'id'} } @$obsos_accounts);

YonBrover   [re:Wintermute]   13.07.2010 15:25    | Reply | Edit |
0
RBRU

YonBrover   [re:YonBrover]   14.07.2010 10:36    | Reply | Edit |
0
http://www.teplozaves.ru/catalog/item/9682

FAQ   [re:YonBrover]   16.07.2010 13:37    | Reply | Edit |
0
а то его сегодня обещали сделать репутационным =)

YonBrover   [re:FAQ]   16.07.2010 15:31    | Reply | Edit |
0
reject_message

Cube   [re:YonBrover]   16.07.2010 17:51    | Reply | Edit |
1
http://leprastuff.ru/data/img/20100714/de6853bce1c2aead0f7c6...

_Ss_   [re:Cube]   17.07.2010 17:45    | Reply | Edit |
1
http://trinixy.ru/40288-perepiska-dizajnera-s-zakazchikom-15...

YonBrover   [re:YonBrover]   20.07.2010 12:36    | Reply | Edit |
0
http://www.absolutbank.ru/services/courses.shtml

YonBrover   [re:YonBrover]   21.07.2010 16:14    | Reply | Edit |
0
http://www.repaha.ru/category_105.php

Cube   [re:YonBrover]   22.07.2010 10:40    | Reply | Edit |
0
http://photo.psychotype.ru/ph/13/10/small/K03.jpg

Wintermute   [re:Cube]   02.09.2010 17:04    | Reply | Edit |
0
	function InitSelect(sel)
	{
		var i, j, w, t, el, arr, cols, els, tsel;
		try {
			arr = [];
			cols = 0;
			els = [];
			for (i = 0; i < sel.options.length; i++)
			{
				if (sel.options[i].text.length == 0)
				{
					arr.push([]);
					els.push('');
					continue;
				}
				el = sel.options[i].text.split('|');
				sel.options[i].text = el[0];
				arr.push(el);
				els.push(el[0]);
				if (el.length > cols) cols = el.length;
			}
			if (arr.length == 0 || cols <= 1) return true;
			if (arr.length == 1)
			{
				$(sel.options[0]).text(arr.join('&nbsp;'));
				return true;
			}
			for (i = 0; i < arr.length; i++)
			{
				while (arr[i].length < cols) arr[i].push('');
			}
			$(sel).css({ 'width':'auto', 'font-family':'monospace' });
			var tsp = '&nbsp;&nbsp;';
			var opts = [];
			for (j = 1; j < cols; j++)
			{
				w = $(sel).width();
//				alert(w);
				while (sel.options.length > 1)
				{
					opts.push( sel.options[sel.options.length - 1] );
					sel.remove(sel.options.length - 1);
				}
				el = sel.options[0];
				for (i = 0; i < arr.length; i++)
				{
					$(el).html(els[i]);
					while ($(sel).width() <= w)
					{
						els[i] += '&nbsp;';
						$(el).html(els[i]);
					}
					t = $(sel).width() - w;
					$(el).html( els[i].substr(0, els[i].length - 6) );
					if (t > w - $(sel).width())
						els[i] = els[i].substr(0, els[i].length - 6);
				}
				els[0] += tsp + arr[0][j];
				$(el).html(els[0]);
				for (i = 1; i < arr.length; i++)
				{
					els[i] += tsp + arr[i][j];
//					(function(a,b) { a.fuck(b); })(sel, opts);
					el = opts.pop();
					try { sel.add(el, null); } catch(err) { sel.add(el); }
					$(sel.options[i]).html(els[i]);
				}
			}
		} catch (err) {
//			throw(err);
		}
	}


Cube   [re:Wintermute]   24.09.2010 17:35    | Reply | Edit |
1
gplaces_maker.h

YonBrover   [re:Poshkes]   26.10.2010 14:02    | Reply | Edit |
0
IgG и IgM

Wintermute   [re:YonBrover]   28.10.2010 09:40    | Reply | Edit |
0
#ifdef wtfDEBUG_MEMORY_LEAKS
    wxDebugContext::Dump();
    wxDebugContext::PrintStatistics();
#endif // wtfDEBUG_MEMORY_LEAKS


Cube   [re:Wintermute]   03.11.2010 13:06    | Reply | Edit |
0
http://prostopleer.com/tracks/4572715JZGc

YonBrover   [re:Cube]   08.11.2010 16:02    | Reply | Edit |
0
http://forumbgz.ru/user/upload/file365290.jpg

Wintermute   [re:YonBrover]   18.11.2010 16:10    | Reply | Edit |
0
code:
BOOL rv = FALSE; # ifdef _UNICODE wtfRenamer::m_HLSfuncW chlW; if (wtfRenamer::m_HLShasW) { chlW = (wtfRenamer::m_HLSfuncW) m_lib->GetSymbol(wxT("CreateHardLinkW")); if (chlW == NULL) { wtfRenamer::m_HLShasW = false; wxLogDebug(wxT("Cannot get symbol CreateHardLinkW in wtfRenamer::CanCreateHardlink()")); } else { rv = chlW((LPCWSTR) nn.GetFullPath().c_str(), (LPCWSTR) on.GetFullPath().c_str(), NULL); if (!rv) { wxLogDebug(wxT("Cannot create hard link")); } } } # endif wtfRenamer::m_HLSfuncA chlA; LPCSTR lpFileNameA, lpExistingFileNameA; if (!rv && wtfRenamer::m_HLShasA) { chlA = (wtfRenamer::m_HLSfuncA) m_lib->GetSymbol(wxT("CreateHardLinkA")); if (chlA == NULL) { wtfRenamer::m_HLShasA = false; wxLogDebug(wxT("Cannot get symbol CreateHardLinkA in wtfRenamer::CanCreateHardlink()")); } else { rv = TRUE;//chlA(lpFileNameA, lpExistingFileNameA, NULL); } }


Top | след. страница