row_id
int64
0
48.4k
init_message
stringlengths
1
342k
conversation_hash
stringlengths
32
32
scores
dict
32,222
Voisitko kirjoittaa nämä englanniksi? Minun pitää tehdä tutkimus
dc85acc48c016f434176154e9074257d
{ "intermediate": 0.3652220070362091, "beginner": 0.2976287603378296, "expert": 0.3371492028236389 }
32,223
make it use tiles instead of random lines: extends Node2D var grid_size = Vector2(50, 50) # Change to desired grid size var cell_size = 10 # Change to the size of each cell in pixels var grid = [] var update_rate = 0.5 # Seconds func _ready(): initialize_grid() update_grid() var timer = Timer.new() timer.set_wai...
290cc78d19252af8cef7fec90119b505
{ "intermediate": 0.439635694026947, "beginner": 0.295994371175766, "expert": 0.2643698751926422 }
32,224
this is my custom grid class but I am having errors: #ifndef CUSTOMGRID_H #define CUSTOMGRID_H #include <wx/grid.h> #include <set> class CustomGrid : public wxGrid { public: CustomGrid(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, ...
3bae787335a9767c82eca872c8638eac
{ "intermediate": 0.34991803765296936, "beginner": 0.38625550270080566, "expert": 0.263826459646225 }
32,225
make the generator use the tilemap instead of random lines, got walls and floor tiles: extends Node2D var grid_size = Vector2(50, 50) # Change to desired grid size var cell_size = 10 # Change to the size of each cell in pixels var grid = [] var update_rate = 0.5 # Seconds func _ready(): initialize_grid() update_gr...
5764135c35000b9f68d241a824508ecf
{ "intermediate": 0.41207355260849, "beginner": 0.29394084215164185, "expert": 0.29398560523986816 }
32,226
i need a code to make a voting model between output between SVM, LST and Bi-LSTM
ef3194722e122e5db2056bc87c3b9004
{ "intermediate": 0.20245784521102905, "beginner": 0.056725986301898956, "expert": 0.7408161759376526 }
32,227
In the context of LVM 2 caching and Debian GNU/Linux, is it possible to only have writeback caching only be enabled for certain directories or to somehow control when and where writethrough or writeback cache is being used?
42a47642d739e5a6a49da3601b2f0950
{ "intermediate": 0.33183473348617554, "beginner": 0.251946359872818, "expert": 0.4162188768386841 }
32,228
Assignment 1: Install Linux1. Install Ubuntu Server in your VM by following the instructions in the video: Video Lecture 02 - Installing UbuntuServer in a VM2. Use the following when installing the server:a. Set your username to be your first nameb. Set your hostname to be the first 3 letters of your last name + your s...
4641f865e0c2be03c3c279884c5ac1a7
{ "intermediate": 0.33569514751434326, "beginner": 0.3405802845954895, "expert": 0.32372456789016724 }
32,229
сделай красивое горизонтальное меню в css Код: <div class=“mobile-menu-open-button js_mobile_menu_open_button”><i class=“fas fa-bars”></i></div> <nav class=“js_wide_menu”> <i class=“fas fa-times close-mobile-menu js_close_mobile_menu”></i> <div class=“wrapper-inside”> <div class=“visible-elements”> <a class=“links_nav”...
302c9730563353db84414b7b2cac62f4
{ "intermediate": 0.34868982434272766, "beginner": 0.3086482584476471, "expert": 0.34266194701194763 }
32,230
python2 ktf.console Traceback (most recent call last): File "ktf.console", line 9, in <module> from core.MainListLibrary import * File "/home/noname/Desktop/KatanaFramework/core/MainListLibrary.py", line 37, in <module> from Function import Executefunction File "/home/noname/Desktop/KatanaFramework/core/F...
37aa72cec5aec7e6b34a96fecea662eb
{ "intermediate": 0.5498183965682983, "beginner": 0.30261823534965515, "expert": 0.1475633680820465 }
32,231
How can one generate an integer pseudorandomly in Bash (on Debian GNU/Linux)? Be concise.
f8858bb07e5dfafb6c62e796afbe49c8
{ "intermediate": 0.42541179060935974, "beginner": 0.20385073125362396, "expert": 0.3707374632358551 }
32,232
This is my code: fn parallel_parse<'a>(s: &'a str) -> Vec<Vec<&'a str>> { s.par_lines() .map(|line_result| { line_result .map_err(|e| e.into()) .and_then(|line| BedRecord::parse(&s)) }) .collect(); } fn main() { let start = std::time::Instant...
44f68b284a82563627f7ec78209a1ef8
{ "intermediate": 0.30403465032577515, "beginner": 0.5755499601364136, "expert": 0.12041543424129486 }
32,233
Help me fix these errors: CustomGrid.cpp||In member function ‘virtual void CustomGrid::DrawRowLabel(wxDC&, int)’:| CustomGrid.cpp|31|error: no matching function for call to ‘CustomGrid::GetRowLabelSize(int&)’| /usr/local/include/wx-3.1/wx/generic/grid.h|1801|note: candidate: ‘int wxGrid::GetRowLabelSize() const’| /usr...
4fee6131375c970bdbd75972249b4ec6
{ "intermediate": 0.4228922426700592, "beginner": 0.3629480004310608, "expert": 0.21415975689888 }
32,234
Is there a command in Bash on Debian that gives the device name for a corresponding UUID? Be very concise.
1b261ec7b2ac33603598126c6ff594a4
{ "intermediate": 0.4674924314022064, "beginner": 0.23979505896568298, "expert": 0.292712539434433 }
32,235
Write a function that receives as parameters one tuple, one character and one integer This function should return a tuple similar to that of the parameter, but in which the element at the index of the integer is the character passed as a parameter (think how you’d do that with a string)
c0cd417f9aeaf69805bf33fa0e95bb0b
{ "intermediate": 0.3114672899246216, "beginner": 0.4471363127231598, "expert": 0.24139638245105743 }
32,236
C# play sound
3caaf338a90d3f34dc14908e3fc1633a
{ "intermediate": 0.40023958683013916, "beginner": 0.4543338119983673, "expert": 0.14542663097381592 }
32,237
What are your thoughts on this implementation: fn main() { let bedfile = "/home/alejandro/Documents/unam/TOGA_old_versions/x/bed_gencode_tmp/gencode.v44.bed"; let isoforms = "/home/alejandro/Documents/unam/TOGA_old_versions/x/bed_gencode_tmp/gencode_isoforms.txt"; let bed = bed_reader(bedf...
85ac86adab955d87457210a7af655b4c
{ "intermediate": 0.5565158724784851, "beginner": 0.27648910880088806, "expert": 0.1669950932264328 }
32,238
Is there a bash on Debian command that can convert a device input string or whatever the proper terminology is like /dev/vda1 to /dev/vda?
b1148b558be0f5980dedfe1f25b68362
{ "intermediate": 0.5671458840370178, "beginner": 0.20778760313987732, "expert": 0.22506655752658844 }
32,239
На js название вывело, а изображение нет: <img src="data:image/jpeg;base64,${product.image}" alt="${product.Nazvanie}">
a4ac915bdd05821a270cbd252cdccbd5
{ "intermediate": 0.40167009830474854, "beginner": 0.31406593322753906, "expert": 0.2842640280723572 }
32,240
Continue my abruptly-ended previous ChatGPT instance.: Is there a bash on Debian command that can convert a device input string or whatever the proper terminology is like /dev/vda1 to /dev/vda? Yes, you can use the basename command to convert a device input string by removing the trailing number or character. Here’s an...
1dbd47ecd38a906ff62a2db2435c2475
{ "intermediate": 0.549963653087616, "beginner": 0.17124634981155396, "expert": 0.27879008650779724 }
32,241
How can I know that a (Bash) script from /etc/initramfs-tools/scripts/init-premount is being run or not (in Debian GNU/Linux)?
f27614e5879db8f515178d1320b335b6
{ "intermediate": 0.5725057721138, "beginner": 0.27846968173980713, "expert": 0.14902456104755402 }
32,242
Hi! I'm quite new to programming, but I recently had an idea of combining React, Django, and PostGreSQL to create a complex but useful quiz app to help with anatomy bellringers. I'll give you a detailed description of the features I need for the project. Ok, so I’ll start by explaining the database structure I’m lookin...
e62ea5980fd1d69d744f0239c182e903
{ "intermediate": 0.3834565281867981, "beginner": 0.3108835816383362, "expert": 0.3056598901748657 }
32,243
Can you provide an .obj file for the surface of a sphere, divided and separated into three identical non-polar portions?
4424a8c30a061fbca945c3d6cfc97dce
{ "intermediate": 0.43278348445892334, "beginner": 0.2674223482608795, "expert": 0.29979416728019714 }
32,244
from flask_sqlalchemy import SQLAlchemy from flask import Flask from flask_login import LoginManager db = SQLAlchemy() login_manager = LoginManager() login_manager.login_view = 'fetch.login_post' app = Flask(__name__) app.config['SQLALCHEMY_DATABASE_URI'] = 'postgresql://postgres:Ln3486160@localhost:5432/RPP_2.3' a...
1fd3d333dafcb5d9413a015131de36b1
{ "intermediate": 0.5455795526504517, "beginner": 0.21290495991706848, "expert": 0.24151545763015747 }
32,245
Create table Activity (player_id int, device_id int, event_date date, games_played int) Truncate table Activity insert into Activity (player_id, device_id, event_date, games_played) values ('1', '2', '2016-03-01', '5') insert into Activity (player_id, device_id, event_date, games_played) values ('1', '2', '2016-05-02',...
0fceb7a7b95384a1e5212ddfb36c1150
{ "intermediate": 0.3755728602409363, "beginner": 0.2862001955509186, "expert": 0.33822694420814514 }
32,246
I am running the following code, but I want to add code that lets me know how long it takes to complete: import openpyxl # Open the input Excel workbook and get the sheet object input_wb = openpyxl.load_workbook('input.xlsx') input_sheet = input_wb['Sheet1'] # Get the range of cells containing the prompts prompts = i...
24a358ccf3ff04e5d251b564f3d0988b
{ "intermediate": 0.31433382630348206, "beginner": 0.5096892714500427, "expert": 0.1759769171476364 }
32,247
I want a script that causes a player to die when they step on it (roblox script)
51885570cbd16fb69c63c176c1a9fe0e
{ "intermediate": 0.3077515661716461, "beginner": 0.24509479105472565, "expert": 0.4471536874771118 }
32,248
Create table Employee (empId int, name varchar(255), supervisor int, salary int) Create table Bonus (empId int, bonus int) Truncate table Employee insert into Employee (empId, name, supervisor, salary) values ('3', 'Brad', NULL, '4000') insert into Employee (empId, name, supervisor, salary) values ('1', 'John', '3', '1...
3c11e67704f7508932d2550533e06376
{ "intermediate": 0.33657175302505493, "beginner": 0.29344215989112854, "expert": 0.36998608708381653 }
32,249
Define a function sel_sort to implement the straight selection sort on a list. Similar to the ins_sort on Slide 11, you need to define a local function sel to move the mini- mum element to the head position. Justify if your implementation is a stable sorting algorithm.
31c4e6ec56d2926cca0cfde46ec56770
{ "intermediate": 0.2402002513408661, "beginner": 0.20071136951446533, "expert": 0.5590883493423462 }
32,250
Define a function balance :: Ord 𝑎 => [𝑎] -> Tree 𝑎 that converts a list of increasingly ordered elements into a balanced search tree. Hint: first define a function that splits a list into two halves whose length differs by at most one. use haskell code
572553507769fa2b2296225afa4dc68c
{ "intermediate": 0.2845548391342163, "beginner": 0.3501121699810028, "expert": 0.3653329610824585 }
32,251
monthly income, monthly expense then based on my savings i want to check how much loan i will get and that loan amount repayment at particular rate of interest and how much my monthly emi will be, please give me kotlin code
5fe41032bee874c59c562f3833745dfb
{ "intermediate": 0.43577292561531067, "beginner": 0.28265711665153503, "expert": 0.2815699875354767 }
32,252
monthly income, monthly expense then based on my savings i want to check how much loan i will get and that loan amount repayment at particular rate of interest and how much my monthly emi will be, please give me kotlin code
04b2aa3f32181de335e4d259c3e7b892
{ "intermediate": 0.43577292561531067, "beginner": 0.28265711665153503, "expert": 0.2815699875354767 }
32,253
check this function: fn find_first_codon(record: &BedRecord) -> Codon { let mut codon = Codon::new(); let mut exon = 0; for k in 0..record.get_exon_frames().len() { if record.get_exon_frames()[k] >= 0 { exon = k; break; } else { return codon; } ...
51a4c0ecdab99ddc3841c887e09d8d55
{ "intermediate": 0.402569055557251, "beginner": 0.30460095405578613, "expert": 0.2928300201892853 }
32,254
You are an expert Rust programmer. This is the implementation of one of your students: fn find_first_codon(record: &BedRecord) -> Codon { let mut codon = Codon::new(); let mut exon = 0; for k in 0..record.get_exon_frames().len() { if record.get_exon_frames()[k] >= 0 { exon = k; ...
3c0970d255792808553fbee444a88e44
{ "intermediate": 0.39766252040863037, "beginner": 0.3998851776123047, "expert": 0.20245225727558136 }
32,255
You are an expert Rust programmer. This is the implementation of one of your students: fn find_first_codon(record: &BedRecord) -> Codon { let mut codon = Codon::new(); let mut exon = 0; for k in 0…record.get_exon_frames().len() { if record.get_exon_frames()[k] >= 0 { exon = k; break; } else { return codon; } } let c...
1c3572fd7ae8ef7dded744b66112e1d5
{ "intermediate": 0.3602796792984009, "beginner": 0.35266971588134766, "expert": 0.2870505452156067 }
32,256
hello
cce298382a62f8eb5f160f4b984c471f
{ "intermediate": 0.32064199447631836, "beginner": 0.28176039457321167, "expert": 0.39759764075279236 }
32,257
image = cv2.imread("0.0/01.pgm", cv2.COLOR_BGR2GRAY) IMAGE_THRESHOLD = 100 def get_coords_by_threshold( image: np.ndarray, threshold: int = IMAGE_THRESHOLD ) -> tuple: """Gets pixel coords with intensity more then 'theshold'.""" coords = np.where(image > threshold) return coords def delete_pixe...
7cea54d95ecc8d590fbd13965e4eb146
{ "intermediate": 0.27387356758117676, "beginner": 0.47204846143722534, "expert": 0.2540779411792755 }
32,258
review this implementation: pub fn first_codon(record: &BedRecord) -> Option<Codon> { let exon_frames = record.get_frames(); record .exon_start .iter() .zip(record.exon_end.iter()) .enumerate() .find_map(|(mut index, (&start, &end))| { let mut codon = Codon::...
c3a7616bd795a5fc19a4144c528cfa89
{ "intermediate": 0.3962685763835907, "beginner": 0.38816267251968384, "expert": 0.21556873619556427 }
32,259
image = cv2.imread("0.0/01.pgm", cv2.COLOR_BGR2GRAY) IMAGE_THRESHOLD = 100 def get_coords_by_threshold( image: np.ndarray, threshold: int = IMAGE_THRESHOLD ) -> tuple: """Gets pixel coords with intensity more then 'theshold'.""" coords = np.where(image > threshold) return coords def delete_pixe...
7a7d35abbe8a0969eec5c48810341f19
{ "intermediate": 0.27387356758117676, "beginner": 0.47204846143722534, "expert": 0.2540779411792755 }
32,260
based on this model: pub fn first_codon(record: &BedRecord) -> Option<Codon> { let exon_frames = record.get_frames(); record .exon_start .iter() .zip(record.exon_end.iter()) .enumerate() .find_map(|(mut index, (&start, &end))| { let mut codon = Codon::new();...
2436aee76ddc2e2ce16f24c6bb84f93c
{ "intermediate": 0.32614654302597046, "beginner": 0.3981665074825287, "expert": 0.27568694949150085 }
32,261
explain the purpose, design and usage of c# IUrlHelperFactory class ?
7f4b5abd43712eb277b5b5db592825ee
{ "intermediate": 0.7082486748695374, "beginner": 0.20103031396865845, "expert": 0.09072105586528778 }
32,262
in asp.net core, i find below code in tag helper class hard to understand, what does it actually do?
188059d9461adf927ccfac26bf82925a
{ "intermediate": 0.45059317350387573, "beginner": 0.31499579548835754, "expert": 0.23441100120544434 }
32,263
image = cv2.imread("0.6/00.pgm", cv2.COLOR_BGR2GRAY) IMAGE_THRESHOLD = 100 def get_coords_by_threshold( image: np.ndarray, threshold: int = IMAGE_THRESHOLD ) -> tuple: """Gets pixel coords with intensity more then 'theshold'.""" coords = np.where(image > threshold) return coords def delete_pixe...
87591ce08fb9768f9b0493e641f9d563
{ "intermediate": 0.27253299951553345, "beginner": 0.4749148190021515, "expert": 0.25255218148231506 }
32,264
Create a full html css js resume page for a junior web developer using bootstrap 5
eaf7a2ccea1ed4b6825ef0a4129b7d39
{ "intermediate": 0.3556320369243622, "beginner": 0.32851719856262207, "expert": 0.31585079431533813 }
32,265
write a matlab program to accept a number from the user and check if the number even or odd
f19d6f64f9bdb44f0151f58293bd49db
{ "intermediate": 0.3018113672733307, "beginner": 0.12462243437767029, "expert": 0.5735661387443542 }
32,266
I used this code: def signal_generator(df): if df is None or len(df) < 2: return '' signal = [] final_signal = [] exit = [] sell_result = 0.0 buy_result = 0.0 mark_price_data = client.ticker_price(symbol=symbol) mp = float(mark_price_data['price']) if 'price' in mark_pric...
b1ae12271f332fbe9c6815dfbd3387a9
{ "intermediate": 0.2767973840236664, "beginner": 0.46565476059913635, "expert": 0.2575478255748749 }
32,267
import cv2 import os import pickle import face_recognition # Загрузка известных лиц known_faces = pickle.load(open("known_faces.pkl", "rb")) while True: # Загрузка изображения video_capture = cv2.VideoCapture(0) ret, frame = video_capture.read() # Поиск лиц на изображении face_locations = face_rec...
815360a405692d274cda09379be672b7
{ "intermediate": 0.2817300856113434, "beginner": 0.5050528049468994, "expert": 0.21321706473827362 }
32,268
I have this code: def signal_generator(df): if df is None or len(df) < 2: return '' signal = [] final_signal = [] exit = [] sell_result = 0.0 buy_result = 0.0 mark_price_data = client.ticker_price(symbol=symbol) mp = float(mark_price_data['price']) if 'price' in mark_pric...
85af0ca398e07e7a8e552a01c7ee1885
{ "intermediate": 0.3305797874927521, "beginner": 0.4640094041824341, "expert": 0.205410897731781 }
32,269
Question 1 Given in request ids as an array of strings, requests, and an integer k, after all requests are received, find the & most recent requests. Report the answer in order of most recent to least recent, Example: Suppose n5, requests [item1", "item2", "item3", "item1", "item 31 and k=3 Starting from the right ...
fa38d68b2719a81133342a603f23ce29
{ "intermediate": 0.3785433769226074, "beginner": 0.3142085075378418, "expert": 0.3072480857372284 }
32,270
Question 1 Given in request ids as an array of strings, requests, and an integer k, after all requests are received, find the & most recent requests. Report the answer in order of most recent to least recent, Example: Suppose n5, requests [item1", "item2", "item3", "item1", "item 31 and k=3 Starting from the right ...
af96f3c8c8b2ff407303a58d99cff1d8
{ "intermediate": 0.3785433769226074, "beginner": 0.3142085075378418, "expert": 0.3072480857372284 }
32,271
// Decompiled by AS3 Sorcerer 6.78 // www.buraks.com/as3sorcerer //forms.MainPanel package forms { import flash.display.Sprite; import flash.display.Bitmap; import controls.rangicons.RangIconNormal; import controls.PlayerInfo; import controls.ButtonXP; import flash.events.MouseEvent; impor...
a526c0217fec3f618a979456e9130976
{ "intermediate": 0.31667429208755493, "beginner": 0.4828342795372009, "expert": 0.20049139857292175 }
32,272
Как мне сделать проверку на орфографию при вводе интересов с помощью PySpellChecker? Нужно, чтоб если бот видел орфографическую ошибку, он предлагал ее заменить правильным написанием слова, а вместе с сообщением об этом 2 инлайн кнопки: «Да, изменить» и «Нет, оставить как есть» import logging import asyncio import ai...
df01b80243ed824377ff3464d56edd61
{ "intermediate": 0.3205738663673401, "beginner": 0.5738300085067749, "expert": 0.10559611767530441 }
32,273
Нужно сделать так, чтобы бот отвечал на любое сообщение, не связанное с его функционалом. Нужно, чтобы он писал «Я не понимаю тебя. Пожалуйста, воспользуйся кнопками или нажми /start import logging import asyncio import aiosqlite from aiogram import Bot, Dispatcher, executor, types from aiogram.contrib.middlewares.l...
0bfcb63f53cfdd5bf2c5f7a0d085ef2e
{ "intermediate": 0.3574736714363098, "beginner": 0.5369703769683838, "expert": 0.10555596649646759 }
32,274
Traceback (most recent call last): File "C:\Users\Insane\PycharmProjects\ask_dps_spb_bot\main.py", line 48, in <module> main() File "C:\Users\Insane\PycharmProjects\ask_dps_spb_bot\main.py", line 37, in main updater = Updater(TOKEN) ^^^^^^^^^^^^^^ TypeError: Updater.__init__() missing 1 requir...
1c525e30b41d410f1ce7ba011a371fb0
{ "intermediate": 0.3520039916038513, "beginner": 0.2906874716281891, "expert": 0.357308566570282 }
32,275
Помоги исправить ошибки компиляции. Код на C++ #include "Intersector.h" #include "Figure.h" #include <string> template <typename T> static inline bool isCircle(T figure) //static { Circle* circle = dynamic_cast(figure1); if (circle != nullptr) { return true; } else { return false; } } template <typename T>...
1cf56a3a41c56da215fab78522975dcd
{ "intermediate": 0.23559676110744476, "beginner": 0.5613300800323486, "expert": 0.2030731439590454 }
32,276
Как исправить ошибку C:\Users\Insane\AppData\Local\Programs\Python\Python312\python.exe C:\Users\Insane\PycharmProjects\ask_dps_spb_bot\main.py Traceback (most recent call last): File "C:\Users\Insane\PycharmProjects\ask_dps_spb_bot\main.py", line 2, in <module> from telegram.ext import Updater, CommandHandler, ...
586fd3b4fe45bd8aea620fe621613b53
{ "intermediate": 0.6367368102073669, "beginner": 0.2130458652973175, "expert": 0.15021732449531555 }
32,277
in asp.net core tag helper class, we can see something like "public override void Process(TagHelperContext context, TagHelperOutput output) {}", so what do the parameters in it mean?
066ebd94742ea8bfd1b6af235086bdcd
{ "intermediate": 0.4559122323989868, "beginner": 0.4419926702976227, "expert": 0.10209507495164871 }
32,278
import cv2 import tkinter as tk from tkinter import messagebox from datetime import datetime from PIL import Image, ImageTk import os import pickle import face_recognition # Загрузка известных лиц known_faces = pickle.load(open("known_faces.pkl", "rb")) root = tk.Tk() root.title("Face Recognition") # Функция для об...
c792fb62770391b17ebc73f1bb6b7161
{ "intermediate": 0.35386183857917786, "beginner": 0.4929375946521759, "expert": 0.15320058166980743 }
32,279
c sharp coding for quix application
e1e52fd16337a68e42c4ff627a643f28
{ "intermediate": 0.3211878538131714, "beginner": 0.35446950793266296, "expert": 0.32434260845184326 }
32,280
from telegram import Update, Bot from telegram.ext import Updater, CommandHandler, MessageHandler, filters, CallbackContext import logging # Введите здесь токен, полученный от BotFather TOKEN = '6945390760:AAGoty7L52fuz5l--zOuGxqubOw8QD5FAwA' # Логирование logging.basicConfig(format='%(asctime)s - %(name)s - %(leveln...
02896858aff4c965ed9460c3f4947c45
{ "intermediate": 0.470135360956192, "beginner": 0.38802236318588257, "expert": 0.1418423354625702 }
32,281
write a song abut women empowerment in odia
e918d7bb24a12886dcc978390cd56a4c
{ "intermediate": 0.42074650526046753, "beginner": 0.29337039589881897, "expert": 0.2858831286430359 }
32,282
import cv2 import tkinter as tk from tkinter import messagebox from datetime import datetime from PIL import Image, ImageTk import os import pickle import face_recognition root = tk.Tk() root.title("Face Recognition") def open_registration_form(): registration_window = tk.Toplevel(root) registration_window....
5786c62cb84eea0d8925a837344fe9d8
{ "intermediate": 0.3868790864944458, "beginner": 0.49833473563194275, "expert": 0.11478617042303085 }
32,283
quiz game application in c sharp
c430024f6b13cc6d8dbfaf402e9e286a
{ "intermediate": 0.23126308619976044, "beginner": 0.4848293662071228, "expert": 0.28390759229660034 }
32,284
How to integrate Large Language Models with Knowledge Graphs?
a79ca081a8b0f76aad47d61ec56bd107
{ "intermediate": 0.2518896162509918, "beginner": 0.1749449521303177, "expert": 0.5731654167175293 }
32,285
Performance is a crucial aspect of any mobile application, especially when preparing for release. A smooth and responsive user experience ensures that your users have a pleasant time interacting with your app. Same happened with me at work. We are developing our application in react native but to my surprise, it could...
d06acbd5e3bf06ca6ad78af8f5b104eb
{ "intermediate": 0.345873087644577, "beginner": 0.3348712921142578, "expert": 0.3192555904388428 }
32,286
def load_known_faces(folder_path): known_faces = [] known_names = [] for name in os.listdir(folder_path): person_folder = os.path.join(folder_path, name) if not os.path.isdir(person_folder): continue for image_name in os.listdir(person_folder): image_path = ...
d936e21d9dd490d54393a502a8a2b8b4
{ "intermediate": 0.3884156346321106, "beginner": 0.25924763083457947, "expert": 0.35233673453330994 }
32,287
import cv2 import tkinter as tk from tkinter import messagebox from datetime import datetime from PIL import Image, ImageTk import os import pickle import face_recognition сделай программу которая распознает лица на вебкамере по фотографиям изветных людей, которые хранятся в определенной папке и постоянно пополняются
db5701fe7cdc63814b7c7ee262a11aa0
{ "intermediate": 0.376330703496933, "beginner": 0.32692018151283264, "expert": 0.2967491149902344 }
32,288
import cv2 import tkinter as tk from tkinter import messagebox from datetime import datetime from PIL import Image, ImageTk import os import pickle import face_recognition def load_known_faces(folder_path): known_faces = [] known_names = [] for name in os.listdir(folder_path): person_folder = os....
e8e9467c4ed1ffd5c0e84e05edb79c6c
{ "intermediate": 0.22640597820281982, "beginner": 0.5610851645469666, "expert": 0.21250879764556885 }
32,289
I'm using a plugin called better terrain and the two tiles are named floor and wall, I wanna use that when creating the generated map: extends Node2D var grid_size = Vector2(50, 50) # Change to desired grid size var cell_size = 10 # Change to the size of each cell in pixels var grid = [] var update_rate = 0.5 # Secon...
1a8354102627fbd7146c93db2c006401
{ "intermediate": 0.34565821290016174, "beginner": 0.43981707096099854, "expert": 0.21452473104000092 }
32,290
from transformers import BertTokenizer, TFBertModel import numpy as np import pandas as pd from sklearn.feature_extraction.text import TfidfVectorizer from sklearn.model_selection import train_test_split from sklearn.svm import SVC from sklearn.metrics import classification_report # Load Quora dataset quora_data = pd....
4c7ec79423d6177fa505949f6163e865
{ "intermediate": 0.33979347348213196, "beginner": 0.4478459358215332, "expert": 0.21236063539981842 }
32,291
import cv2 import tkinter as tk from tkinter import messagebox from datetime import datetime from PIL import Image, ImageTk import os import pickle import face_recognition def add_new_user(known_faces, known_names): video = cv2.VideoCapture(0) # Веб-камера while True: ret, frame = video.read() ...
1cf667a682ad91ea4eb2c48ff5f47d2b
{ "intermediate": 0.39294305443763733, "beginner": 0.4419197142124176, "expert": 0.16513723134994507 }
32,292
import cv2 import tkinter as tk from tkinter import messagebox from datetime import datetime from PIL import Image, ImageTk import os import pickle import face_recognition def add_new_user(known_faces, known_names): video = cv2.VideoCapture(0) # Веб-камера while True: ret, frame = video.read() # Определение лиц н...
f53c335ffa09b96569f7bb184712ecfa
{ "intermediate": 0.35131165385246277, "beginner": 0.4068478047847748, "expert": 0.24184052646160126 }
32,293
Fix this code to print out the Febonacci sequence “ #include <stdio.h> void main () { long int f1=1,f2=1; int i; printf("The febonacci sequence is\n"); for(i=1;i<=20;i++); { printf (" %12ld %12ld", f1,f2); if(1%2==0)printf("\n"); f1=f1+f2; f2=f2+f1; } }”
58a9a60deb0ec5b3c181a386adf6e481
{ "intermediate": 0.3158767521381378, "beginner": 0.5616063475608826, "expert": 0.1225169375538826 }
32,294
Google sheet, if I want to input in A1, it will automatically display the total of minus in cell A1
5e9c5c26e547ab64ff30a3b0b91d7474
{ "intermediate": 0.34115472435951233, "beginner": 0.2306446135044098, "expert": 0.4282006621360779 }
32,295
hi
b98d6d9600ee74d79d8334f24dd7e969
{ "intermediate": 0.3246487081050873, "beginner": 0.27135494351387024, "expert": 0.40399640798568726 }
32,296
"import os import numpy as np import random as rn import tensorflow as tf import pandas as pd from keras.models import Sequential from keras.layers import Dense, LSTM, TimeDistributed, Flatten, Dropout, Conv1D, Bidirectional, ELU from sklearn.preprocessing import MinMaxScaler from sklearn.metrics import mean_squared_er...
43090baae72a5ec1d8552239928f9fc5
{ "intermediate": 0.3971017897129059, "beginner": 0.24824215471744537, "expert": 0.3546561002731323 }
32,297
Hi
e34cd5319c3350b5ff895bd44cb9d890
{ "intermediate": 0.33010533452033997, "beginner": 0.26984941959381104, "expert": 0.400045245885849 }
32,298
Please solve this problem:Suppose there are three genes 𝐺𝑖 , 𝑖 = 1, 2, whose presence are believed to cause some symptoms 𝑆𝑖 (e.g., the presence of tumors). The doctors cannot directly observe the genotypes, so they have to assign the treatments based on the symptoms. Now the doctors want to evaluate the performan...
8e6c4aeb41381c788cf6473100fba561
{ "intermediate": 0.2689976692199707, "beginner": 0.4512259364128113, "expert": 0.2797764241695404 }
32,299
import org.bukkit.Material; import org.bukkit.configuration.file.FileConfiguration; import org.bukkit.event.EventHandler; import org.bukkit.event.Listener; import org.bukkit.event.block.BlockBreakEvent; public class BlockBreakListener implements Listener { @EventHandler public void onBlockBreak(BlockBreakEvent event)...
4550c0e03218c1a01de3d53b1de8e390
{ "intermediate": 0.4240448772907257, "beginner": 0.26157107949256897, "expert": 0.3143840730190277 }
32,300
как сделать так чтобы с предметами в меню нельзя было никак взаимодействовать майнкрафт спигот 1.12.2
9b0314304c7e76d25a5a21f05a41b0ca
{ "intermediate": 0.3287138044834137, "beginner": 0.24741558730602264, "expert": 0.42387059330940247 }
32,301
У меня ругается компилятор на "player.GetCollider()" в строке "platform1.GetCollider().checkCollision(player.GetCollider(), 0.0f);". Причина: ошибка C2664 (невозможно преобразовать Collider в Collider&), “initial value of reference to non-const must be an lvalue”. Тебе хватит этой информации для помощи или нужно ещё чт...
40fe9070a5268327e0278d00a7bd1396
{ "intermediate": 0.3664931058883667, "beginner": 0.380980521440506, "expert": 0.2525264024734497 }
32,302
I have those constants: mark_price_data = client.ticker_price(symbol=symbol) mp = float(mark_price_data['price']) if 'price' in mark_price_data else 0.0 mark_price_data_change = client.ticker_24hr_price_change(symbol=symbol) mark_price_percent = float(mark_price_data_change['priceChangePercent']) if 'p...
8d05d67fc4e5534747b2cc0c50c613c7
{ "intermediate": 0.5991870760917664, "beginner": 0.15598098933696747, "expert": 0.24483199417591095 }
32,303
Implement the breadth-first numbering by simulating lazy evaluation in Python or Java.
6fe306330c9bc17a1b4d714e89dc4293
{ "intermediate": 0.31298497319221497, "beginner": 0.10589912533760071, "expert": 0.5811159014701843 }
32,304
give me the speech for the first speaker of proposition side and provide essential arguments and contextualize for the following topic: This house supports the rise of AI companions.
a7382e00b4db7417a79f3ef51a7f5e18
{ "intermediate": 0.15288886427879333, "beginner": 0.1273537576198578, "expert": 0.7197573781013489 }
32,305
Think about the right-association problem of the grammar, and find out how to solve it. Base you solution on Parser.hs and save it as ParserLeft.hs. Attach your code ParserLeft.hs.
7bafa5ada4a3aa36ad91094e478f3337
{ "intermediate": 0.3628939688205719, "beginner": 0.3683558702468872, "expert": 0.2687501609325409 }
32,306
Can you please write a python script that will find the longest line in "input.txt" fine, and then print it and it's length in "output.txt" file?
144905414438d3438cc08fbe0c14fc2c
{ "intermediate": 0.49734994769096375, "beginner": 0.16268479824066162, "expert": 0.3399653434753418 }
32,307
what is migration in elastic cloud storage dell product
000560501a754b8dcbcc419120d96f69
{ "intermediate": 0.34049898386001587, "beginner": 0.3417554795742035, "expert": 0.31774550676345825 }
32,308
i work on DES algorithm form scratch in python and i want to function that permute my key and PC_1 how to implement this function?
83292d3ad7b77dcd437c94e4c1345eae
{ "intermediate": 0.20409724116325378, "beginner": 0.08332465589046478, "expert": 0.7125780582427979 }
32,309
package foleon.miningcore; import org.bukkit.Bukkit; import org.bukkit.ChatColor; import org.bukkit.Material; import org.bukkit.configuration.file.FileConfiguration; import org.bukkit.entity.Player; import org.bukkit.inventory.Inventory; import org.bukkit.inventory.ItemStack; import org.bukkit.inventory.meta.SkullMeta...
f800d77a298b2778b6641302067b39a4
{ "intermediate": 0.26853129267692566, "beginner": 0.6231460571289062, "expert": 0.10832266509532928 }
32,310
I need to use for loop on all values in a single column in Python Pandas.
926f3fb1153b99cfeb7a9fad6069a9a1
{ "intermediate": 0.2671869099140167, "beginner": 0.5475059151649475, "expert": 0.185307115316391 }
32,311
<?php require_once('db.php'); $login=$_POST['login']; $pas=$_POST['pass']; $repeatpass=$_POST['repeatpass']; $email=$_POST['email']; $sql = "INSERT INTO `users` (login, pass, email) VALUES ('$login', '$pass', '$email')" $conn -> query($sql); ?> Найди ошибку
80e3f309a0ffbc2583f475a645843b2b
{ "intermediate": 0.3783729672431946, "beginner": 0.39305606484413147, "expert": 0.22857102751731873 }
32,312
В чем ошибка? <?php require_once('db.php'); $login=$_POST['login']; $pass=$_POST['pass']; $repeatpass=$_POST['repeatpass']; $email=$_POST['email']; $sql = "INSERT INTO `users` (login, pass, email) VALUES ('$login', '$pass', '$email')" $conn -> query($sql); ?>
fbc95513f0679ec102939f0db7434b00
{ "intermediate": 0.3814326524734497, "beginner": 0.45541301369667053, "expert": 0.16315433382987976 }
32,313
I have this code : # Retrieve depth data depth_data = client.depth(symbol=symbol) bids = depth_data['bids'] bid_prices = [float(bid[0]) for bid in bids] highest_bid_price = max(bid_prices) lowest_bid_price = min(bid_prices) b_l = lowest_bid_price > mark_price + (mark_price / 100) b_h = ...
db347ae88c2754c09cc44ba049f6bb9b
{ "intermediate": 0.438484251499176, "beginner": 0.22977867722511292, "expert": 0.33173707127571106 }
32,314
package foleon.miningcore; import org.bukkit.Bukkit; import org.bukkit.ChatColor; import org.bukkit.Material; import org.bukkit.configuration.file.FileConfiguration; import org.bukkit.entity.Player; import org.bukkit.inventory.Inventory; import org.bukkit.inventory.ItemStack; import org.bukkit.inventory.meta.SkullMeta...
ba53d7ea5c0d5fe9b219c54c1c8fe62f
{ "intermediate": 0.36766642332077026, "beginner": 0.31990930438041687, "expert": 0.3124242424964905 }
32,315
Добавь пропуск строки после добавления : private void updateSummaryText() { TextView summaryText = findViewById(R.id.summary_text); StringBuilder stringBuilder = new StringBuilder(); // Add checkBox state if (checkBox.isChecked()) { stringBuilder.append("com.google.android...
90fbdc284f1069f699a669cf12af3651
{ "intermediate": 0.36334991455078125, "beginner": 0.3275555372238159, "expert": 0.30909448862075806 }
32,316
can you help me create a object detection system that detects from a camera source?
269659797fb36777415c9f85d24cee8a
{ "intermediate": 0.17361819744110107, "beginner": 0.09540480375289917, "expert": 0.7309769988059998 }
32,317
I used this code: mark_price_data = client.ticker_price(symbol=symbol) mp = float(mark_price_data['price']) if 'price' in mark_price_data else 0.0 mark_price_data_change = client.ticker_24hr_price_change(symbol=symbol) mark_price_percent = float(mark_price_data_change['priceChangePercent']) if 'priceCh...
5e2cf07ef97c524b0e81934646604b5e
{ "intermediate": 0.388383686542511, "beginner": 0.343254953622818, "expert": 0.2683614194393158 }
32,318
i have a image and there are 5 to 8 symbols (mostly digits) on a white background. write a python script that extracts those symbols and saves them as different images
5a6d5f6d8b2eef8ba0d9f08d87c0f971
{ "intermediate": 0.36564555764198303, "beginner": 0.16470742225646973, "expert": 0.46964699029922485 }
32,319
how to shift string left
3fe8cb55e9e5545b8dcab32d49cbcc2b
{ "intermediate": 0.33213022351264954, "beginner": 0.2726864814758301, "expert": 0.3951832950115204 }
32,320
package foleon.miningcore; import org.bukkit.configuration.file.FileConfiguration; import org.bukkit.configuration.file.YamlConfiguration; import java.io.File; import java.io.IOException; import org.bukkit.plugin.Plugin; public class ExpManager { private File expFile; private FileConfiguration expConfig; ...
f26b9e64089bd89e1b7afc1216ace083
{ "intermediate": 0.24026721715927124, "beginner": 0.523759126663208, "expert": 0.23597364127635956 }
32,321
i have a image and there are 5 to 8 symbols (mostly digits) on a white background. write a python script that cuts off those symbols and saves them as different images
d0b4d528f3155f7269767994709ae0fd
{ "intermediate": 0.3572343587875366, "beginner": 0.1625337153673172, "expert": 0.4802318513393402 }