- 1
- 2
- 3
void method() {
if(true) return;
}
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
+144
void method() {
if(true) return;
}
только что встретилось, всем коллективом ржали
немного классики, что бы не забывали.
однозначно поле для действий, но все равно забавно
+152
$data = curl_init('http://'.$site.'/index/sub/');
curl_setopt($data, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($data, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($data, CURLOPT_POST, 1);
curl_setopt($data, CURLOPT_POSTFIELDS, $post);
curl_setopt($data, CURLOPT_HTTPHEADER, $headers);
curl_setopt($data, CURLOPT_COOKIEJAR, $cookie);
curl_setopt($data, CURLOPT_CONNECTTIMEOUT,$timeout);
curl_setopt($data, CURLOPT_TIMEOUT,$timeout);
//curl_setopt($data, CURLOPT_COOKIEFILE, $cookie);
$data2 = curl_exec($data);
curl_close($data);
$return = iconv('utf-8','cp1251',$data2);
if (preg_match('/Неправильный логин или пароль/Ui',$return)) return FALSE; else return TRUE;
+126
public partial class Form1 : Form
{
string str;
int количество;
public Form1(string str, int количество)
{
InitializeComponent();
str = this.str;
количество = this.количество;
}
Классный конструктор, ничего не скажешь.
А потом сидишь и удивляешься, почему же у тебя пустая строка и количество не прописалось...
+157
<?php
set_time_limit(0);
Error_Reporting(E_ALL & ~E_NOTICE);
$mail = "@rambler.ru"; //e-mail или логин от контакта
$pass = ""; //пароль от контакта
$uids = "3,5,7,8,10,15,1955,54665,233254"; //кого проверяем
function get($link,$cookie){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$link);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_COOKIE, $cookie);
$otvet = curl_exec($ch);
curl_close($ch);
return $otvet;
}
$aut=file_get_contents('http://login.vk.com/?act=login&email='.urlencode($mail).'&pass='.urlencode($pass).'&expire=&vk=');
preg_match("/id=\'s\' value=\'(.*?)\'/",$aut,$sid);
$cookie="remixsid=$sid[1];";
$res=get("http://vkontakte.ru/feed2.php",$cookie);
$feed=json_decode($res);
$id=$feed->user->id;
$count = substr_count($uids,",");
$count = $count+1;
$sig=md5(''.$id.'api_id=35569fields=has_mobileformat=JSONmethod=getProfilesuids='.$uids.'v=2.0SRkM2ws8NQ');
$res=get("http://api.vkontakte.ru/api.php?api_id=35569&fields=has_mobile&format=JSON&method=getProfiles&uids=$uids&v=2.0&sig=$sig",$cookie);
preg_match_all("/uid\":(.*?),\"first_name\":\"(.*?)\",\"last_name\":\"(.*?)\",\"has_mobile\":(.*?)\}/",$res,$info);
for($i=0;$i<$count;$i) {
$qwe=$i++;
$uidx=$info[1][$qwe];
$first_name=$info[2][$qwe];
$last_name=$info[3][$qwe];
$has_mobile=$info[4][$qwe];
print iconv('utf-8', '866', "\n--------id$uidx: $first_name $last_name [$has_mobile]--------\n\n\n"); }
?>
http://volk.hx0.ru
+144
if (digitsStr.length() < 7) {
return "+" + digitsStr.substring(0, 1) + "-" + digitsStr.substring(1, 2) + "-" + digitsStr.substring(2);
} else {
return "+" + digitsStr.substring(0, 3) + "-" + digitsStr.substring(3, 6) + "-" + digitsStr.substring(6);
}
свежий кал коллеги
−115
import xml.parsers.expat
text = 'lol'
booltext = 'false'
subs_temp = open('subs_temp.txt','w')
def start_element(name, attrs):
if (name == 'rectRegion' and attrs['h']=='7.222' and attrs['y']=='92.778'):
subs_temp.write(attrs['t'] + '\n')
global text
subs_temp.write(text + '\n')
elif (name == 'TEXT'):
global booltext
booltext = 'true'
#subs.write(name+'\n')
#print(attrs)
def char_data(data):
global text
global booltext
if (booltext == 'true'):
text = data
booltext = 'false'
p = xml.parsers.expat.ParserCreate("UTF-8")
p.StartElementHandler = start_element
p.CharacterDataHandler = char_data
p.ParseFile(open("yt.xml", 'rb'))
subs_temp.close()
subs_temp = open('subs_temp.txt','r')
subs = open('subs.txt','w')
num = 1
while num <= 44:
time1 = subs_temp.readline()
text = subs_temp.readline()
time2 = subs_temp.readline()
text = subs_temp.readline()
subs.write(str(num))
subs.write('\n0')
subs.write(time1[:-1])
subs.write('00 --> ')
subs.write(time2[:-1])
subs.write('00\n')
subs.write(text)
subs.write('\n')
num+=1
Нус, зацените мой первый опыт с питоном. Говнецо редкое, жаль просто так смывать. Так что пусть полежит здесь.
+124
char arr[] = ... // Здесь происходит чтение массива, неважно как
string result = "";
for(int i = 0; i < arr.Length; i++)
{
result += Char.ToString(arr[i]);
}
Console.WriteLine(result);
Что интересно, автор уже пол года на C# пишет, до этого 2 года на Java. Решение ко всему прочему еще и очевидно с квадратичной сложностью. А должно быть, естественно Console.WriteLine(new String(array));
+94
private static String PUBLIC = "public";
private static boolean isPublic( String addressingType ) {
return "public".equals( addressingType ) || addressingType == null;
}
+75
public void logoutSession(String sessionId)
throws SerializableException
{
if (sessionId==null) {
throw new SerializableException("Invalid RPC arguments: sessionId is missing");
}
SessionInfo session = (SessionInfo)sessions.get(sessionId);
if (session!=null) {
sessions.remove(sessionId);
SessionInfo old = (SessionInfo)sessions.get(sessionId);
}
}
+131
object FirstElement = null;
foreach(var item in SomeCollection)
{
FirstElement = item;
break;
}
Ось так от береться перший елемент з колекції :)