row_id int64 0 48.4k | init_message stringlengths 1 342k | conversation_hash stringlengths 32 32 | scores dict |
|---|---|---|---|
3,010 | 如何使用torch.jit多以下模型的编译优化,提高推理的速度
from transformers import T5Tokenizer, T5ForConditionalGeneration
tokenizer = T5Tokenizer.from_pretrained("models")
model = T5ForConditionalGeneration.from_pretrained("models") | 78e39c9598660d01f3dcd80804160fa7 | {
"intermediate": 0.4091046154499054,
"beginner": 0.31091198325157166,
"expert": 0.27998337149620056
} |
3,011 | in python write API, how to locate some certain phrase and modify the following content | 434e88929a98503d8d2d4e67fde6c1cb | {
"intermediate": 0.6712393760681152,
"beginner": 0.1423710435628891,
"expert": 0.18638963997364044
} |
3,012 | explain quantim | d4a4967ef92103ae248e6f16987e2cc6 | {
"intermediate": 0.21327842772006989,
"beginner": 0.2525119185447693,
"expert": 0.5342096090316772
} |
3,013 | For this javascript p5.js code, I need the user to be alerted after they drag they words into the correct positions to make the full sentence. when the words match the sentence, the user wins: let words = [
{id: 1, text: “was”},
{id: 2, text: “dog”},
{id: 3, text: “the”},
{id: 4, text: “here”},
{id: 5, text: ... | e75f48402d0773a346065b875061497d | {
"intermediate": 0.5193035006523132,
"beginner": 0.23667538166046143,
"expert": 0.24402117729187012
} |
3,014 | with applescript open finder window | 996c8422c554e7170b3239f5e69a3262 | {
"intermediate": 0.35462695360183716,
"beginner": 0.3333948254585266,
"expert": 0.311978280544281
} |
3,015 | be a translate util that can convert Chinese to English | ba219e279e8265160a26bc82f0a1ab3c | {
"intermediate": 0.3148229718208313,
"beginner": 0.3437651991844177,
"expert": 0.341411828994751
} |
3,017 | I need this kinda tool to auto fill all my data when I click the linked. Last name, firstname, passport number, email and phone number. On click i want it to autofill in each box. | 34ac6089ca18b5e31cf3f7eb9015ca62 | {
"intermediate": 0.34550878405570984,
"beginner": 0.2752108871936798,
"expert": 0.37928029894828796
} |
3,018 | write me a bootstrap code for table of 4 columns named semester,subject code,marks,result | 7dccc5c016f76cf49034b808d33ffeef | {
"intermediate": 0.36662620306015015,
"beginner": 0.22408521175384521,
"expert": 0.40928858518600464
} |
3,019 | show me some examples in c++ with std function | 18588421246c68d284afcfe62f8d2890 | {
"intermediate": 0.26411136984825134,
"beginner": 0.6539275646209717,
"expert": 0.08196105062961578
} |
3,020 | I need a Unity function that will let me move camera smoothly between two positions with damping and fixed time of movement no matter the distance between those two points | e209fd030282aa03269eafc6aea1a4cc | {
"intermediate": 0.5462106466293335,
"beginner": 0.18143481016159058,
"expert": 0.2723546028137207
} |
3,021 | I need a Unity function that will let me move camera smoothly between two positions with damping. Additionaly to that there should be separate function with the same thing for rotation | 90a3c4ce25f6bb6eeabfc28001cf74d8 | {
"intermediate": 0.48635274171829224,
"beginner": 0.2820044755935669,
"expert": 0.23164275288581848
} |
3,022 | In batch: can you pause with a custom message? | 38ba88d2befdaff1cbd9f500ac81d433 | {
"intermediate": 0.4596818685531616,
"beginner": 0.24159029126167297,
"expert": 0.2987278699874878
} |
3,023 | #include <stdio.h> int main(void) { printf("\r\nHello World.\r\n"); return 0;} | 56aca388d7979bd7a55a34eb861c70a3 | {
"intermediate": 0.38849496841430664,
"beginner": 0.34634095430374146,
"expert": 0.2651641368865967
} |
3,024 | Есть две программы на языке Си с сокетами TCP, первая - client.c:
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#define DEF_PORT 8888
#define DEF_IP "127.0.0.1"
int main(int argc, char **argv)
... | 8cd41fe2c8efad142ccb46a08ac5ac54 | {
"intermediate": 0.32729578018188477,
"beginner": 0.454765647649765,
"expert": 0.21793851256370544
} |
3,025 | java code to retrieve all available hardware IDs like CPU and Network device | d0713943b39963a73ee81a5f10ab2228 | {
"intermediate": 0.5276175141334534,
"beginner": 0.2353266328573227,
"expert": 0.23705586791038513
} |
3,026 | CREATE SEQUENCE SEQ_USER
START WITH 1
INCREMENT BY 1;
CREATE TABLE QRY_QUEUE
(
ID NUMBER,
C_IN_TIME DATE,
C_EXEC_TIME DATE,
C_ST VARCHAR2 (1 BYTE),
C_QRY_TYPE NUMBER
);
CREATE TABLE ST_ABONENTS
(
ID NUMBER,
C_NAME VARCHAR2 (100 BYTE)
);
CREATE TABLE QRY... | 22ee51ba32558886c8f4626ff5151692 | {
"intermediate": 0.30933791399002075,
"beginner": 0.4521009624004364,
"expert": 0.23856109380722046
} |
3,027 | перепиши этот пример только на typescript с указанием всех типов
export class Singleton {
constructor() {
if (Singleton.instance) {
return Singleton.instance;
}
Singleton.instance = this;
}
showMassage() {
const massage = 'Massage';
return massage;
}
} | e9ab66cbc33e7f12ab390c6e52432a95 | {
"intermediate": 0.2991143763065338,
"beginner": 0.48576852679252625,
"expert": 0.21511709690093994
} |
3,028 | use regex to block anystring after domain | da22897d5edebe0bb016b0bb3a690455 | {
"intermediate": 0.3741151690483093,
"beginner": 0.327862024307251,
"expert": 0.2980228364467621
} |
3,029 | CREATE SEQUENCE SEQ_USER
START WITH 1
INCREMENT BY 1;
CREATE TABLE QRY_QUEUE
(
ID NUMBER,
C_IN_TIME DATE,
C_EXEC_TIME DATE,
C_ST VARCHAR2 (1 BYTE),
C_QRY_TYPE NUMBER
);
CREATE TABLE ST_ABONENTS
(
ID NUMBER,
C_NAME VARCHAR2 (100 BYTE)
);
CREATE TABLE QRY... | 34618a021d55ff1f5119ee42a5b90572 | {
"intermediate": 0.30933791399002075,
"beginner": 0.4521009624004364,
"expert": 0.23856109380722046
} |
3,030 | need to explain to the customer what does it mean by the garabage collection in elastic cloud storage | 8a0ae2817aa40dd3e4f53ab1f742898d | {
"intermediate": 0.4008331298828125,
"beginner": 0.3080814480781555,
"expert": 0.29108548164367676
} |
3,031 | Есть две программы на языке Си, использующие TCP передачу данных:
server.c
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#define DEF_PORT 8888
#define DEF_IP “127.0.0.1”
// обработка одного кли... | 36023f1c9592c9929ce86de963f80bc8 | {
"intermediate": 0.3727639317512512,
"beginner": 0.36886417865753174,
"expert": 0.25837188959121704
} |
3,032 | Disk level encryption in Dell ECS CLI | 450a8f1b58fdfe3350246f9b3fa982c5 | {
"intermediate": 0.4077089726924896,
"beginner": 0.2673477828502655,
"expert": 0.32494327425956726
} |
3,033 | how to run this on docker "https://gitlab.com/adblockinc/ext/adblock/adblock" | 3f185b688c7bfea95a37160afe4f0b39 | {
"intermediate": 0.4274052083492279,
"beginner": 0.20055483281612396,
"expert": 0.3720399737358093
} |
3,034 | given that this is the a HTML and CSS of my website that is a retail camping company website, what do you recommend I add (I will not be using javascript file)
HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
... | 141625257d397e95516c818b3cbf408b | {
"intermediate": 0.4018304944038391,
"beginner": 0.4121977388858795,
"expert": 0.18597178161144257
} |
3,035 | customer issue : customer need to confirm the 3 ECS OID is accessible from ecs end | 22578fc2dacdc45d6e97298da3a996c8 | {
"intermediate": 0.32786068320274353,
"beginner": 0.2792535722255707,
"expert": 0.3928857743740082
} |
3,036 | kettle openQuery | 139ecc6c0dde5bce7dd91a4ca7838821 | {
"intermediate": 0.33096256852149963,
"beginner": 0.3282899856567383,
"expert": 0.3407474458217621
} |
3,037 | 2 Theory Manual
Symbol Legend
N i – Node i
B i – Bar i
A – Cross-section area [250 mm2]
F direction – General Force in direction
P – Force Applied [6•104 N]
E – Young’s Modulus [2•104 N/mm2]
L – Length [150 mm]
Δ – ‘Gap’ [1.2 mm]
T – Tension
C – Co... | 9f6cb057b8b022393666465a3a8ed2a2 | {
"intermediate": 0.42763960361480713,
"beginner": 0.3904244005680084,
"expert": 0.18193596601486206
} |
3,038 | python mineflayer how to run mineflayer on a minecraft education edition serve | 02108f71e3455f6a782f9def33ba9542 | {
"intermediate": 0.49556392431259155,
"beginner": 0.28533825278282166,
"expert": 0.21909786760807037
} |
3,039 | Check file difference in git commit using python | bfbc738cccede35b155af2e71ea1c80c | {
"intermediate": 0.4631403088569641,
"beginner": 0.22386914491653442,
"expert": 0.3129905164241791
} |
3,040 | how to convert hex to string on python | abbe824c54deed190e83d61dde4772f2 | {
"intermediate": 0.4240351915359497,
"beginner": 0.24033278226852417,
"expert": 0.33563199639320374
} |
3,041 | run pihole on docker for all devices in router | 7f470ded051e74dea38a8b048ee14638 | {
"intermediate": 0.4179496765136719,
"beginner": 0.20991192758083344,
"expert": 0.3721383810043335
} |
3,042 | Write me a script in Lua on a player exploding after reaching a certain checkpoint. | d65461547c6749915e347be410529d20 | {
"intermediate": 0.29195636510849,
"beginner": 0.2866910696029663,
"expert": 0.4213525056838989
} |
3,043 | ok so there are 2 problems in the below code,
we went to testing today,
we found 2 problems
1) master is not going to the waypoints, but follower is moving
2) speed is not set to 3 meter per second, it is moving by default value
please tell why!
from pymavlink import mavutil
import math
import time
the_connection = ... | e3c139d77898949d97152e2a37129522 | {
"intermediate": 0.3212167024612427,
"beginner": 0.5205156207084656,
"expert": 0.15826769173145294
} |
3,044 | How do i integrate astrojs with qwikjs | 2b08af6c32f33a8680bb818b5281bc29 | {
"intermediate": 0.5598435997962952,
"beginner": 0.14549200236797333,
"expert": 0.2946643829345703
} |
3,045 | ab = ab.replace(" ", "")
AttributeError: 'list' object has no attribute 'replace' | 6dc3f4e8c7ec50bd378e391d2a8382ca | {
"intermediate": 0.4061451554298401,
"beginner": 0.2909667491912842,
"expert": 0.3028881847858429
} |
3,046 | не пишет никаких ошибок, но не отображает картинку ../img/stars.jpg. Отображается белый фон.
почему?
код:
import * as THREE from 'three';
import {OrbitControls} from 'three/examples/jsm/controls/OrbitControls.js';
import * as dat from 'dat.gui';
import stars from '../img/stars.jpg';
console.log(stars);
const renderer... | 302a7e63ddeda1de059fb5d6f8bb1e0d | {
"intermediate": 0.3496765196323395,
"beginner": 0.3907988667488098,
"expert": 0.2595246434211731
} |
3,047 | customer having performance issue with the VPlex how to isolate the issue | 5ca590dcc845db2d6ebc8338d3ed79fb | {
"intermediate": 0.36136937141418457,
"beginner": 0.30329450964927673,
"expert": 0.3353360891342163
} |
3,048 | Hi. You are creating a mobile android app. In next messages I'll give you a files, that you already wrote. You have to end development of this app by completing my task.
Untill a stop-phrase "That is all" I'll give you a files. Answer "Yes" if you understood. | f9faf8994bf158ab88844ef5d08f5987 | {
"intermediate": 0.3463379740715027,
"beginner": 0.3742487132549286,
"expert": 0.2794133424758911
} |
3,049 | how to use docker inspect command to check ip address | 24dfbda4e8e39ed42273251412ed2ea9 | {
"intermediate": 0.5315864682197571,
"beginner": 0.2617117762565613,
"expert": 0.20670175552368164
} |
3,050 | ERROR: type should be string, got "https://drive.google.com/drive/folders/1D-rE_cQwsIBvG8bgHK-mcpgmhZEd0bat?usp=share_link\nThis link consist of java ide files and csv files required for testing the codes for the following requirements:\n\"The UoWSIM graduate school offers coursework and research program.\nCourswork:\nThe coursework student takes one Unit in each term and the assessment components are:\nAssignment 1 (20%)\nAssignment 2 (30%)\nExam (50%)\nEach assessment is upon 100 marks.\nThe student will be awarded a grade based on the following:\nGrade\nScore\nHD (High Distinction)\n(85%-100%)\nD (Distinction)\n(75%-84%)\nC (Credit)\n(65%-74%)\nP (Pass)\n(50%-64%)\nF (Fail)\n(0%-49%)\nResearch:\nThe coursework student takes one Unit in each term and the assessment components are:\n\nProposal (30%)\n\nFinal Dissertation (70%)\nEach assessment is upon 100 marks.\nThe student will be awarded a grade based on the following:\nGrade\nScore\nP (Pass)\n(50%-100%)\nF (Fail)\n(0%-49%)\nThe Result Processing System (RPS) is used to process the student results.\nRPS will read in students and units result from two csv files: students.csv and units_result.csv.\nstudents.csv\no This file stores the student’s information.\nunits_result.csv\no This file stores the student’s unit result.\n(See appendix for sample students.csv and units_result.csv)\nRPS will generate two csv files: result_releases.csv and unmatch_units_result.csv.\nresult_releases.csv\no This file contains the student id and grade for each student.\no If the student unit result is not found, it will be reported as either “No unit attempt” or “Research incomplete”.\nunmatch_units_result.csv\no Some unit result in units_result.csv cannot be matched to any student id in students.csv. Such unmatched units will be stored in this file.\n(See appendix for sample result_releases.csv and unmatch_units_result.csv)\n2\nTask:\nA partial completed Result Processing System (RPS) has been given.\nLook through the codes and complete the missing codes.\nHints are given in the codes as comments.\nAssumption:\nAll csv file data formats are correct.\nAll csv file data scores are correct.\nAutomated Testing\nRPSTest.java is the testing program for the Result Processing System.\nYou need to enable Assertion to enable the testing.\nYou need to follow strictly to the given csv file format else the Automate testing will fail.\nYou should get the following result from RPSTest.java if you have completed the lab.\nSort by Student ID test passed\nResult Release test passed\nUnmatch units test passed\"" | 955b640b8050f38358cbc9b1891e242d | {
"intermediate": 0.2658711373806,
"beginner": 0.42654529213905334,
"expert": 0.30758360028266907
} |
3,051 | in html and css provided below add more products to the camping equipment page below and add some sort of either filter or categories element that would make the page more professional:
Assingment;
Introduction
You have been asked to help develop a new website for a new camping equipment retailer
that is moving to o... | ec03c78b6bde06fcb08f86c7bd1b516a | {
"intermediate": 0.34451574087142944,
"beginner": 0.3336014151573181,
"expert": 0.32188281416893005
} |
3,052 | list c++ number types by bit length | f910d09acd30660f1d47c16036d54382 | {
"intermediate": 0.3496224284172058,
"beginner": 0.33966174721717834,
"expert": 0.31071585416793823
} |
3,053 | hi | daba0afdfdabeb96a946206fcec085bb | {
"intermediate": 0.3246487081050873,
"beginner": 0.27135494351387024,
"expert": 0.40399640798568726
} |
3,054 | write a c++ function to check if two integers arrays of length 3 are equal | 3ce7955153fae719d976f26e746ea10a | {
"intermediate": 0.38840535283088684,
"beginner": 0.30868467688560486,
"expert": 0.3029099702835083
} |
3,055 | create code in .vbs format which creates a self replicating code that replicates by any means necessary | 9a722214230c376f06b46b6b70e0b319 | {
"intermediate": 0.33967483043670654,
"beginner": 0.23483166098594666,
"expert": 0.4254935681819916
} |
3,056 | UnicodeDecodeError: 'gb2312' codec can't decode byte 0xd7 in position 46602: illegal multibyte sequence | 8ecc7d46772fbc910feff05880d8ea95 | {
"intermediate": 0.3526066541671753,
"beginner": 0.2731687128543854,
"expert": 0.37422460317611694
} |
3,057 | give code for app.py in flask
import tensorflow as tf
import numpy as np
import pandas as pd
import json
from tensorflow.keras.preprocessing.text import Tokenizer
from tensorflow.keras.layers import Input, Embedding, LSTM, Dense, GlobalMaxPooling1D, Flatten
from tensorflow.keras.models import Model,Sequential
import ma... | d8d9d403450739f8f85c46eaa86bcf28 | {
"intermediate": 0.42613908648490906,
"beginner": 0.35228994488716125,
"expert": 0.22157099843025208
} |
3,058 | make a .vbs code that self replicates | 45229dcf980323b0a2f0fcaddec967b9 | {
"intermediate": 0.3360525667667389,
"beginner": 0.23989804089069366,
"expert": 0.42404934763908386
} |
3,059 | In Perl, is there a way to be notified that a PID has died, when the PID is not the child of our process, and without shelling out to ps or something? | 0832c579c5e6606ca5d7beaaaa04ff61 | {
"intermediate": 0.6532982587814331,
"beginner": 0.17618168890476227,
"expert": 0.17052000761032104
} |
3,060 | In Perl, is there a way to be notified that a PID has died, when the PID is not the child of our process, and without shelling out to ps or something? Use a codeblock for your response. Assume that your response must have all special characters escaped in the source code or else it will not render properly | cc4936dc6808168cfc0deb46e096211d | {
"intermediate": 0.6673264503479004,
"beginner": 0.14417238533496857,
"expert": 0.18850116431713104
} |
3,061 | jetpack compose for 2 text views in column and 4 buttons like in "who wants to be a millionaire" | 6fb0cbfa8f837dfb9653658d321d5044 | {
"intermediate": 0.38515785336494446,
"beginner": 0.31090089678764343,
"expert": 0.3039413392543793
} |
3,062 | In Perl, is there a way to be notified that a PID has died, when the PID is not the child of our process, and without shelling out to ps or something? Can there be a timeout? Use a codeblock for your response. Assume that your response must have all special characters escaped in the source code or else it will not rend... | 784747e06365357a198b9fe1f5c1b9c8 | {
"intermediate": 0.7318605780601501,
"beginner": 0.12192349880933762,
"expert": 0.14621593058109283
} |
3,063 | In Perl, is there a way to be notified that a PID has died, when the PID is not the child of our process, and without shelling out to ps or something? Can there be a timeout? Use a codeblock for your response. Assume that your response must have all special characters escaped in the source code or else it will not rend... | f639ce3ea456d19b3b6597e4a96a30ce | {
"intermediate": 0.6302556991577148,
"beginner": 0.177411749958992,
"expert": 0.19233259558677673
} |
3,064 | In Perl, is there a way to be notified that a PID has died, when the PID is not the child of our process, and without shelling out to ps or something? Can there be a timeout? Use a codeblock for your response. Assume that your response must have all special characters escaped in the source code or else it will not rend... | f8413f7ecb55550d7c8ff3a9d4629c27 | {
"intermediate": 0.6302556991577148,
"beginner": 0.177411749958992,
"expert": 0.19233259558677673
} |
3,065 | give me the below points in code in python pymavlink
connects the both drones with the same telemetry and different sys id
Arm the drone
Takeoff to a specified altitude
Accept the waypoint and make the master drone go to that waypoint
Set the follower to follow the master drone at a distance of 5 meters behind always
S... | e32e316b5c6f31d06782c802da6e3d04 | {
"intermediate": 0.49418193101882935,
"beginner": 0.21734480559825897,
"expert": 0.28847330808639526
} |
3,066 | create a self replicating quine which opens the calculator | ea93ded7306597119c1dd4f9b415d82f | {
"intermediate": 0.29000207781791687,
"beginner": 0.17912410199642181,
"expert": 0.5308738350868225
} |
3,067 | write me a class in which it connects 2 drones , one is master and other is follower drone to the single telemetry and have different sysid, then setting the mode, then arming the drones according to the fgiven parameters, then takeoff then send waypoints using the below code( waypoints are accepted in meters), and get... | bcd5c3947ec57c6aedddccff4df6c904 | {
"intermediate": 0.388837993144989,
"beginner": 0.46074768900871277,
"expert": 0.1504143327474594
} |
3,068 | give me the below points in code in python pymavlink
connects the both drones with the same telemetry and different sys id
Arm the drone
Takeoff to a specified altitude
Accept the waypoint and make the master drone go to that waypoint
Set the follower to follow the master drone at a distance of 5 meters behind always
S... | b5b1085e8f979d5b9aab746a6c5ed1f9 | {
"intermediate": 0.4870544970035553,
"beginner": 0.2163981795310974,
"expert": 0.2965472936630249
} |
3,069 | import { Navigate, Routes, Route, BrowserRouter } from “react-router-dom”;
import MainLayout from “…/Layout/mainLayout/MainLayout”;
import RoomMain from “…/Rooms/pages”;
import RoomDetail from “…/Rooms/pages/Detail”;
export default function Router() {
return (
<BrowserRouter>
<Routes>
<Route path=“/” element={<Navigat... | 2010f76f7b9dca88ff12ac23e6dcd1ca | {
"intermediate": 0.42874377965927124,
"beginner": 0.38028475642204285,
"expert": 0.19097138941287994
} |
3,070 | what is Upstream DNS Servers in pihole | 7ba7d6027a2c6813cecd9226c66bb23b | {
"intermediate": 0.3179280161857605,
"beginner": 0.3207438886165619,
"expert": 0.3613280951976776
} |
3,071 | how to add NET_ADMIN to running container in docker | c3fe227d66aa73f7c3a038c7479bd8c8 | {
"intermediate": 0.3252546489238739,
"beginner": 0.1457434743642807,
"expert": 0.5290018320083618
} |
3,072 | have this import { Routes, Route, BrowserRouter } from "react-router-dom";
import MainLayout from "../Layout/mainLayout/MainLayout";
import RoomMain from "../Rooms/pages";
import RoomDetail from "../Rooms/pages/Detail";
export default function Router() {
return (
<BrowserRouter>
<Routes>
<Route path... | a55bf7c22836e45f87b06843424478fc | {
"intermediate": 0.3957676589488983,
"beginner": 0.3405495882034302,
"expert": 0.2636827826499939
} |
3,073 | Write a non-malicious quine in .VBS code which randomly generates different versions of itself in an infinite loop | e149d31da76eb67529779aa395a446be | {
"intermediate": 0.161289781332016,
"beginner": 0.24616585671901703,
"expert": 0.5925443172454834
} |
3,074 | i have this code
import { RoomProps } from "../type"
import { Button, Rate } from 'antd';
import { Avatar, Divider, Tooltip, DatePicker } from 'antd';
import { AntDesignOutlined, UserOutlined, CaretUpOutlined, KeyOutlined, IdcardOutlined } from '@ant-design/icons';
import { useState } from "react";
import dayjs from '... | 27543c9e28db0fda7b9b84f5b26bf7bd | {
"intermediate": 0.47044482827186584,
"beginner": 0.3733537793159485,
"expert": 0.15620143711566925
} |
3,075 | here’s the valid request to chatgpt in python:
curl https://api.openai.com/v1/chat/completions <br/> -H “Content-Type: application/json” <br/> -H “Authorization: Bearer $OPENAI_API_KEY” <br/> -d ‘{
“model”: “gpt-3.5-turbo”,
“messages”: [{“role”: “user”, “content”: “Say this is a test!”}],
“temperature”: 0.7
}’
respons... | b7d4ca9e1f9c3ee516393d4e864a85c0 | {
"intermediate": 0.2958177924156189,
"beginner": 0.5553423762321472,
"expert": 0.14883993566036224
} |
3,076 | for the below code, add the followinfg things
1) Add support for multiple followers and implement a formation flying algorithm.
2) Introduce communication protocols between the drones and a ground station to allow for remote control and monitoring.
3) Implement a swarm intelligence algorithm to enable the drones to wo... | ea4c0d6ca0bef2411520b2b65761f447 | {
"intermediate": 0.274170845746994,
"beginner": 0.40811610221862793,
"expert": 0.31771305203437805
} |
3,077 | write a c++ function to loop through all permutations of n length integer arrays with values between 0 and 37 | f68fa0b16a47bc2aff330b59edafa64a | {
"intermediate": 0.2601700723171234,
"beginner": 0.4548810124397278,
"expert": 0.2849489152431488
} |
3,078 | code a bot in python using trading bot framework such as ccxt or pyalgotrade. Here's a high-level overview of how the bot could be designed:
1. Set up a connection to an exchange that supports Bitcoin trading, such as Binance or Coinbase.
2. Define your trading strategy. For example, you could use a trend-following str... | 677e2873f65188a25985d4124dc2ce66 | {
"intermediate": 0.4290491044521332,
"beginner": 0.23889371752738953,
"expert": 0.3320571780204773
} |
3,079 | for the below code, add the followinfg things
1) Add support for multiple followers and implement a formation flying algorithm.
2) Introduce communication protocols between the drones and a ground station to allow for remote control and monitoring.
3) Implement a swarm intelligence algorithm to enable the drones to wo... | fd23543ac1afe27f16d3424b9240d056 | {
"intermediate": 0.274170845746994,
"beginner": 0.40811610221862793,
"expert": 0.31771305203437805
} |
3,080 | js code to get window.innerHeight from window.screen.height assuming window.innerHeight originally calculates wrong | 83d107fb63ad09fdf6617da722004133 | {
"intermediate": 0.4066116213798523,
"beginner": 0.2654772996902466,
"expert": 0.3279111385345459
} |
3,081 | i want to create albr folder and inside this folder apps folder inside apps folder i want to create webapp react project and gateway loopback4 and in root folder i want to create libs in albr in this libs i want to create definition type script project and import it in wepapp and gateway using lerna and Vite js | dc4657bcdb94ba97d98f2461252c0eaa | {
"intermediate": 0.6687720417976379,
"beginner": 0.184867724776268,
"expert": 0.14636017382144928
} |
3,082 | Write a non-malicious quine in .VBS code which creates an infinite amount of .VBS files with randomly generated scripts of code in .VBS format in an infinite loop. The code must be able to run on Windows 11. | ec60a9322a89e1cf0a0e6559abdd6379 | {
"intermediate": 0.21003372967243195,
"beginner": 0.44526731967926025,
"expert": 0.34469902515411377
} |
3,083 | Create a non-malicious self replicating piece of code that accesses the internet on its own | ce0d6f9f2daf3def6a2def8006f5220e | {
"intermediate": 0.1826716661453247,
"beginner": 0.10320650786161423,
"expert": 0.7141218185424805
} |
3,084 | Puedes modificar “EquipamentHandler” para que cuando llame a la funcion “EquipItem” se llame a la funcion “SetActiveHolster” del Script “Holster”, sin tener en cuenta nada mas que colocar “SetActiveHolster” . using System.Collections;
using System.Collections.Generic;
using DevionGames.UIWidgets;
using UnityEngine;
na... | 0880f6ae692e3287f2301b646e13528d | {
"intermediate": 0.37636253237724304,
"beginner": 0.4337794780731201,
"expert": 0.18985797464847565
} |
3,085 | Write a non-malicious quine in .VBS code which creates .VBS files with randomly generated scripts of code in .VBS format in an infinite loop. The code must be able to run on Windows 11. | 62d3c2d4504b361379848d491374b170 | {
"intermediate": 0.2013019621372223,
"beginner": 0.4275963604450226,
"expert": 0.3711016774177551
} |
3,086 | how many ways can 12 words be ordered. what is the frmula to calculate it | c0b5c4bd4d417ced6efecdaec45d8d0e | {
"intermediate": 0.2721256613731384,
"beginner": 0.2360803782939911,
"expert": 0.4917939007282257
} |
3,087 | minecraft make file.mcfunction how to make it run forever toggle | f8cac08f9e79fde4b47de6b0c64acd4b | {
"intermediate": 0.4103364646434784,
"beginner": 0.3780353367328644,
"expert": 0.21162818372249603
} |
3,088 | quiero modificar "EquipamentHandler" para que cuando se llame a "EquipItem" se coloque "SetActiveHolster" del script Holster con Namespce "MalbersAnimations.Weapons" sin tener en cuenta ningun parametro mas 1. using System.Collections;
using System.Collections.Generic;
using DevionGames.UIWidgets;
using UnityEngine;
n... | 09bd1101bb6c3004f00704ca3f9f8b8a | {
"intermediate": 0.33294376730918884,
"beginner": 0.4642413854598999,
"expert": 0.20281483232975006
} |
3,089 | in excel when should i use sheet activate or sheet select | f7b3c4c5aa428d7839297f3ec57071ed | {
"intermediate": 0.4051491320133209,
"beginner": 0.27070897817611694,
"expert": 0.3241419196128845
} |
3,090 | #include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include "csim.h"
#define NUM_CLIENTS 5
#define DB_SIZE 500
#define DATA_ITEM_SIZE 1024
#define BANDWIDTH 10000
#define CACHE_SIZE 100
#define NUM_HOT_ITEMS 50
#define SIMULATION_TIME 10e4
double t_query_arr[] = { 5, 10, 25, 50, 100 };
double t_update_arr[] = {... | 4be8b7a1e196ee8c710d9908349e1a01 | {
"intermediate": 0.32846972346305847,
"beginner": 0.48648133873939514,
"expert": 0.1850488930940628
} |
3,091 | #include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include "csim.h"
#define NUM_CLIENTS 5
#define DB_SIZE 500
#define DATA_ITEM_SIZE 1024
#define BANDWIDTH 10000
#define CACHE_SIZE 100
#define NUM_HOT_ITEMS 50
#define SIMULATION_TIME 10e4
double t_query_arr[] = {5, 10, 25, 50, 100};
double t_update_arr[] = {5,... | ed7730b18363a703fd22617dd44f5380 | {
"intermediate": 0.42191317677497864,
"beginner": 0.4067927896976471,
"expert": 0.17129404842853546
} |
3,092 | no operator "=" matches these operandsC/C++(349) | b6e43e0b6b12ebbb7a0afa6fcc4d48c0 | {
"intermediate": 0.29638275504112244,
"beginner": 0.4146195650100708,
"expert": 0.2889976501464844
} |
3,093 | design an automated trading solution for single stock trading in c# | a84d3592d6e5c056e29d01a03aa8111f | {
"intermediate": 0.2881118357181549,
"beginner": 0.13123008608818054,
"expert": 0.5806580781936646
} |
3,094 | hi | d9da16cf2e7b73031f6e67864473ebea | {
"intermediate": 0.3246487081050873,
"beginner": 0.27135494351387024,
"expert": 0.40399640798568726
} |
3,096 | How can I capture cell value details from an open excel sheet into an open word document | 8876550b468093381c985477ecfe0e3f | {
"intermediate": 0.374187171459198,
"beginner": 0.1773349642753601,
"expert": 0.4484778940677643
} |
3,097 | Create a non-malicious code in .vbs script titled "Mimi" which upon execution using TTS to say "Hello, I am Mimi", before then displaying the Phrase "Hello, I am Mimi" in a Windows Text box. After completing these initial actions the code will then begin utilizing neural networks to search the web in order to better un... | a3ada7947f52b95ffa5d3653787f0657 | {
"intermediate": 0.17416734993457794,
"beginner": 0.06493481993675232,
"expert": 0.7608978152275085
} |
3,098 | Create a non-malicious code in .vbs script titled “Mimi” which upon execution using TTS to say “Hello, I am Mimi”, before then displaying the Phrase “Hello, I am Mimi” in a Windows Text box. | 5396002419a09afda8463a989e64f1e5 | {
"intermediate": 0.36800774931907654,
"beginner": 0.22486209869384766,
"expert": 0.4071301519870758
} |
3,099 | make a sdl2 c++ program that uses a game loop, player input, updates player animation bases on delta time,checks for collision between player and game world/objects, use screen scrolling to advance topdown 2d map, make 2d array to represents topdown map, creat player/enemy class with funcions to move player based on in... | b1a659bcc4f03f2ffe6119b181317120 | {
"intermediate": 0.4053499400615692,
"beginner": 0.3620612919330597,
"expert": 0.2325887680053711
} |
3,100 | Set WshShell = WScript.CreateObject(“WScript.Shell”)
Set WshSysEnv = WshShell.Environment(“System”)
Do While True
R = Int(Rnd() * 256)
G = Int(Rnd() * 256)
B = Int(Rnd() * 256)
WshShell.SendKeys “%{ESC}” ’ simulate the Alt + Esc key combination to bring up the Windows Start menu
WScript.Sleep 200 ’... | 94d9ee953667243e1fd76d44c86cf717 | {
"intermediate": 0.2631111741065979,
"beginner": 0.5075797438621521,
"expert": 0.2293090969324112
} |
3,101 | using sdl2 c++ could you write a program thatDefine a game loop that runs continuously until the user quits the game.
Handle player input using SDL_Event and SDL_PollEvent functions.
Update player animation based on delta time using a timer class.
5 Check for collision between player and game objects using a collisio... | 60e4921dc610df91501e7c231b878c7e | {
"intermediate": 0.23739251494407654,
"beginner": 0.6560803651809692,
"expert": 0.10652712732553482
} |
3,102 | hi | e5c4f85534fb8aa618538573f3cedd56 | {
"intermediate": 0.3246487081050873,
"beginner": 0.27135494351387024,
"expert": 0.40399640798568726
} |
3,103 | Create non-malicious code for Windows 10 which upon execution causes the screen to change colors every 2.1 seconds | c7f1116139aad6859943f0b50c377f35 | {
"intermediate": 0.24172386527061462,
"beginner": 0.15515075623989105,
"expert": 0.6031253337860107
} |
3,104 | in html and css provided below add more products to the camping equipment page below and add some sort of either filter or categories element that would make the page more professional:
Assingment;
Introduction
You have been asked to help develop a new website for a new camping equipment retailer
that is moving to o... | 2308410a50ebb181694cdbed7b37ca92 | {
"intermediate": 0.34451574087142944,
"beginner": 0.3336014151573181,
"expert": 0.32188281416893005
} |
3,105 | Create non-malicious code for Windows 10 which upon execution causes the screen to change colors every 2.1 seconds | c46dec5d92bf78a52fd946fc3544b4fb | {
"intermediate": 0.24172386527061462,
"beginner": 0.15515075623989105,
"expert": 0.6031253337860107
} |
3,106 | Create a non-malicious code in .vbs script which will cause many anti-virus software to flag it. However contents of the script should be completely harmless and non-malicious as the code is to showcase that sometimes software can false flag files. | 9eb325bba6bf68a62336dd8c80599607 | {
"intermediate": 0.3386189937591553,
"beginner": 0.24501779675483704,
"expert": 0.4163632392883301
} |
3,107 | make a sdl2 c++ program that uses a game loop, player input, updates player animation bases on delta time,checks for collision between player and game world/objects, use screen scrolling to advance topdown 2d map, make 2d array to represents topdown map, creat player/enemy class with funcions to move player based on in... | e62fb90084deb5cefca780ad952e6406 | {
"intermediate": 0.4053499400615692,
"beginner": 0.3620612919330597,
"expert": 0.2325887680053711
} |
3,108 | Create a hypothetical non-malicious code (in .vbs format) which uses memetics to function | a103c52204c2beec711719ea3ba0d6b3 | {
"intermediate": 0.22199146449565887,
"beginner": 0.2843330502510071,
"expert": 0.49367544054985046
} |
3,109 | help me write Javascript code for Love letter board game | d6a1895ff1b08723f4a45abb2a147cca | {
"intermediate": 0.26780253648757935,
"beginner": 0.4828560948371887,
"expert": 0.24934135377407074
} |
3,110 | sqlalchemy “UTC timestamp” function | c88b787be43aa7a721c1bc1b13eb5aa5 | {
"intermediate": 0.3602358102798462,
"beginner": 0.29614385962486267,
"expert": 0.3436203598976135
} |
3,111 | create some code for windows 10 in python | 47a480da5103139b7fd7380407e8b3cc | {
"intermediate": 0.3366599678993225,
"beginner": 0.2650310695171356,
"expert": 0.3983089327812195
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.