- 1
- 2
- 3
- 4
- 5
CREATE Procedure [dbo].[usp_InsertFleets]
@SSQL text
As
EXEC(@SSQL)
GO
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
−859
CREATE Procedure [dbo].[usp_InsertFleets]
@SSQL text
As
EXEC(@SSQL)
GO
Минутка индусского кода
+145
// php5.1 to php4 functional, thanks for nic.ru fucked hosting
function html_decode($str){
if(function_exists("htmlspecialchars_decode")){
return stripslashes(htmlspecialchars_decode($str, ENT_QUOTES));
}else{
return stripslashes(str_replace(array("&", """, "'", "<", ">"), array("&", "\"", "'", "<", ">"), $str));
}
}
+101
procedure TSomeForm.DBGridEhDrawColumnCell(SomeParams);
begin
ShowRecordCount(GridDataSet);
end;
...
procedure ShowRecordCount(const FibDataSet: TpFibDataSet);
begin
FormMain.StatusBar1.Panels[2].Text := 'записей='+ IntToStr(FibDataSet.VisibleRecordCount);
FormMain.StatusBar1.Refresh;
end;
По ходу решения задачи решил-таки глянуть, почему так дико тормозит главная, вся цветная грида формы, ожидая там дикие отрисовки, а там...
+122
public enum SqlCallType {
Text = 1,
StoredProcedure = 2
}
private SqlCallType ConvertToSqlCallType(int sqlCallType) {
SqlCallType type = (SqlCallType)0;
if (sqlCallType == (int)SqlCallType.Text) {
type = SqlCallType.Text;
}
else if (sqlCallType == (int)SqlCallType.StoredProcedure) {
type = SqlCallType.StoredProcedure;
}
return type;
приведение enum-->int по индусски для enum'а с двумя значениями....
−166
import cgi
import MySQLdb
MyDB=MySQLdb.connect(host='localhost', user='root', passwd='', db='serv')
cursor=MyDB.cursor()
cursor.execute("""SELECT * FROM IndexPage WHERE id=2""")
zg1=cursor.fetchall()
zp=cgi.FieldStorage()
p=zp.has_key('pages')
lixt='lrof'
title='{TITLE}'
Block1='{BLOCK_1}'
if p==1:
print 'Content-Type: text/html\n'
sh=open(r'themplates/sh2')
res=sh.read()
...
Пхпшники пересаживаются на Питон
+155
/* use <first> of a [std::pair] */
template<typename _type_, typename _pred_>
struct use_first {
use_first(_type_ val, _pred_ pred) { value = val; predicate = pred; }
template<typename _first_type_, typename _second_type_>
bool operator()(const std::pair<_first_type_, _second_type_> &pr)
{
return predicate(pr.first, value);
}
private:
_type_ value;
_pred_ predicate;
};
/* factory function: use it to init a [use_first] object */
template<typename _type_, typename _pred_>
use_first<_type_, _pred_> make_use_first(_type_ value, _pred_ pred)
{
return use_first<_type_, _pred_>(value, pred);
}
/* usage of [use_first] */
std::vector< std::pair<int, int> > lol;
std::vector< std::pair<int, int> >::iterator = std::find_if(lol.begin(), lol.end(), make_use_first(0, std::equal_to()));
собственно была проблема в том, что в контейнерах(например std::vector, std::deque) хранятся пары(std::pair) и зачастую нужно организовать какие-либо действия либо по первому(first), либо по второму(second) члену из std::pair.
приведен код только для first, ибо код для second немного похож
в итоге получилось сие поделие, а еще я люблю обмазаться несвежим....
+114
Ссылка ниже, там много всего, наиболее яркие моменты:
1.
String Conn = (String)((NameValueCollection)Context.GetConfig("system.web/dsnstore"))["sql_site"];
2.
qGetSum = new SqlCommand("select abs(ISNULL(sum(doc_bonus),0)) from vdoc where card_id = " + Session["card_id"] + " and dbo.Get_storno(doc_id) = 1", cGetSum);
3.
SqlConnection cDiscount2 = new SqlConnection(Conn);
SqlConnection cDiscount3 = new SqlConnection(Conn);
4.
log.Text = "Вы определены как:<br><b>" + Session["login"] + "<br><br></b>Бонус:<b>" + Session["bonus"] + "<br><br><a href=\"default.aspx?page=cardedit\">Личная карточка</a></b><br><br>";
5.
Имена переменных: card_prefix, error_login_count, logoCMD,
6.
Session["access"] = 1;
Session["access"] = -1;
Session["access"] = -2;
http://www.cyberforum.ru/asp-net/thread195915.html
+163
if (!fwrite($file,"<?php //конфигурационный файл
\$dbpt='$path';
\$dbus='$user';
\$dbps='$pswrd';
\$dbdb='$dbname';
\$dbpr='$dbtbpr';
?>"))
{
echo '3';
exit;
}
fclose($file);
mysql_select_db($dbname);
if (!mysql_query("create table {$dbtbpr}settings(nm varchar(255),about text, title varchar(255),link varchar(255))"))
{
echo '4';
exit;
}
if (!mysql_query("create table {$dbtbpr}remembers(id int,hash text,cookie text,pass text"))
{
echo '4';
exit;
}
+145
if (mode == MASTER)
Dev_Mode = MASTER;
else
Dev_Mode = SLAVE;
−101
Dim lcIsCheck As Boolean = False
Dim lcImages As DS_ExportFIO.sdImageRow = Me.DS_ExportFIO1.sdImage.Rows(0)
If lcImages!Photo Is DBNull.Value Then
lcIsCheck = IIf(lcIsCheck, lcIsCheck, False)
Else
lcIsCheck = True
End If
If lcImages!PhotoIshodn Is DBNull.Value Then
lcIsCheck = IIf(lcIsCheck, lcIsCheck, False)
Else
lcIsCheck = True
End If
If lcImages!Sign Is DBNull.Value Then
lcIsCheck = IIf(lcIsCheck, lcIsCheck, False)
Else
lcIsCheck = True
End If
If lcImages!SignIshod Is DBNull.Value Then
lcIsCheck = IIf(lcIsCheck, lcIsCheck, False)
Else
lcIsCheck = True
End If
Return lcIsCheck
хм... даже не знаю, как окоментить =)