- 1
(\+7|8)\d\d\d\d\d\d\d\d\d\d
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
Всего: 61
+4
(\+7|8)\d\d\d\d\d\d\d\d\d\d
−15
text = item.text()
now = datetime.now()
if text == 'Не указан':
rows.remove(row)
elif not (text.split('-')[-1] == now.day and text.split('-')[-2] == now.month):
rows.remove(row)
−15
var input_node = undefined;
var is_system_node = /(?:oTemplateParameters|oDocumentContents|eCatchwordContents)/gi.test(cur_nodename);
if (is_system_node) {
input_node = doc_xml.selectSingleNode('//dependence[@option="' + cur_nodename + '"]');
}
else {
input_node = doc_xml.selectSingleNode('//input[@name="' + cur_nodename + '"]');
if (!input_node && settings_xml) {
input_node = settings_xml.selectSingleNode('//input[@name="' + cur_nodename + '"]');
}
}
if (!input_node) continue;
−48
this.network = new Network(this);
Я ниасилил DI.
−48
var uid = null;
noop = function(e) {
e.preventDefault();
};
Ассемблерист пишет на ЖС? Тогда почему uid = null?
Или это ЯваАссемблерист?
−52
var trophyResTable = [];
for (var i = 1; i <=19; i++)
{
trophyResTable[i] = {};
}
trophyResTable[99] = {};
trophyResTable[1].male = "images/trophies/t_the_witty_comedian_trophy.png";
....
trophyResTable[99].female = "images/trophies/t_the_popped_cherry_trophy.png";
+6
http://requests.readthedocs.org/en/master/
Warning: Recreational use of other HTTP libraries may result in dangerous side-effects, including: security vulnerabilities, verbose code, reinventing the wheel, constantly reading documentation, depression, headaches, or even death.
Не говнокод, даже не говнокоммент. Наоборот, хороший, годный комментарий.
0
static void Main(string[] args)
{
try
{
watcher.Path = TargetPath;
watcher.Created += Watcher_Created;
watcher.Renamed += Watcher_Created;
watcher.EnableRaisingEvents = true;
logger.Info("Сервис запущен.");
System.Threading.Thread.Sleep(System.Threading.Timeout.Infinite);
}
catch(Exception ex)
{
logger.Error(ex, "Global error", null);
Main(null);
}
}
+6
// найдем максимальное значение идентификатора
$SQL = "SELECT MAX( id ) AS id FROM `filter_lists` WHERE project=1";
$id = query($SQL);
//новый идентификатор
$id = $id['0']['id'] + 1;
Auto increment PHP way
−1
https://drive.google.com/file/d/0B9WcAoQS5ukUZ1NMQkxMdXBSMWM/view?usp=sharing
Many-To-One PHP edition.