- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
mx_internal function columnWordWrap(c: DataGridColumn): Boolean {
if (c.wordWrap == true)
return true;
if (c.wordWrap == false)
return false;
return wordWrap;
}
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
−361.9
mx_internal function columnWordWrap(c: DataGridColumn): Boolean {
if (c.wordWrap == true)
return true;
if (c.wordWrap == false)
return false;
return wordWrap;
}
American Flex project
+183
$gameid = intval($_GET['gameid']);
if (!is_int($gameid)) die ('SQL Injection protection');
+148.3
if($path != goodPath($path))
{
$notfound = true;
}
сферический индус в вакууме
+136.7
if(!connect("call.beeline.ru", "9051234567", "$sound")) { die "Ошибка!";}
else {
echo "Succefully connected!\nTrying to call..";
if(!CallNumber("9051234567")) {die "Cant call number 9051234567!";}
else {
echo "Call to number 9051234567 succefully!";
play("1.mp3"); play("4.mp3"); play("2.mp3");
}
};
шутка юмора
+139.5
if(strncmp(I_CUR->E98,"",sizeof("")-1) != 0)
{
/** Fehler **/
ret=create_error(1,1,"",NULL,NULL);
set_error_msgseg(-1,-1,"CUR",NULL," E98",-1);
if (ret==FEHLER)
return ret;
}
Генератор сорса для одного проекта в очень крупной конторе дает такой код, который должен сообщать об ошибке.
Долго я удивлялся, что ошибок не появляется
if(0 != 0)
+112.5
public void Log(string pSource, string pMessage, EventLogEntryType pEntryType) {
try {
if (!EventLog.SourceExists(pSource)) {
EventLog.CreateEventSource(pSource, "Application");
}
EventLog.WriteEntry(pSource, pMessage, pEntryType);
}
catch (Exception _ex) {
Log("", _ex.ToString(), EventLogEntryType.Error);
}
}
Пишем в лог - постоянно...
Автор находки: http://ayende.com/Blog/archive/2009/03/19/how-not-to-write-a-logger.aspx
+139.2
fillValuesSelects: function(defaultNStargets, defaultNSgeo, xmlDoc){
try{
var ageStr = xmlDoc.getElementsByTagName(defaultNStargets+this.profileMessageParamageTagName)[0].childNodes[0].nodeValue;
ageStr = (ageStr && ageStr.indexOf("-") != ageStr.lastIndexOf("-"))?ageStr.split("-"):[null, null, null];
document.getElementById("yearagept").value = ageStr[0]?ageStr[0]:"";
document.getElementById("monthagept").value = ageStr[1]?ageStr[1]:"";
document.getElementById("dayagept").value = ageStr[2]?ageStr[2]:"";
}
catch(ex){}
try{
for(var i=0; i < document.getElementById("sexpt").childNodes.length; i++){
if(document.getElementById("sexpt").childNodes[i].childNodes[0].nodeValue.toLowerCase() ==
this.getShortTargetNameValue('sex', xmlDoc.getElementsByTagName(defaultNStargets+this.profileMessageParamsexTagName)[0].childNodes[0].nodeValue.toLowerCase()).toLowerCase()){
document.getElementById("sexpt").selectedIndex = i;
break;
}
}
}
catch(ex){}
try{
var gid = xmlDoc.getElementsByTagName(defaultNSgeo+this.profileMessageParamGeoIDTagName)[0].childNodes[0].nodeValue;
if(gid.indexOf(':') != -1) gid = gid.substring(0, gid.indexOf(':'));
this.findGeoLocationById(gid);
}
catch(ex){}
try{
for(var i=0; i < document.getElementById("socialpt").childNodes.length; i++){
if(document.getElementById("socialpt").childNodes[i].childNodes[0].nodeValue.toLowerCase() ==
this.getShortTargetNameValue('socialstatus', xmlDoc.getElementsByTagName(defaultNStargets+this.profileMessageParamSocialStatusTagName)[0].childNodes[0].nodeValue.toLowerCase()).toLowerCase()){
document.getElementById("socialpt").selectedIndex = i;
break;
}
}
}
catch(ex){}
try{
for(var i=0; i < document.getElementById("familypt").childNodes.length; i++){
if(document.getElementById("familypt").childNodes[i].childNodes[0].nodeValue.toLowerCase() ==
this.getShortTargetNameValue('maritalstatus', xmlDoc.getElementsByTagName(defaultNStargets+this.profileMessageParamMaritalStatusTagName)[0].childNodes[0].nodeValue.toLowerCase()).toLowerCase()){
document.getElementById("familypt").selectedIndex = i;
break;
}
}
}
catch(ex){}
try{
for(var i=0; i < document.getElementById("childpt").childNodes.length; i++){
if(document.getElementById("childpt").childNodes[i].childNodes[0].nodeValue.toLowerCase() ==
this.getShortTargetNameValue('children', xmlDoc.getElementsByTagName(defaultNStargets+this.profileMessageParamchildrenTagName)[0].childNodes[0].nodeValue.toLowerCase()).toLowerCase()){
document.getElementById("childpt").selectedIndex = i;
break;
}
}
}
catch(ex){}
try{
for(var i=0; i < document.getElementById("edupt").childNodes.length; i++){
if(document.getElementById("edupt").childNodes[i].childNodes[0].nodeValue.toLowerCase() ==
this.getShortTargetNameValue('education', xmlDoc.getElementsByTagName(defaultNStargets+this.profileMessageParameducationTagName)[0].childNodes[0].nodeValue.toLowerCase()).toLowerCase()){
document.getElementById("edupt").selectedIndex = i;
break;
}
}
}
catch(ex){}
try{
for(var i=0; i < document.getElementById("worknpt").childNodes.length; i++){
if(document.getElementById("worknpt").childNodes[i].childNodes[0].nodeValue.toLowerCase() ==
this.getShortTargetNameValue('jobstatus', xmlDoc.getElementsByTagName(defaultNStargets+this.profileMessageParamjobTagName)[0].childNodes[0].nodeValue.toLowerCase()).toLowerCase()){
document.getElementById("worknpt").selectedIndex = i;
break;
}
}
}
catch(ex){}
try{
for(var i=0; i < document.getElementById("incomept").childNodes.length; i++){
if(document.getElementById("incomept").childNodes[i].childNodes[0].nodeValue.toLowerCase() ==
this.getShortTargetNameValue('incomestatus', xmlDoc.getElementsByTagName(defaultNStargets+this.profileMessageParamincomeTagName)[0].childNodes[0].nodeValue.toLowerCase()).toLowerCase()){
document.getElementById("incomept").selectedIndex = i;
break;
}
}
}
catch(ex){}
try{
for(var i=0; i < document.getElementById("inetpt").childNodes.length; i++){
if(document.getElementById("inetpt").childNodes[i].childNodes[0].nodeValue.toLowerCase() ==
this.getShortTargetNameValue('internetaccessstatus', xmlDoc.getElementsByTagName(defaultNStargets+this.profileMessageParaminternetaccessTagName)[0].childNodes[0].nodeValue.toLowerCase()).toLowerCase()){
document.getElementById("inetpt").selectedIndex = i;
break;
Кусочек кода одной системы одной довольно известной IT-компании в Рунете ;-)
+143.3
<select name="wday_finish"/>
<?php
if ( $wday_finish == '-' ) { $default = ' selected'; }
else {$default = '';}
echo "<option value=\"-\" $default>-";
if ( $wday_finish == 'mon' ) { $default = ' selected'; }
else {$default = '';}
echo "<option value=\"mon\" $default>" . _("Monday");
if ( $wday_finish == 'tue' ) { $default = ' selected'; }
else {$default = '';}
echo "<option value=\"tue\" $default>" . _("Tuesday");
if ( $wday_finish == 'wed' ) { $default = ' selected'; }
else {$default = '';}
echo "<option value=\"wed\" $default>" . _("Wednesday");
if ( $wday_finish == 'thu' ) { $default = ' selected'; }
else {$default = '';}
echo "<option value=\"thu\" $default>" . _("Thursday");
if ( $wday_finish == 'fri' ) { $default = ' selected'; }
else {$default = '';}
echo "<option value=\"fri\" $default>" . _("Friday");
if ( $wday_finish == 'sat' ) { $default = ' selected'; }
else {$default = '';}
echo "<option value=\"sat\" $default>" . _("Saturday");
if ( $wday_finish == 'sun' ) { $default = ' selected'; }
else {$default = '';}
echo "<option value=\"sun\" $default>" . _("Sunday");
?>
freepbx. timeconditions module.
+155.4
.....
double CHTerritory;
int CHNextGeneration;
int CHPeople;
int CHScTurns;
int CHDefMin;
int CHDefMax;
int CHAtMin;
int CHAtMax;
int CHArmies;
int CHGrain;
int CHScientist;
double CHMoney;
int CHUnHP_1;
int CHArm;
int CHATT;
int CHDEFF;
int CHUnHP;
int CHArm_1;
int AtChoice;
....
Begin:
int Choice;
cout << "\n""Year: ";
cout << Year;
cout << "\n""Money ";
cout << Money;
cout << " $";
Tax = People / 2;
cout << "\n""Tax: ";
cout << Tax;
cout << " $";
cout << "\n""Territory: ";
cout << Territory;
cout << " KM^2";
cout << "\n""What do you want?";
cout << "\n""Science - 1, Army - 2, Agrarian Production - 3,";
cout << "\n""Social Question - 4, Next Year - 5, Spy - 6, Exit - 7: ";
cin >> Choice;
if(Choice == 1)
{
goto Science;
}
if(Choice == 2)
{
goto Army;
}
if(Choice == 3)
{
goto AgrarianProduction;
}
if(Choice == 4)
{
goto SocialQuestion;
}
if(Choice == 5)
{
goto NextYear;
}
if(Choice == 6)
{
goto Spy;
}
if(Choice == 7)
{
goto Replay;
}
else
{
cout << "\n""TbI Tynou ?";
cout << "\n";
goto Begin;
}
....
if(AmUnHP_1 <= 0)
{
AmArmies = AmArmies - 1;
goto LKJMNZZA;
}
else
{
goto LKJMNZZB;
}
Моя одна из первых "серьезных" программ на С++, показывающая, что даже без знаний (главное - желание) можно писать БОЛЬШИЕ программы. Программа - стратегическая консольная игра, исходник в 64 КБ и все в... ОДНОЙ функции main :) также тогда еще не знал о существовании массивов, switch и многого другого:) К сожалению все 4000 строк кода сюда не влезают, так что вот примеры стандартных участков кода.
+152.3
<ul>
\\\".listQuery(\\\"SELECT Hidden_URL, Subdivision_Name, Subdivision_ID FROM Subdivision WHERE Parent_Sub_ID = \\\$data[Subdivision_ID] and checked=1 order by priority \\\", \\\"
<li><a href='\\\\\\\$data[Hidden_URL]'>\\\\\\\$data[Subdivision_Name]</a>
<ul>
\\\\\\\".listQuery(\\\\\\\"SELECT Hidden_URL, Subdivision_Name, Subdivision_ID FROM Subdivision WHERE Parent_Sub_ID = \\\\\\\$data[Subdivision_ID] and checked=1 order by priority \\\\\\\", \\\\\\\"
<li><a href='\\\\\\\\\\\\\\\$data[Hidden_URL]'>\\\\\\\\\\\\\\\$data[Subdivision_Name]</a>
<ul>
\\\\\\\\\\\\\\\".listQuery(\\\\\\\\\\\\\\\"SELECT Hidden_URL, Subdivision_Name, Subdivision_ID FROM Subdivision WHERE Parent_Sub_ID = \\\\\\\\\\\\\\\$data[Subdivision_ID] and checked=1 order by priority \\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\"
<li><a href='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\$data[Hidden_URL]'>\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\$data[Subdivision_Name]</a>
<ul>
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\".listQuery(\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"SELECT Hidden_URL, Subdivision_Name, Subdivision_ID FROM Subdivision WHERE Parent_Sub_ID = \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\$data[Subdivision_ID] and checked=1 order by priority \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\", \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"
<li><a href='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\$data[Hidden_URL]'>\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\$data[Subdivision_Name]</a>
<ul></ul></li>
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\").\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"
</ul></li>
\\\\\\\\\\\\\\\").\\\\\\\\\\\\\\\"
</ul></li>
\\\\\\\").\\\\\\\"
</ul></li>
\\\").\\\"
</ul></li>
\").\"
</ul></li>
</li>
")."
</ul>
</div>
Вывод меню в главном макете дизайна одного сайта на базе говноCMS Netcat. Можно попроще сделать, но видимо автор торопился ;) И весь этот говнокод редактируется в textarea размерами 700x300px без всякой подсветки.