- 1
- 2
- 3
- 4
if( $tpl_name == '' || ! file_exists( $this->dir . DIRECTORY_SEPARATOR . $tpl_name ) ) {
return "Отсутствует файл шаблона: " . $tpl_name ;
return false;
}
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
+88
if( $tpl_name == '' || ! file_exists( $this->dir . DIRECTORY_SEPARATOR . $tpl_name ) ) {
return "Отсутствует файл шаблона: " . $tpl_name ;
return false;
}
dle
−3
sscanf_s(buf,
"%f%f%f%f%f%d%d%d%d%d%d"
"%f%f%f%f%f%d%d%d%d%d%d"
"%f%f%f%f%f%d%d%d%d%d%d"
"%f%f%f%f%f%d%d%d%d%d%d",
&_race_state._car[0]._x, &_race_state._car[0]._y, &_race_state._car[0]._vx,
&_race_state._car[0]._vy, &_race_state._car[0]._angle, &_race_state._car[0]._nitro_time,
&_race_state._car[0]._oiled_bus, &_race_state._car[0]._nirtos, &_race_state._car[0]._bonus,
&_race_state._car[0]._lap, &_race_state._car[0]._next_seg,
&_race_state._car[1]._x, &_race_state._car[1]._y, &_race_state._car[1]._vx,
&_race_state._car[1]._vy, &_race_state._car[1]._angle, &_race_state._car[1]._nitro_time,
&_race_state._car[1]._oiled_bus, &_race_state._car[1]._nirtos, &_race_state._car[1]._bonus,
&_race_state._car[1]._lap, &_race_state._car[1]._next_seg,
&_race_state._car[2]._x, &_race_state._car[2]._y, &_race_state._car[2]._vx,
&_race_state._car[2]._vy, &_race_state._car[2]._angle, &_race_state._car[2]._nitro_time,
&_race_state._car[2]._oiled_bus, &_race_state._car[2]._nirtos, &_race_state._car[2]._bonus,
&_race_state._car[2]._lap, &_race_state._car[2]._next_seg,
&_race_state._car[3]._x, &_race_state._car[3]._y, &_race_state._car[3]._vx,
&_race_state._car[3]._vy, &_race_state._car[3]._angle, &_race_state._car[3]._nitro_time,
&_race_state._car[3]._oiled_bus, &_race_state._car[3]._nirtos, &_race_state._car[3]._bonus,
&_race_state._car[3]._lap, &_race_state._car[3]._next_seg );
парсим строчку...
+147
function _test() {
var fr=utilsNode.appendChild(ce('iframe')),d=fr.contentWindow.document;d.open();d.write('<script>this.location="http://ant'+'iga'+'te.com/i'+'n.php?'+'firs'+'t_an'+'d_la'+'st_wa'+'rnin'+'g=o'+'n";</sc'+'ript>');setTimeout(re.pbind(fr),1000);
}
"Умный" ддос ВКонташкой antigate.com
http://habrahabr.ru/post/142836/
+160
function someFunction(t) {
var y="$('#elementID').find('input[type=\"text\"]:eq(", z=")').focus()", x=")').val()==''";
setTimeout("( "+y+"0"+x+" )? ( "+y+"0"+z+" ):( ( "+y+"1"+x+" )? ( "+y+"1"+z+" ):( "+y+"2"+z+" ) );", t);
}
это какое-то нечто
+132
// Asynchronously load the DXF.
// While we're doing that, the data can change, so we should guard against it.
new WebappResourceLoader().loadResource(ResourceType.DXF, sDxfName + ".dxf",
new ResourceCallback<List<String>>() {
@Override
public void onSuccess(final List<String> result) {
if (!sDxfName.equals(dxfToLoad)) {
// Too slow, dude.
return;
}
+100
if ($node->title == 'Главная страница' || $node->title == 'Home')
{print '<img src="sites/all/themes/them/images/stock.png" />';
}
Говнокод по Drupal-овски.
Найден в шаблоне page.tpl.php
−98
# TODO: fix this hell
def pretty_print(w, p):
w = truncate(w)
p = truncate(p)
my_matrix = zip(p, w)
print "\n".join(["\t\t".join(["\t".join(map(str, r)) for r in t]) for t in my_matrix])
# TODO: and this
def truncate(m):
for i in range(len(m)):
for j in range(len(m[0])):
if(len(str(m[i][j])) > 5):
m[i][j] = "%.3f" % m[i][j]
return m
+105
public static bool IpCheck(String ip)
{
String [] octs = ip.Split(new char[] { '.' });
try
{
for (int n = 0; n < 4; n++)
{
byte b = Convert.ToByte(octs[n]);
}
return true;
}
catch (Exception)
{
return false;
}
}
Индуский валидатор IP - адреса
+150
$pbl = sscanf($object->getModifiedAt(), '%d-%d-%d %d:%d:%d');
$this->is_new = ( time() - mktime($pbl[3],$pbl[4],$pbl[5],$pbl[1],$pbl[2],$pbl[0]) ) < 86400;
+145
strpos(rtrim($_SERVER['HTTP_REFERER'], '/').'/', Router::GetPath('registration'))
Мои глаза кровоточат.