- 1
- 2
- 3
- 4
- 5
public static Entity read(final URI path) {
if(!(path.items!= null && (0 < path.items.size()))){
assert (false);
}
//дальше сам метод
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
+96
public static Entity read(final URI path) {
if(!(path.items!= null && (0 < path.items.size()))){
assert (false);
}
//дальше сам метод
+144
#include <iostream>
#include <string>
#include <ctime>
using namespace std;
template <typename T>
void SwowArray(T arr[], int n); // #A
template <typename T>
void ShowArray(T * arr[], int n); // #B
struct debts
{
char name[50];
double amount;
};
int main()
{
int things[6] = {12, 34, 43, 21, 56, 666};
struct debts mr_dick[3] =
{
{"Pizdabol Ivan", 999.0},
{"Xuesos Vasya", 45.0},
{"Prostitutka Alla", 548.0}
};
double * pedo[3];
for(int i = 0; i < 3; i++)
{
pedo[i] = &mr_dick[i].amount;
}
cout << "Trololo Mr.Dick: \n";
ShowArray(things, 6);
cout << "Listening Debilov: \n";
ShowArray(pedo, 3);
cin.ignore();
cin.get();
return 0;
}
// #A
template <typename T> void ShowArray(T arr[], int n)
{
cout << "Template A \n";
for(int i = 0; i < n; i++)
cout <<arr[i]<<" ";
cout << endl;
}
template <typename T> void ShowArray(T * arr[], int n)
{
cout << "Template B \n";
for(int i = 0; i<n; i++)
cout <<*arr[i]<< " ";
cout << endl;
}
не могу понять почему выводится ошибка, как бы не должно ее быть, компилятор указывает на 34 строку
+161
function mysql_prep($value)
{
if(get_magic_quotes_gpc()){
$value = stripslashes($value);
} else {
$value = addslashes($value);
}
return $value;
}
"Heres a hassle free function to use to check your query string and before its handed to the db. It will add/remove slashes according to the get_magic_quotes_gpc state"
http://lt.php.net/manual/en/function.addslashes.php
+160
ini_set('session.use_cookies','0');
ini_set('session.use_trans_sid','0');
...
session_start();
:D
+157
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>домо окошко</title>
<link rel="stylesheet" href="tools/style.css" type="text/css" />
<script type="text/javascript">
function fMask(){
var h = document.getElementById('bodyblock').offsetHeight;
document.getElementById('mask').style.height = h + "px";
var hmodal = document.getElementById('modalBlock').offsetHeight -6;
document.getElementById('modalLeft').style.height = hmodal + "px";
document.getElementById('modalRight').style.height = hmodal + "px";
}
</script>
<script type="text/javascript" src="tools/jquery.js"></script>
<script type="text/javascript" src="tools/select.js"></script>
<script type="text/javascript">$(document).ready(function(){$('.selectBlock').sSelect();});</script>
</head>
<body id="bodyblock" onload="fMask();">
<div id="mask"></div>
<div id="modal">
лалала жужужужу я програмлю как могу... из серии не заставляйте верстальщиков применять JS
+164
<?
class с_self_add_form
{
var $main="<P>
<form name=\"add_form\" ENCTYPE=\"multipart/form-data\" method=post
....HTML...
</table></form></P>";
}
class u_self_add_form
{
var $main="<P class=ttext>
<form name=\"add_form\" ENCTYPE=\"multipart/form-data\" method=post
....Другой HTML...
</table></form></P>";
}
class d_self_add_form
{
var $main="<P class=zag>
<form name=\"add_form\" ENCTYPE=\"multipart/form-data\" method=post
....Третий HTML...
</table></form></P>";
}
/* и так далее, и тому подобное */
самый шикарный формат файла с шаблонами, который я видел.
+102
long First = 2* ... ;
long Second = 2* ... ;
long Average = (First + Second) / 2
1.як не треба рахувати середнє арифметичне.
2.БАЯН.
+111
double f_x (double x, double y, int nom)
{
double f_x[]={x+y, x*y, x*y, sqrt(x*x + y*y), cos(x)/sin(y)};
return f_x[nom];
}
Нужна одна из функций :-)
+157
for ($i = 0; $i < $count; $i++) {
if ($links_array['is'][$i]) {
$link_text .= '[url='.$links_array['href'][$i].']'.$links_array['new_name'][$i].'c ('.link_domain($links_array['href'][$i]).')[/url]';
if ($links_array['mirror'][$i] != '') {
$link_text .= "\n".'[url='.$links_array['mirror'][$i].']'.$links_array['new_name'][$i].'c ('.link_domain($links_array['mirror'][$i]).')[/url]'
}
$link_text .= ($i + 1 != $count ? "\n" : '');
}
}
+162
var titleAlt = String(dbField("title").value);
if (titleAlt.toLowerCase().indexOf("<b>") != -1) { titleAlt = titleAlt.replace(/<b>/gi, "").replace(/<\/b>/gi, ""); }
if (titleAlt.toLowerCase().indexOf("<i>") != -1) { titleAlt = titleAlt.replace(/<i>/gi, "").replace(/<\/i>/gi, ""); }
if (titleAlt.toLowerCase().indexOf("<small>") != -1) { titleAlt = titleAlt.replace(/<small>/gi, "").replace(/<\/small>/gi, ""); }
if (titleAlt.toLowerCase().indexOf("<br>") != -1) { titleAlt = titleAlt.replace(/<br>/gi, ""); }
if (titleAlt.toLowerCase().indexOf("<p>") != -1) { titleAlt = titleAlt.replace(/<p>/gi, "").replace(/<\/p>/gi, ""); }
f = 0;
while (f != -1) {
f = titleAlt.indexOf("<img ");
if (f == -1) { f = titleAlt.indexOf("< img "); }
if (f == -1) { f = titleAlt.indexOf("< img "); }
if (f == -1) { f = titleAlt.indexOf("<IMG "); }
if (f == -1) { f = titleAlt.indexOf("< IMG "); }
if (f == -1) { f = titleAlt.indexOf("< IMG "); }
if (f != -1) {
t = -1;
for (i = f; i < titleAlt.length; i++) {
if (titleAlt.substr(i, 1) == ">") { t = i; i = titleAlt.length; }
}
if (t != -1) {
ttl = titleAlt;
titleAlt = ttl.substring(0, f) + ttl.substring(t + 1, titleAlt.length);
}
}
}
это не что иное, как попытка очистить строку от html
код как бы говорит нам - "регулярные выражения - зло!"
цикл while - это просто шедевр зодчества эпохи просвещения. он ищет тег img и закрывающую скобку, и если они есть - присваивает результату подстроку от начала строки до первого вхождения img и от последнего вхождения угловой скобки
найдено в серверном JavaScripte на одном из зарубежных сайтов