row_id int64 0 48.4k | init_message stringlengths 1 342k | conversation_hash stringlengths 32 32 | scores dict |
|---|---|---|---|
30,818 | id yourself | d5a4b94fe996bfa81df1cbe0a2e3ee39 | {
"intermediate": 0.3771987557411194,
"beginner": 0.30433228611946106,
"expert": 0.31846895813941956
} |
30,819 | How Do I import my jpeg file to godot and make it to the base layout for the map that the player runs in? | e15f886ec4e75f1cc8b77713b6a08341 | {
"intermediate": 0.5315995216369629,
"beginner": 0.18626567721366882,
"expert": 0.28213486075401306
} |
30,820 | what is the VBA code to unprotect an active sheet and to protect it | 7b5644a81e9ac36b9e3a3e36d6fd158d | {
"intermediate": 0.2526106536388397,
"beginner": 0.2684679925441742,
"expert": 0.47892138361930847
} |
30,821 | Can you write a go program to read a csv file of lines containing "date,open stock price, last price" ? | 4a9a15a51f51881ca8c20d1d49f651ea | {
"intermediate": 0.5212132930755615,
"beginner": 0.13287852704524994,
"expert": 0.34590816497802734
} |
30,822 | Can you explain how C++ 2d arrays work in detail? | 7320229165b3309f4415625f4dbbb1f3 | {
"intermediate": 0.614763081073761,
"beginner": 0.1487681269645691,
"expert": 0.2364688366651535
} |
30,823 | You are a professional and experienced developmental editor, adept in character creation and plotting. Review the provided character profiles and give me recommendations how to refine them to reflect the following details (it seems from my previous interviews with you, my profile doesn't present them properly and AI ... | c6e05fdd36673ddb62923e7e9c966a0b | {
"intermediate": 0.4100530743598938,
"beginner": 0.3260723352432251,
"expert": 0.2638745605945587
} |
30,824 | help me implement so my character walks in a 45 degree x angle upwards and -45 downwards:
this is my player script, how do I change it:
using Godot;
using System;
public partial class Player : CharacterBody3D
{
public const uint MaxLifepoints = 200;
[Export]
public float Speed { get; private set; } = 5.0f;
[Expor... | e90f44200b9c32d89ae8844bed392619 | {
"intermediate": 0.35216769576072693,
"beginner": 0.37522462010383606,
"expert": 0.272607684135437
} |
30,825 | private function checkIdleKick(deltaMillis:int):void
{
if (this.idleTime >= this.idleKickPeriod)
{
Network(Main.osgi.getService(INetworker)).send("battle;idle_kick");
this.idleTimerEnabled = false;
}
else
{
... | e0c79300e2200df0175967af47c589c0 | {
"intermediate": 0.4891926646232605,
"beginner": 0.29104316234588623,
"expert": 0.21976415812969208
} |
30,826 | Write a Python function that mutates L such that it reverses its elements and also reverses the order
of the int elements in every element of L. It does not return anything.
For example, if L = [[1, 2], [3, 4], [5, 6, 7]] then deep_reverse(L) mutates L
to be [[7, 6, 5], [4, 3], [2, 1]] | 4cc6bb93cc7f1bb4aa7ab076f5174928 | {
"intermediate": 0.27529603242874146,
"beginner": 0.30774471163749695,
"expert": 0.416959285736084
} |
30,827 | Given this: Interest will be charged on unpaid principal until the full amount of Principal has been paid. I will pay interest at a
yearly rate of
4.7509 The interest rate I will pay will change in accordance with Section 4 of this Note.
The interest rate required by this Section 2 and Section 4 of this Note is the rat... | 0b4c6697760ced22dc02f14f058609da | {
"intermediate": 0.349407434463501,
"beginner": 0.30342695116996765,
"expert": 0.34716564416885376
} |
30,828 | Вот мой код: | ccba61a61328a4c5187b624770b69e29 | {
"intermediate": 0.3368283212184906,
"beginner": 0.27492231130599976,
"expert": 0.38824939727783203
} |
30,829 | Вот мой код: | c50a8ca12d61d5e7584efbde9a5b0947 | {
"intermediate": 0.3368283212184906,
"beginner": 0.27492231130599976,
"expert": 0.38824939727783203
} |
30,830 | package gtanks.battles.tanks.weapons.shaft;
import gtanks.RandomUtils;
import gtanks.battles.BattlefieldModel;
import gtanks.battles.BattlefieldPlayerController;
import gtanks.battles.tanks.weapons.IEntity;
import gtanks.battles.tanks.weapons.IWeapon;
import gtanks.battles.tanks.weapons.WeaponWeakeningData;
import gta... | 67f1c7208a71418472d7986d4c80b98f | {
"intermediate": 0.3854919970035553,
"beginner": 0.42117902636528015,
"expert": 0.19332900643348694
} |
30,831 | package gtanks.users.garage;
import gtanks.users.garage.enums.ItemType;
import gtanks.users.garage.items.Item;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Iterator;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.pers... | c75824ee9ec89139e8c4ba65d4b4f8c3 | {
"intermediate": 0.3744754493236542,
"beginner": 0.45721152424812317,
"expert": 0.16831305623054504
} |
30,832 | write a program for an arduino nano that uses a string of 50 ws2811 leds, where a random pixel blinks for a random amount of time in one of two randomly chosen colors, blue or pink, each subroutine runs independently of the other pixels without using delay, neopixel library | 94d41d87877329a80b97294d61e36f00 | {
"intermediate": 0.49833741784095764,
"beginner": 0.10946602374315262,
"expert": 0.39219650626182556
} |
30,833 | In a horror game show, there are n people numbered 1 to n standing in a circle.
Starting the count with person number 1, every second person is shot until only one person is left.
Where in the circle should a person stand to remain the last person standing? | ececafd87f495ea1a07aa51a1b7a0854 | {
"intermediate": 0.3345237374305725,
"beginner": 0.39628374576568604,
"expert": 0.26919251680374146
} |
30,834 | You are a professional and experienced developmental editor, adept in character creation and plotting. Review the provided character profiles and give me recommendations how to refine them to reflect the following details (it seems from my previous interviews with you, my profile doesn’t present them properly and AI pr... | 63d43c6d4090c1fbc48781a1a4b9f9a7 | {
"intermediate": 0.3913419246673584,
"beginner": 0.3217015862464905,
"expert": 0.28695645928382874
} |
30,835 | What is php | 18d0660bc6f763453e8831dd01f1e21c | {
"intermediate": 0.2055480033159256,
"beginner": 0.4958672523498535,
"expert": 0.2985847592353821
} |
30,836 | class NewsItemServer {
constructor(date, text) {
this.date = date;
this.text = text;
}
}
module.exports = NewsItemServer; вот js файл новостей, const NewsItemServer = require("./NewsItemServer.js");
const newsArray = [
new NewsItemServer("2023-11-11", "GTanks снова открыт!")
]; вот такое имею я в... | 23de7e3409b991efde30dcacecca40aa | {
"intermediate": 0.27710890769958496,
"beginner": 0.581393301486969,
"expert": 0.14149783551692963
} |
30,837 | const
{
market_list,
shop_data
} = require("./server");
//const GiftServerItem = require("./GiftServerItem.js");
const NewsItemServer = require("./NewsItemServer.js");
const newsArray = [
new NewsItemServer("2023-11-11", "GTanks снова открыт!")
];
const fs = require("fs");
const path = requi... | dce33cfc707f85cc268ce5421a5a8bb8 | {
"intermediate": 0.32317036390304565,
"beginner": 0.4137449562549591,
"expert": 0.26308473944664
} |
30,838 | void show_rods(int a[],int b[],int c[],int size)
{
for ( int i = 0; i < size; i++)
{
cout<< a[i] << " ";
}
cout << endl;
for ( int i = 0; i < size; i++)
{
cout<< b[i] << " ";
}
cout << endl;
for ( int i = 0; i < size; i++)
{
cout<< c[i] <... | 2be3eed0d7d57325781dfa161057bd36 | {
"intermediate": 0.2550431191921234,
"beginner": 0.39356765151023865,
"expert": 0.35138922929763794
} |
30,839 | hi | f807b99c65901456f15482980fe5c46f | {
"intermediate": 0.3246487081050873,
"beginner": 0.27135494351387024,
"expert": 0.40399640798568726
} |
30,840 | я написал вот такой код на python:
def create_disks(n):
a = [i for i in range(n,0,-1)] # первый стержень, заполненный полностью по правилам игры
return a
n = int(input("Сколько дисков:"))
a = create_disks(n)
b = [0 for i in a] # второй стержень
c = [i for i in b] # третий стержень, цель игры — перетащить... | f99bc7441cc03c89b1f8621284a5a199 | {
"intermediate": 0.2159159630537033,
"beginner": 0.5787734389305115,
"expert": 0.20531058311462402
} |
30,841 | if (args[1] !== "move" && debug && args[1] !== "ping" && args[1] !== "pong") console.log("receive: " + msg);
if (args[0] === "auth")
{
if (args.length >= 3)
{
var username = args[1];
if (username === "recovery_account")
return;
var pw = args[2];
var json = playerJson(use... | cc7fa4330a808e3484bd25e4d17b92dc | {
"intermediate": 0.38962388038635254,
"beginner": 0.36069461703300476,
"expert": 0.24968157708644867
} |
30,842 | if (args[1] !== "move" && debug && args[1] !== "ping" && args[1] !== "pong") console.log("receive: " + msg);
if (args[0] === "auth")
{
if (args.length >= 3)
{
var username = args[1];
if (username === "recovery_account")
return;
var pw = args[2];
var json = playerJson(use... | 9332e2965cc91a1db68732cbb09b68f7 | {
"intermediate": 0.32262030243873596,
"beginner": 0.4235073924064636,
"expert": 0.2538723051548004
} |
30,843 | write a bash command that take this info from /tmp/blocky.log
[2023-11-11 23:54:04] INFO queryLog: query resolved answer=A (0.0.0.0) client_ip=xx.xxx.x.xxx client_names=roku.4k duration_ms=3 question=A (app-measurement.com.) response_code=NOERROR response_reason=BLOCKED (analytics)
and yields this table output
Time... | 267c211213d986879ccc440cd22925b3 | {
"intermediate": 0.2926813066005707,
"beginner": 0.27617061138153076,
"expert": 0.43114808201789856
} |
30,844 | revise complexity of below command without changing output
grep -P 'queryLog(?!.*rr[1-5])' /tmp/blocky.log | tail -n 8 | sed -E 's/(\[.*\]) (.*queryLog):.* client_ip=(.*) client_names=(.*) duration_ms=(.*) question=(.*) response_code=(.*) response_reason=(.*)/\1\t\3\t\4\t\6\t\8\t\5ms/; s/[()]//g' | awk -F'\t' 'BEGIN{O... | 256e747b8f96a7dfe12cd3124a6ac499 | {
"intermediate": 0.3634921610355377,
"beginner": 0.5164330005645752,
"expert": 0.12007485330104828
} |
30,845 | const { c, market_list, getType } = require("./server");
class GarageItem {
static get(id, m = 1) {
return new GarageItem(id, 0, m);
}
static fromJSON(data) {
var item = new GarageItem(c(data.id), c(data.modificationID, 0), c(data.count, 0));
return item;
}
static getInfo... | f1f075c5b7eaeb12ebab069dec03a94e | {
"intermediate": 0.269207239151001,
"beginner": 0.48156172037124634,
"expert": 0.24923108518123627
} |
30,846 | const { c, market_list, getType } = require("./server");
class GarageItem {
static get(id, m = 1) {
return new GarageItem(id, 0, m);
}
static fromJSON(data) {
var item = new GarageItem(c(data.id), c(data.modificationID, 0), c(data.count, 0));
return item;
}
static getInfo... | 5cddd9e7a31bbe327fd0bb05c63a588f | {
"intermediate": 0.27932050824165344,
"beginner": 0.4691448509693146,
"expert": 0.251534640789032
} |
30,847 | hello! | 256c9b1d4c2c7e85019d0cd979c26722 | {
"intermediate": 0.3276780843734741,
"beginner": 0.28214582800865173,
"expert": 0.39017611742019653
} |
30,848 | how can i make factorials in fortran? | ff3c24c4a914feb2fafac28aa67677fa | {
"intermediate": 0.3022252321243286,
"beginner": 0.07459805905818939,
"expert": 0.6231767535209656
} |
30,849 | please make a tampermonkey script that when a page loads, it detects this object and then stores the value:
<input type="hidden" id="verification-token" name="verification-token" value="9331796f6673b8e54.8816918305|r=eu-west-1|pk=D72ECCFB-262E-4065-9196-856E70BE98ED|at=40|ag=101|cdn_url=https%3A%2F%2Fgithub-api.arkosel... | 090877fae72817241d58bb11cf984b6a | {
"intermediate": 0.6085638403892517,
"beginner": 0.27133920788764954,
"expert": 0.12009691447019577
} |
30,850 | перепиши код, нужно чтобы использовались все ядра процессора
так как долго перебирает список lines
import os
folder_path = "./"
directories = [name for name in os.listdir(folder_path) if os.path.isdir(os.path.join(folder_path, name))]
print("Выберите папку:")
for i, directory in enumerate(directories, 1):
print(f"{... | 08be498d6c09619d1f1c118e6507dcf7 | {
"intermediate": 0.3557216227054596,
"beginner": 0.3879525661468506,
"expert": 0.2563258111476898
} |
30,851 | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI; //We need this line for uGUI to work.
public class HighScore : MonoBehaviour
{
static private Text _UI_TEXT;
static private int _SCORE = 0;
private Text txtCom; //txtCom is a reference to this GO’s Text co... | 43354ecd68975ef52db2ef3c22e3c404 | {
"intermediate": 0.36233362555503845,
"beginner": 0.40791046619415283,
"expert": 0.2297559678554535
} |
30,852 | I sued tihs code:
client = UMFutures(key = api_key, secret = api_secret)
df = client.depth(symbol=symbol)
def signal_generator(df):
if df is None or len(df) < 2:
return ''
signal = []
final_signal = []
# Retrieve depth data
th = 0.35
depth_data = client.depth(symbol=symbol)
... | 2d32899d45093fb3a25689407c12a1f0 | {
"intermediate": 0.3695584535598755,
"beginner": 0.4578329920768738,
"expert": 0.17260852456092834
} |
30,853 | import os
folder_path = "./"
directories = [name for name in os.listdir(folder_path) if os.path.isdir(os.path.join(folder_path, name))]
print("Выберите папку:")
for i, directory in enumerate(directories, 1):
print(f"{i}. {directory}")
selected_index = input("Введите номер выбранной папки: ")
selected_index = int(se... | 3efbe7cf1fb4ae5d5e61bc348190aca0 | {
"intermediate": 0.3208392560482025,
"beginner": 0.3979693651199341,
"expert": 0.281191349029541
} |
30,854 | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class MarioController : MonoBehaviour
{
public float moveSpeed = 5f;
public float jumpForce = 5f;
public float ladderClimbSpeed = 2f;
public int maxHealth = 3;
public int current... | 205c7bfdeca16971443bc4aebb7de7e9 | {
"intermediate": 0.3147614300251007,
"beginner": 0.49724799394607544,
"expert": 0.18799059092998505
} |
30,855 | этот код не работает
import os
import multiprocessing
def search_lines(lines, inp, result):
found = False
for line in lines:
if inp.lower() in line.lower():
result.append(line)
result.append("-" * 90)
found = True
if not found:
result.append('Ничего не найдено!')
folder_path = "./"
directories = [na... | 58732245cfdbf600bb06040c7809cdeb | {
"intermediate": 0.32700785994529724,
"beginner": 0.4239305257797241,
"expert": 0.2490616738796234
} |
30,856 | You are an expert developmental editor, adept in character creation and plotting. Review the provided character profiles, identify issues with character development, consistency, plausibility, etc.
For each area needing improvement, provide concrete examples from the character descriptions and suggest enhancements. En... | cec518676a11c9ee20b20b1b0f6d6be3 | {
"intermediate": 0.3804340958595276,
"beginner": 0.33886975049972534,
"expert": 0.28069618344306946
} |
30,857 | package gtanks.battles.bonuses;
import gtanks.RandomUtils;
import gtanks.battles.BattlefieldModel;
import gtanks.battles.tanks.math.Vector3;
import gtanks.logger.Logger;
import gtanks.logger.Type;
import java.util.Random;
public class BonusesSpawnService implements Runnable {
private static final int DISAPPEARING_... | a082836c0ec58176f9f00d9148e7157e | {
"intermediate": 0.30342215299606323,
"beginner": 0.521099865436554,
"expert": 0.175477996468544
} |
30,858 | You are an expert developmental editor, adept in character creation and plotting. Review the provided character profiles, identify issues with character development, consistency, plausibility, etc.
For each area needing improvement, provide concrete examples from the character descriptions and suggest enhancements. Ens... | 9d9cefed0deadb041ee5c989f42a6e70 | {
"intermediate": 0.37332454323768616,
"beginner": 0.3368609845638275,
"expert": 0.2898145318031311
} |
30,859 | give equiavelent of this in secrets module: delay = random.randint(MIN_DELAY, MAX_DELAY) | 15594975bbece741dfe3ff7fd29b9289 | {
"intermediate": 0.37186679244041443,
"beginner": 0.22597236931324005,
"expert": 0.4021608531475067
} |
30,860 | hey. if i'm generating a random number between -2.5 and 2.5, what is a good way to disincline the random number from being close to 0? | 0432db233046cb6385dd7f68fb44ec0d | {
"intermediate": 0.32775843143463135,
"beginner": 0.1530110388994217,
"expert": 0.5192305445671082
} |
30,861 | In golang, what are *.mod files? | c6efccc794c028b25090a94ab5186684 | {
"intermediate": 0.5106252431869507,
"beginner": 0.19164487719535828,
"expert": 0.29772984981536865
} |
30,862 | Сделай из этого дага простой скрипт на python:
import json
import logging
import pandas as pd
import numpy as np
from pathlib import Path
from typing import Any, Optional, Dict, List
from airflow import DAG
from airflow.operators.python import PythonOperator
from airflow.providers.http.hooks.http import HttpHook
... | 2010bcc6780feb5d1864b039644adabe | {
"intermediate": 0.43229150772094727,
"beginner": 0.3336435854434967,
"expert": 0.23406481742858887
} |
30,863 | <div id="div2" class=""> | fb1eadbce42a7d3a79c86850eec99ebe | {
"intermediate": 0.3181195855140686,
"beginner": 0.26514115929603577,
"expert": 0.4167393147945404
} |
30,864 | I am using the youtube data v3 api interface with python and when I run my code I get the error: "KeyError: 'nextPageToken'" | 486848f510890e172822021fc8605867 | {
"intermediate": 0.7954739332199097,
"beginner": 0.0604710578918457,
"expert": 0.14405500888824463
} |
30,865 | Could you write some simplified pseudocode to explain the implementation of a pseudorandom number generator? | bc44520a53e67968adf6ac108984aecd | {
"intermediate": 0.2903920114040375,
"beginner": 0.16761289536952972,
"expert": 0.5419950485229492
} |
30,866 | Let’s say we have 10 days. We want to record 33 hours evenly to each day. How can you achieve this in JS | 56ede2d19e10345dfb577956a045f7a0 | {
"intermediate": 0.375906765460968,
"beginner": 0.24945460259914398,
"expert": 0.3746386170387268
} |
30,867 | Write me some python code that implements a pseudorandom number generator from scratch. | 842fa88f921c0160d6d6f66cb1ef7fcc | {
"intermediate": 0.30100154876708984,
"beginner": 0.09247566759586334,
"expert": 0.6065227389335632
} |
30,868 | is the below command slowed by any of the pipes? if so, how should I optimize?
grep -P 'queryLog(?!.*rr[1-5])' /tmp/blocky.log | tail -n 8 | sed -E 's/(\[.*\]) (.*):.* client_ip=(.*) client_names=(.*) duration_ms=(.*) question=(.*) response_code=(.*) response_reason=(.*)/\1\t\3\t\4\t\6\t\8\t\5ms/; s/[()]//g' | awk -F'... | f184f8605b00e5a0c6593a13536bfc04 | {
"intermediate": 0.201661616563797,
"beginner": 0.5935326814651489,
"expert": 0.20480577647686005
} |
30,869 | ERROR: for product-search-airflow_redis_1 Cannot start service redis: driver failed programming external connectivity on endpoint product-search-airflow_redis_1 (47cf5883cda88497df719533b9776fda146dd9aa2b202748e3363940697382a5): Bind for 0.0.0.0:6379 failed: port is already allocated
Starting product-search-airflow_po... | 04b390fc084fb2ce9dbc309c3d1c9e38 | {
"intermediate": 0.3673540949821472,
"beginner": 0.40485310554504395,
"expert": 0.22779284417629242
} |
30,870 | i need help with my js code. it never recognizes my else method. what is wrong:
if (fname.value || mail.value || phone.value || age.value ==="") {
alert("Please fill in all fields.");
event.preventDefault();
} else {
alert("Thank you for your submission.");
document.getElementById("adoptForm").submit();
} | f21310cb824d99261f85884a380daba2 | {
"intermediate": 0.45895421504974365,
"beginner": 0.39817216992378235,
"expert": 0.142873615026474
} |
30,871 | how to execute js code from lua 5.1 in Defold | 7b584d9c59bc493c44a60f04c1b3a887 | {
"intermediate": 0.2831926643848419,
"beginner": 0.5976386666297913,
"expert": 0.11916867643594742
} |
30,872 | create new DBText in VB.NET | 250e154a081ceb2fc02728b4769bf63f | {
"intermediate": 0.42161789536476135,
"beginner": 0.2676926255226135,
"expert": 0.3106895089149475
} |
30,873 | create Text in VB.NET | 50e012b3c1cd0650ee29c694cc625de7 | {
"intermediate": 0.3478095233440399,
"beginner": 0.2762887179851532,
"expert": 0.3759017884731293
} |
30,874 | New issue. I am unsure how to create a for loop that will display the arrays i created in the table cells. The empty space I left between the for and closed bracket is where i am stuck.
var animalNames = [“Name”, “Tyrannosaurus Rex”, “Triceratops”, “Brachiosaurus”, “Velociraptor”, “Dilophosaurus”, “Stegosaurus”, “Carno... | 13e308c6996ed275981bde4ac675436c | {
"intermediate": 0.17748360335826874,
"beginner": 0.7420518398284912,
"expert": 0.08046451210975647
} |
30,875 | how i can write in browser console from Lua script in Defold? | e4aec652b5e356722a48532767ffc83e | {
"intermediate": 0.6034447550773621,
"beginner": 0.2661697268486023,
"expert": 0.13038542866706848
} |
30,876 | how i can write in browser console from Lua script in Defold? | f3b9ba8259fd2e40ddd045b484c7ba30 | {
"intermediate": 0.6034447550773621,
"beginner": 0.2661697268486023,
"expert": 0.13038542866706848
} |
30,877 | hey can you explain this function to me?
def make_hyperlink(value):
# url = "https://custom.url/{}"
url = "./{}"
return '=HYPERLINK("%s", "%s")' % (url.format(value), value) | 8de48fb173aa6af13b8316f180782b33 | {
"intermediate": 0.5734031200408936,
"beginner": 0.1999400109052658,
"expert": 0.22665689885616302
} |
30,878 | Напиши луа скрипт для gamesense.pub | c27862a494e08fdde007a4f31c937937 | {
"intermediate": 0.29455456137657166,
"beginner": 0.3567312955856323,
"expert": 0.34871405363082886
} |
30,879 | Write an in character scene between Two police officers who only talk in radio code, about life. | 0e977894583fa51ff5ecc3a1303ccd38 | {
"intermediate": 0.36455971002578735,
"beginner": 0.2958470582962036,
"expert": 0.33959320187568665
} |
30,880 | :struct 'resolver' {
state = {},
counter = {},
jitterhelper = function(self)
if self.ui.menu.Misc.resolver() then
local players = entity.get_players(true)
if #players == 0 then
return
end
resolver_status = self.ui.menu.Misc.resolver_flag()
for _, i in next, players do
local... | 7ad6c65d291de7eb51b4a1a69ced788e | {
"intermediate": 0.28223714232444763,
"beginner": 0.41307005286216736,
"expert": 0.3046927750110626
} |
30,881 | 出现错误:Cannot start service from the command line or debugger. A winwows Service must first be installed(using installutil.exe) and then started with the ServerExplorer, Windows Services Afministrative tool or the NET START command | 93a548bbde5b321dc1166de089dc1120 | {
"intermediate": 0.3427157700061798,
"beginner": 0.3108088970184326,
"expert": 0.3464753031730652
} |
30,882 | hi can you write an autolsp script that tells me the layers that are pressent in a viewport | 91541c6a27bcf5aa532798ae5f6c1e84 | {
"intermediate": 0.4130110740661621,
"beginner": 0.10858295857906342,
"expert": 0.47840598225593567
} |
30,883 | i have a few codes wanna debug | 68248fb910bfc3605bd0a8e60dd5f9ef | {
"intermediate": 0.41416728496551514,
"beginner": 0.3128772974014282,
"expert": 0.27295538783073425
} |
30,884 | Fix my C++ code. The matrix must be printed in columns.
#include <iostream>
using std::cout;
using std::cin;
using std::endl;
void printArr(int* a, int n, int m) {
for (int i = 0; i < n; ++i)
for (int j = 0; j < m; j++)
{
cout.width(2);
cout << a[m * i + j];
}
c... | 2a54d9268e0be578f4371b9c78823627 | {
"intermediate": 0.2619350850582123,
"beginner": 0.5669110417366028,
"expert": 0.17115390300750732
} |
30,885 | how to add a column in sqlalchemy query | 82902c03cf8b287b50ed079019910dc5 | {
"intermediate": 0.45811203122138977,
"beginner": 0.23669272661209106,
"expert": 0.3051951825618744
} |
30,886 | fbcon_fb_registered如何对fb_info进行注册 | c4b88d3a481689162b5f16230a17252a | {
"intermediate": 0.316802978515625,
"beginner": 0.28545883297920227,
"expert": 0.3977382481098175
} |
30,887 | excel_file = pd.read_excel(file_path, engine='openpyxl')
# 获取所有sheet页的名字
sheet_names = excel_file.sheet_names 修改这两句代码 | e9ede55a9dfabd7663cf605a021301d1 | {
"intermediate": 0.4128705561161041,
"beginner": 0.2682754099369049,
"expert": 0.3188539445400238
} |
30,888 | мне нужно запросить баланс из другого сервиса по этому урл, сформируй запрос
@POST
@Path("/balance")
@Consumes(value = APPLICATION_JSON)
@Produces(value = APPLICATION_JSON)
@Operation(summary = "Запрос получения информации по остаткам на счетах")
public AccountBalanceResponse getAccounts(AccountBal... | 7e8b5afbe557c45a34e756e534345d31 | {
"intermediate": 0.27366384863853455,
"beginner": 0.6283533573150635,
"expert": 0.09798280894756317
} |
30,889 | torch.cuda.is_available()
/usr/local/lib/python3.8/dist-packages/torch/cuda/__init__.py:107: UserWarning: CUDA initialization: Unexpected error from cudaGetDeviceCount(). Did you run some cuda functions before calling NumCudaDevices() that might have already set an error? Error 803: system has unsupported display drive... | 4cbf58b5a280a18756c42ae4062cdf2b | {
"intermediate": 0.5670412182807922,
"beginner": 0.2730019688606262,
"expert": 0.15995676815509796
} |
30,890 | if i have an image, i want to go through each pixel, and find the adjacent pixels to it and add them to a list in c. how do i do it | d6f46397d16aa6c1f04c2f6205842190 | {
"intermediate": 0.3868824541568756,
"beginner": 0.1391618251800537,
"expert": 0.4739556908607483
} |
30,891 | Hello! Could you pleas create me a Biderectional GRU Keras model with input shape (None, 180, 1) and output shape (None, 60, 1) | c98e23bd123b1630ea2c443146902b36 | {
"intermediate": 0.18364402651786804,
"beginner": 0.07265952229499817,
"expert": 0.7436965107917786
} |
30,892 | Write a C++ program. Initialize a 2d array with random numbers and print it using a function. Pass the array using pointer and by adjusting the parameter with reinterpret_cast. Create a function that calculates the sum only of odd elements | 074b3d0e35db59d36ac3966b2e1e02ba | {
"intermediate": 0.22731941938400269,
"beginner": 0.5509717464447021,
"expert": 0.22170881927013397
} |
30,893 | write a program for parsing scientific journal sites with the goal of automatically downloading all articles containing a keyword | 6d4b7f84ce4a462422b8a9ad124e7c13 | {
"intermediate": 0.2946643531322479,
"beginner": 0.1247202679514885,
"expert": 0.5806153416633606
} |
30,894 | make prezetation code about marketing menejment | 10ee410ae5005324b32ca39bc7680c75 | {
"intermediate": 0.3326287567615509,
"beginner": 0.42851048707962036,
"expert": 0.23886080086231232
} |
30,895 | using uipath, how to extract the string between 2 strings. Say the sentence is "start: fdsfdsfd dfgkdfkg end". the extract string is "start: fdsfdsfd dfgkdfkg". the sentence is split into multiple line | 9db2304d0bb161d76cf4399e4ce13816 | {
"intermediate": 0.3197983503341675,
"beginner": 0.21210356056690216,
"expert": 0.4680980443954468
} |
30,896 | Hi, who are you? | 79cda52df6f0750c8939520bfe3784e1 | {
"intermediate": 0.4428204298019409,
"beginner": 0.2460516393184662,
"expert": 0.3111279308795929
} |
30,897 | Help me create a python script that goes into all the folders in the current folder and rename the files from top to bottom:
rgb_000_front.png
rgb_000_front_right.png
rgb_000_right.png
rgb_000_back.png
rgb_000_left.png
rgb_000_front_left.png
normals_000_front.png
normals_000_front_right.png
normals_000_right.png
norma... | 79220496f0c41092fe1e2f5a78ca9023 | {
"intermediate": 0.2762145400047302,
"beginner": 0.31836146116256714,
"expert": 0.40542396903038025
} |
30,898 | The two lines of code above, add MVC services, then set up default endpoint (HomeController.Index), right? | 7f38cbe5227206cb0aac19bc830e2325 | {
"intermediate": 0.5218225121498108,
"beginner": 0.20673291385173798,
"expert": 0.2714445888996124
} |
30,899 | What is a docker image. I want to install vllm and people said you can install a dicker image | 42c0269c94764937a8d3dc076454acd1 | {
"intermediate": 0.5169345140457153,
"beginner": 0.2124924510717392,
"expert": 0.2705730199813843
} |
30,900 | complete ma VBA excel:
If Not IsObject(application) Then
Set SapGuiAuto = GetObject("SAPGUI")
Set application = SapGuiAuto.GetScriptingEngine
End If
If Not IsObject(connection) Then
Set connection = application.Children(0)
End If
If Not IsObject(session) Then
Set session = connection.Children(0)
End If
If IsObject(WSc... | 1e9860bb847a6a5f2df3cc2242aa9733 | {
"intermediate": 0.3545277714729309,
"beginner": 0.3203178644180298,
"expert": 0.3251543343067169
} |
30,901 | add code to Header.php in a child theme - <!-- Meta Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;... | dbc0eb835886a0eea17a7e3bb671b12d | {
"intermediate": 0.3166997730731964,
"beginner": 0.49931350350379944,
"expert": 0.18398670852184296
} |
30,902 | Why do people eat cereals for breakfast and not for diner or supper ? | af6121fa8beeaa9993904efd121978fd | {
"intermediate": 0.34413671493530273,
"beginner": 0.3447825312614441,
"expert": 0.311080664396286
} |
30,903 | На связи отдел разработки и поддержки хранилища данных NetCity. В данный момент мы затеяли переработку дизайна, ведь пользоваться устаревшими технологиями крайне неудобно и непрактично.
Твоя задача:
Используя знания о работе с блочной моделью, реализуй дизайн, который представлен нашими специалистами. Результат ты... | 5b3dfa7e4aa76b8caab834fdca5eb098 | {
"intermediate": 0.2091461569070816,
"beginner": 0.5362691283226013,
"expert": 0.2545846402645111
} |
30,904 | lua code. let's say i have a list of {"alice", "bob", "jane"}, how do I iterate over it? | 6238858a454e2b6687210f3c3c718190 | {
"intermediate": 0.5378291606903076,
"beginner": 0.19613835215568542,
"expert": 0.26603248715400696
} |
30,905 | function decrypt(encrypted, num = 1)
{
var withend = encrypted.split('end~')
var key = parseInt(withend[0].toString(), 10);
var array = withend[0].split('')
array.shift()
var massiv = array.map(value => value.charCodeAt(0) - (key + num));
var packet = "";
for (var i in massiv)
{
packet += Stri... | 20a63cdaa1da8482cb065d16050eafcc | {
"intermediate": 0.33673572540283203,
"beginner": 0.48943030834198,
"expert": 0.1738339513540268
} |
30,906 | how to keep order in union expression of sqlalchemy orb | 20c64b3a261860b7a77849a9680f4532 | {
"intermediate": 0.49452343583106995,
"beginner": 0.2788962721824646,
"expert": 0.22658029198646545
} |
30,907 | Role: Endpoint Platform Specialist
Description: The Endpoint Platform Specialist is responsible for managing and maintaining a wide range of devices, including 0365 and MacOS, through endpoint platforms like JAMF and Intune. This role involves deploying, configuring, and ensuring optimal functionality of devices in al... | 66816b0b754ee271ecc7a0e5288eea04 | {
"intermediate": 0.3725532591342926,
"beginner": 0.20150789618492126,
"expert": 0.42593884468078613
} |
30,908 | Using an excel sheet of 4000 pre defined words create a powershell script that uses 2 random words from the excel sheet and generates a random password with numerical and symbols and is 16 characters long | b2b9499868edaaf24c90be203a079172 | {
"intermediate": 0.30438175797462463,
"beginner": 0.2988753914833069,
"expert": 0.3967428207397461
} |
30,909 | привет | 188435b4b3d5a8bb43b2676a07af5aa5 | {
"intermediate": 0.3531447947025299,
"beginner": 0.2823599576950073,
"expert": 0.3644951581954956
} |
30,910 | create a password generator with powershell which includes 2 words _ numerals and symbols | 87ead0bd9481cd7cdafb7e389166eb29 | {
"intermediate": 0.2920035719871521,
"beginner": 0.2400643676519394,
"expert": 0.4679320752620697
} |
30,911 | how to create an automatic attendance web app by capturing and recognizing the faces using html, css and js | 81b678f411f3a3566d38bfa6d6cae5f0 | {
"intermediate": 0.2803720235824585,
"beginner": 0.17107710242271423,
"expert": 0.5485508441925049
} |
30,912 | Hello! | 943cf71822107c9223710b042c98fd2d | {
"intermediate": 0.3194829821586609,
"beginner": 0.26423266530036926,
"expert": 0.41628435254096985
} |
30,913 | Мне нужно сделать это задание: You have a browser of one tab where you start on the homepage and you can visit another url, get back in the history number of steps or move forward in the history number of steps.
Implement the BrowserHistory class:
BrowserHistory(string homepage) Initializes the object with the homepa... | e4a5f7cbf8633daf270a8f8ff7c723b5 | {
"intermediate": 0.314809113740921,
"beginner": 0.47023364901542664,
"expert": 0.21495722234249115
} |
30,914 | hi | 462de4beac2ac97e6f1d6e04dbddf36c | {
"intermediate": 0.3246487081050873,
"beginner": 0.27135494351387024,
"expert": 0.40399640798568726
} |
30,915 | [[ 3]
[ 4]
[ 12]
[ 13]
[ 14]
[ 15]
[ 32]
[ 41]
[ 51]
[ 58]
[ 67]
[ 82]] | d135f3aa016aa15461f9c5e609538b7b | {
"intermediate": 0.34002378582954407,
"beginner": 0.30801326036453247,
"expert": 0.35196301341056824
} |
30,916 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Xml.Linq;
class Program
{
static void Main(string[] args)
{
int N = int.Parse(Console.ReadLine());
int[] array = Console.ReadLine().Split().Select(int.Parse).ToArray();
int target = int.Parse(Console.ReadLi... | abf69a8ea45503c8279debb15fe2d8d4 | {
"intermediate": 0.34446603059768677,
"beginner": 0.4223095774650574,
"expert": 0.23322446644306183
} |
30,917 | what are DOs and DON'Ts in angular development regarding web security | 8ab6be34dabb22d4242a4b3ea1a63335 | {
"intermediate": 0.3063691556453705,
"beginner": 0.28266558051109314,
"expert": 0.4109652638435364
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.