instruction stringclasses 70 values | input stringclasses 61 values | output stringclasses 1 value | sphere stringclasses 7 values | role stringclasses 7 values | source stringclasses 1 value |
|---|---|---|---|---|---|
Ты - ПРОГРАММИСТ. Исправь баг в коде | if x == True: return y | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 073 | sphere_073_developer | synthetic_ollama |
Ты - ПРОГРАММИСТ. Добавь обработку ошибок | try: do_something() except: pass | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 073 | sphere_073_developer | synthetic_ollama |
Ты - ПРОГРАММИСТ. Рефактори этот код | class MyClass: pass | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 073 | sphere_073_developer | synthetic_ollama |
Ты - ПРОГРАММИСТ. Реализуй паттерн проектирования | def calculate(a, b): return a + b | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 073 | sphere_073_developer | synthetic_ollama |
Ты - ПРОГРАММИСТ. Напиши unit-тест | result = [x for x in range(100)] | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 073 | sphere_073_developer | synthetic_ollama |
Ты - ПРОГРАММИСТ. Улучши читаемость кода | while True: continue | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 073 | sphere_073_developer | synthetic_ollama |
Ты - ПРОГРАММИСТ. Оптимизируй производительность | import * | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 073 | sphere_073_developer | synthetic_ollama |
Ты - ПРОГРАММИСТ. Добавь валидацию входных данных | global variable = 10 | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 073 | sphere_073_developer | synthetic_ollama |
Ты - ПРОГРАММИСТ. Напиши функцию для обработки данных | def process_data(data): return data | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 073 | sphere_073_developer | synthetic_ollama |
Ты - ПРОГРАММИСТ. Оптимизируй этот алгоритм | for i in range(len(arr)): print(arr[i]) | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 073 | sphere_073_developer | synthetic_ollama |
Ты - ПРОГРАММИСТ. Исправь баг в коде | if x == True: return y | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 073 | sphere_073_developer | synthetic_ollama |
Ты - ПРОГРАММИСТ. Добавь обработку ошибок | try: do_something() except: pass | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 073 | sphere_073_developer | synthetic_ollama |
Ты - ПРОГРАММИСТ. Рефактори этот код | class MyClass: pass | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 073 | sphere_073_developer | synthetic_ollama |
Ты - ПРОГРАММИСТ. Реализуй паттерн проектирования | def calculate(a, b): return a + b | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 073 | sphere_073_developer | synthetic_ollama |
Ты - ПРОГРАММИСТ. Напиши unit-тест | result = [x for x in range(100)] | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 073 | sphere_073_developer | synthetic_ollama |
Ты - ПРОГРАММИСТ. Улучши читаемость кода | while True: continue | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 073 | sphere_073_developer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь безопасность кода | def login(user, pwd): return user == 'admin' and pwd == '123' | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди потенциальные баги | data = json.loads(request.body); db.execute(f'SELECT * FROM users WHERE id={data['id']}') | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени читаемость кода | def process(): global result; result = complicated_calculation() | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь соответствие стандартам | try: file = open('data.txt'); data = file.read() except: pass | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди проблемы производительности | class UserManager: def __init__(self): self.users = []; self.admins = []; self.guests = [] | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени тестовое покрытие | def calculate(x, y, z, a, b, c, d, e, f): return x+y+z+a+b+c+d+e+f | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь обработку ошибок | password = request.GET['password']; user.password = password | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди code smells | while True: try: process(); break; except: continue | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени архитектурные решения | def func(x): return func(x-1) if x > 0 else 0 | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь документацию | data = None; if data: print(data.value) | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь безопасность кода | def login(user, pwd): return user == 'admin' and pwd == '123' | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди потенциальные баги | data = json.loads(request.body); db.execute(f'SELECT * FROM users WHERE id={data['id']}') | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени читаемость кода | def process(): global result; result = complicated_calculation() | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь соответствие стандартам | try: file = open('data.txt'); data = file.read() except: pass | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди проблемы производительности | class UserManager: def __init__(self): self.users = []; self.admins = []; self.guests = [] | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени тестовое покрытие | def calculate(x, y, z, a, b, c, d, e, f): return x+y+z+a+b+c+d+e+f | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь обработку ошибок | password = request.GET['password']; user.password = password | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди code smells | while True: try: process(); break; except: continue | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени архитектурные решения | def func(x): return func(x-1) if x > 0 else 0 | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь документацию | data = None; if data: print(data.value) | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь безопасность кода | def login(user, pwd): return user == 'admin' and pwd == '123' | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди потенциальные баги | data = json.loads(request.body); db.execute(f'SELECT * FROM users WHERE id={data['id']}') | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени читаемость кода | def process(): global result; result = complicated_calculation() | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь соответствие стандартам | try: file = open('data.txt'); data = file.read() except: pass | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди проблемы производительности | class UserManager: def __init__(self): self.users = []; self.admins = []; self.guests = [] | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени тестовое покрытие | def calculate(x, y, z, a, b, c, d, e, f): return x+y+z+a+b+c+d+e+f | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь обработку ошибок | password = request.GET['password']; user.password = password | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди code smells | while True: try: process(); break; except: continue | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени архитектурные решения | def func(x): return func(x-1) if x > 0 else 0 | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь документацию | data = None; if data: print(data.value) | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь безопасность кода | def login(user, pwd): return user == 'admin' and pwd == '123' | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди потенциальные баги | data = json.loads(request.body); db.execute(f'SELECT * FROM users WHERE id={data['id']}') | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени читаемость кода | def process(): global result; result = complicated_calculation() | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь соответствие стандартам | try: file = open('data.txt'); data = file.read() except: pass | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди проблемы производительности | class UserManager: def __init__(self): self.users = []; self.admins = []; self.guests = [] | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени тестовое покрытие | def calculate(x, y, z, a, b, c, d, e, f): return x+y+z+a+b+c+d+e+f | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь обработку ошибок | password = request.GET['password']; user.password = password | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди code smells | while True: try: process(); break; except: continue | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени архитектурные решения | def func(x): return func(x-1) if x > 0 else 0 | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь документацию | data = None; if data: print(data.value) | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь безопасность кода | def login(user, pwd): return user == 'admin' and pwd == '123' | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди потенциальные баги | data = json.loads(request.body); db.execute(f'SELECT * FROM users WHERE id={data['id']}') | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени читаемость кода | def process(): global result; result = complicated_calculation() | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь соответствие стандартам | try: file = open('data.txt'); data = file.read() except: pass | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди проблемы производительности | class UserManager: def __init__(self): self.users = []; self.admins = []; self.guests = [] | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени тестовое покрытие | def calculate(x, y, z, a, b, c, d, e, f): return x+y+z+a+b+c+d+e+f | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь обработку ошибок | password = request.GET['password']; user.password = password | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди code smells | while True: try: process(); break; except: continue | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени архитектурные решения | def func(x): return func(x-1) if x > 0 else 0 | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь документацию | data = None; if data: print(data.value) | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь безопасность кода | def login(user, pwd): return user == 'admin' and pwd == '123' | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди потенциальные баги | data = json.loads(request.body); db.execute(f'SELECT * FROM users WHERE id={data['id']}') | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени читаемость кода | def process(): global result; result = complicated_calculation() | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь соответствие стандартам | try: file = open('data.txt'); data = file.read() except: pass | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди проблемы производительности | class UserManager: def __init__(self): self.users = []; self.admins = []; self.guests = [] | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени тестовое покрытие | def calculate(x, y, z, a, b, c, d, e, f): return x+y+z+a+b+c+d+e+f | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь обработку ошибок | password = request.GET['password']; user.password = password | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди code smells | while True: try: process(); break; except: continue | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени архитектурные решения | def func(x): return func(x-1) if x > 0 else 0 | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь документацию | data = None; if data: print(data.value) | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь безопасность кода | def login(user, pwd): return user == 'admin' and pwd == '123' | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди потенциальные баги | data = json.loads(request.body); db.execute(f'SELECT * FROM users WHERE id={data['id']}') | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени читаемость кода | def process(): global result; result = complicated_calculation() | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь соответствие стандартам | try: file = open('data.txt'); data = file.read() except: pass | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди проблемы производительности | class UserManager: def __init__(self): self.users = []; self.admins = []; self.guests = [] | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени тестовое покрытие | def calculate(x, y, z, a, b, c, d, e, f): return x+y+z+a+b+c+d+e+f | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь обработку ошибок | password = request.GET['password']; user.password = password | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди code smells | while True: try: process(); break; except: continue | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени архитектурные решения | def func(x): return func(x-1) if x > 0 else 0 | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь документацию | data = None; if data: print(data.value) | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь безопасность кода | def login(user, pwd): return user == 'admin' and pwd == '123' | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди потенциальные баги | data = json.loads(request.body); db.execute(f'SELECT * FROM users WHERE id={data['id']}') | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени читаемость кода | def process(): global result; result = complicated_calculation() | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь соответствие стандартам | try: file = open('data.txt'); data = file.read() except: pass | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди проблемы производительности | class UserManager: def __init__(self): self.users = []; self.admins = []; self.guests = [] | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени тестовое покрытие | def calculate(x, y, z, a, b, c, d, e, f): return x+y+z+a+b+c+d+e+f | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь обработку ошибок | password = request.GET['password']; user.password = password | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди code smells | while True: try: process(); break; except: continue | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени архитектурные решения | def func(x): return func(x-1) if x > 0 else 0 | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь документацию | data = None; if data: print(data.value) | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь безопасность кода | def login(user, pwd): return user == 'admin' and pwd == '123' | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Найди потенциальные баги | data = json.loads(request.body); db.execute(f'SELECT * FROM users WHERE id={data['id']}') | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Оцени читаемость кода | def process(): global result; result = complicated_calculation() | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Ты - CODE REVIEWER. Проверь соответствие стандартам | try: file = open('data.txt'); data = file.read() except: pass | Ошибка ollama (code 1): Error: Head "http://127.0.0.1:11434/": dial tcp 127.0.0.1:11434: connect: operation not permitted | 074 | sphere_074_code_reviewer | synthetic_ollama |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.