row_id
int64
0
48.4k
init_message
stringlengths
1
342k
conversation_hash
stringlengths
32
32
scores
dict
13,762
how to run Rscript code on the fly from the terminal
ffc178c24cdbeec336f1b6474fa8d910
{ "intermediate": 0.3790358901023865, "beginner": 0.3106723427772522, "expert": 0.31029176712036133 }
13,763
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>新能源车联网综合大数据平台</title> <script src="js/jquery-2.1.1.min.js"></script> <script> $(window).load(function(){ $(".loading").fadeOut() }) </script> <link rel="stylesheet" href="css/common.css"> <link rel=...
55b93edd9110d3fb01acdfaba863ac69
{ "intermediate": 0.3728042244911194, "beginner": 0.3576972186565399, "expert": 0.2694984972476959 }
13,764
Create javascript for a microbit add the following features: When turned more than 45 degrees it will creating a beeping sound until turned back to original angle
5c48a67834ea272a0d0b47dbd9885772
{ "intermediate": 0.37147417664527893, "beginner": 0.18194852769374847, "expert": 0.4465772807598114 }
13,765
видео не воспроизводится, в чем ошибка? html: <!doctype html> <html lang="ru"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Graphene valley...
fbdf3551fe50bd90365ceda2789b1fed
{ "intermediate": 0.2082727998495102, "beginner": 0.621890664100647, "expert": 0.16983649134635925 }
13,766
как заставить видео воспроизводиться автоматически при открытии страницы? <video id="video2" loop muted crossOrigin="anonymous" playsinline style="width: 100%;"> <source src="textures/planet.mp4"> </video>
9bb1b4432ee1895f94e1617bf6b7721e
{ "intermediate": 0.23178690671920776, "beginner": 0.4783797562122345, "expert": 0.28983333706855774 }
13,767
php code for uploaded file?
7f61c0409fb47ad08f4361522a702725
{ "intermediate": 0.2707397937774658, "beginner": 0.509702205657959, "expert": 0.21955803036689758 }
13,768
How do you view the entire storage in GB used in a Azure Tenant
1f173efab4dee517225e8269306b9637
{ "intermediate": 0.3687877058982849, "beginner": 0.32708773016929626, "expert": 0.3041245937347412 }
13,769
how can I use discord identify oauth2 token?
ac4cca5579f8f3b99d797c7dd2f3810e
{ "intermediate": 0.45278483629226685, "beginner": 0.1868463009595871, "expert": 0.36036887764930725 }
13,770
how to check burp suite license how many device used
5033fd6e748c2e89060153284a9499f4
{ "intermediate": 0.583598792552948, "beginner": 0.2056737095117569, "expert": 0.2107274979352951 }
13,771
i want to add a url to link our wechat account to my webpage. My wechat account is <PRESIDIO_ANONYMIZED_PHONE_NUMBER>. How to do it?
f85ad4d3c6157c8d7e24a2d8cf693c72
{ "intermediate": 0.41192805767059326, "beginner": 0.29086020588874817, "expert": 0.2972117066383362 }
13,772
async function checkUser(agent: AgentList, login: string, repeat = 10): Promise<void> { await OperationRepeater.RepeatUntil( async () => (await sshService.execCommandKey(agent.ip, Project.Rpoint, 'compgen -u')).stdout.includes(login) === true, repeat, 1, ); } как проверить, что not include, если сама ф...
624c59a0e491a50ec6348375bb00f063
{ "intermediate": 0.28937840461730957, "beginner": 0.543607771396637, "expert": 0.16701382398605347 }
13,773
my wechat ID is <PRESIDIO_ANONYMIZED_PHONE_NUMBER>. How to allow the user to click a button and trigger their mobile wechat to chat me.
971d65916b3df744d0914fe8d89cd498
{ "intermediate": 0.3717118203639984, "beginner": 0.283159077167511, "expert": 0.3451290726661682 }
13,774
hi..
2f0b26b961e63eb90dfecf3830e4f7d8
{ "intermediate": 0.3285483717918396, "beginner": 0.2803357243537903, "expert": 0.3911159336566925 }
13,775
how to set up a monte carlo simulation of the 1-yr trajectories of a 2-year treasury rate
10707f49d60476cd87a80cadb82e6fbf
{ "intermediate": 0.21186362206935883, "beginner": 0.2017538994550705, "expert": 0.5863824486732483 }
13,776
напиши код для поиска в структуре данных: {'type': 'list', 'opt': False, 'end': '', 'value': [{'type': 'list', 'opt': False, 'end': '.', 'value': [{'type': 'choice', 'opt': False, 'end': '', 'value': [{'type': 'text', 'opt': False, 'value': 'недавно'}, {'type': 'text', 'opt': False, 'va...
b84d6e8fbe830104530fa62ba6dc651a
{ "intermediate": 0.3044202923774719, "beginner": 0.4617626965045929, "expert": 0.23381701111793518 }
13,777
is obfuscation ever done manually?
1178f99cbf2a808b681c58b1f9703a46
{ "intermediate": 0.23542387783527374, "beginner": 0.5596561431884766, "expert": 0.2049199491739273 }
13,778
How do I configure asp.net core web service to use TLS 1.2 via appsettings.json configuration file
a969604bea50cc4484573183b9f3480d
{ "intermediate": 0.48852968215942383, "beginner": 0.26511064171791077, "expert": 0.24635973572731018 }
13,779
I used this signal_generator code: def signal_generator(df): # Calculate EMA and MA lines df[‘EMA5’] = df[‘Close’].ewm(span=5, adjust=False).mean() df[‘EMA10’] = df[‘Close’].ewm(span=10, adjust=False).mean() df[‘EMA20’] = df[‘Close’].ewm(span=20, adjust=False).mean() df[‘EMA50’] = df[‘Close’].ewm(span=50, adjust=False)...
188be54f46703c2361d7b5342058b83d
{ "intermediate": 0.27891626954078674, "beginner": 0.39146488904953003, "expert": 0.32961881160736084 }
13,780
grid-template: auto auto / repeat(5, 1fr);
e0a845293f8bca5b988342fe01663d10
{ "intermediate": 0.2995305061340332, "beginner": 0.38507959246635437, "expert": 0.31538987159729004 }
13,781
What is asp net mvc
dc33c79bf738e128908dcffa540cf25f
{ "intermediate": 0.3096359670162201, "beginner": 0.17605742812156677, "expert": 0.5143066048622131 }
13,782
Generate deterministic java code to test that find the all best pairs with fuzziness compatibility of 0.8 between two sets of words. The algorithm should handle duplicate items in the sets. In addition, validate that at least of set has all its element present into these best pairs. Optimize and reduce the complexity b...
1fb7781f93ac74590b5cefd62b8249cb
{ "intermediate": 0.09115217626094818, "beginner": 0.03776741027832031, "expert": 0.8710804581642151 }
13,783
//@version=3 study("VWAP", overlay=true) // There are five steps in calculating VWAP: // // 1. Calculate the Typical Price for the period. [(High + Low + Close)/3)] // 2. Multiply the Typical Price by the period Volume (Typical Price x Volume) // 3. Create a Cumulative Total of Typical Price. Cumulative(Typical Price ...
df4ee50e2e057cceee7858aa2e81760a
{ "intermediate": 0.34225261211395264, "beginner": 0.2848772406578064, "expert": 0.37287017703056335 }
13,784
java code to remove any outer Frame from Jframe with JPanel and Jbutton on it , with option to move the window by pressing shift plus mouseclick as drag action
6f2f44705ff0f465a77d3abd104bbf25
{ "intermediate": 0.628436803817749, "beginner": 0.12556374073028564, "expert": 0.24599947035312653 }
13,785
//@version=3 study("VWAP", overlay=true) // There are five steps in calculating VWAP: // // 1. Calculate the Typical Price for the period. [(High + Low + Close)/3)] // 2. Multiply the Typical Price by the period Volume (Typical Price x Volume) // 3. Create a Cumulative Total of Typical Price. Cumulative(Typical Price ...
366b488226ab0a0ebf5dc895334600a9
{ "intermediate": 0.34225261211395264, "beginner": 0.2848772406578064, "expert": 0.37287017703056335 }
13,786
using react-router v6.4.3 how can I prevent a user from navigating when there are unsaved changes in a form
391fba6cbba4315f7436ddf08429242d
{ "intermediate": 0.5893675684928894, "beginner": 0.1643422544002533, "expert": 0.2462901920080185 }
13,787
How do I use the ImportHTML command in GoogleSheets to import names from a table but if a name contains "[" then it should only import the name and leave out the bracket
648d83ca9c2a5b10b51a17397f4166cd
{ "intermediate": 0.4923567473888397, "beginner": 0.1930927038192749, "expert": 0.3145505487918854 }
13,788
java code : can a jbutton be customized to be a perfect circle knob ?
4a0f9fa94cb690fa49f0991a1207f4cc
{ "intermediate": 0.5177393555641174, "beginner": 0.17291954159736633, "expert": 0.30934107303619385 }
13,789
How to convert float to 2 bytes ieee-11073? In c++
27d60032df429876210f17618ca97fbb
{ "intermediate": 0.41685107350349426, "beginner": 0.186250239610672, "expert": 0.39689868688583374 }
13,790
How do i make a blurry gui in roblox studio?
3b10ce3be293832987bbf920078d7a3c
{ "intermediate": 0.41187557578086853, "beginner": 0.27220651507377625, "expert": 0.3159179389476776 }
13,791
how to handle click on a cell in calendar with react-big-calendar
6ac32b5c53a0032df9e10584debc6576
{ "intermediate": 0.43952420353889465, "beginner": 0.2263709008693695, "expert": 0.3341049253940582 }
13,792
Formula that returns the number of copies of a value in a data range in googlesheets
dde26e3b2ce579c2f9cc3c610d520e5a
{ "intermediate": 0.27141273021698, "beginner": 0.21593523025512695, "expert": 0.5126519799232483 }
13,793
is it possible to create an android, IOS mobile app using ReactJS for the frontend and C# for the backend?
931f1084d32232413e86964147bee242
{ "intermediate": 0.6442254781723022, "beginner": 0.18466831743717194, "expert": 0.17110614478588104 }
13,794
echarts.js:1 Dom’s width & height should be ready before init.
c9cc31e1843b750d974e3756dc31c2a6
{ "intermediate": 0.32805490493774414, "beginner": 0.25814881920814514, "expert": 0.4137962758541107 }
13,795
Можешь мою доменную модель первести в Kotlin domain model? [ { "name": "User", "type": "record", "logicalType": "Aggregate", "fields": [ {"name": "id", "type": "long"}, {"name": "username", "type":} {"name": "first_name", "type": "string"} ...
1489b5b7562763dd5a2ee0126790f2cc
{ "intermediate": 0.3288899064064026, "beginner": 0.4769594669342041, "expert": 0.19415061175823212 }
13,796
I used this signal_generator code: def signal_generator(df): # Calculate EMA and MA lines df['EMA5'] = df['Close'].ewm(span=5, adjust=False).mean() df['EMA10'] = df['Close'].ewm(span=10, adjust=False).mean() df['EMA20'] = df['Close'].ewm(span=20, adjust=False).mean() df['EMA50'] = df['Close'].ewm(sp...
d3d20eb8a71c828bbfe0e1f16c0b12ca
{ "intermediate": 0.31548231840133667, "beginner": 0.41970422863960266, "expert": 0.2648134231567383 }
13,797
java : you provided this code to make a circle shape more round by max the circle then blur then minimize but the jframe is now blank, this was your code private BufferedImage circleImage; public BlurCircleExample() { int circleSize = 100; int imageSize = circleSize * 10; // Increase image size fo...
26874b41c66a5c6998704ea424155a54
{ "intermediate": 0.32249119877815247, "beginner": 0.4707639813423157, "expert": 0.20674480497837067 }
13,798
Can you write a code implementing jsondiffpatch with jquery easyui treegrid to show the difference between two tables
0da2586bb7650b7e0d044219b39d2619
{ "intermediate": 0.7370108366012573, "beginner": 0.10331635922193527, "expert": 0.1596727967262268 }
13,799
Write me code for the variables between processes in real time change
e18d77f50788695802e05978bef217d5
{ "intermediate": 0.31938642263412476, "beginner": 0.3116854727268219, "expert": 0.36892810463905334 }
13,800
how to change format from 'Sat Jul 01 2023 15:00:00 GMT+0700
74228feca12401b35ff3750b75474007
{ "intermediate": 0.30250418186187744, "beginner": 0.3413141369819641, "expert": 0.35618165135383606 }
13,801
phone number in kotlin domain model
241e155ec87b11ecf3053f3d7dfd1eb8
{ "intermediate": 0.3144124150276184, "beginner": 0.25028494000434875, "expert": 0.43530264496803284 }
13,802
can you design a power app with script?
b747dffaa9162419f4141f5d6b6f5ebc
{ "intermediate": 0.3070230782032013, "beginner": 0.38968515396118164, "expert": 0.30329179763793945 }
13,803
user in kotlin domain model
9bdc102106148a684ae178d894a49795
{ "intermediate": 0.30668842792510986, "beginner": 0.28166693449020386, "expert": 0.41164466738700867 }
13,804
Write source code of Konami game king's valley for msx z80
c5252575a68cfbfcceab2859cbc1bb94
{ "intermediate": 0.30614355206489563, "beginner": 0.29811424016952515, "expert": 0.3957422375679016 }
13,805
after using this command "Scaffold-DbContext "Server=(LocalDB)\MSSQLLocalDB;Database=CryptoT;Trusted_Connection=True;" Microsoft.EntityFrameworkCore.SqlServer -OutputDir Models -Force" if i wanted to add more tables created on the same database what should i do?
4fb719f4a871f0fae487d4e5a31b9106
{ "intermediate": 0.8159516453742981, "beginner": 0.09408598393201828, "expert": 0.08996229618787766 }
13,806
current: { 6:07:03 PM id: 2, email: 'admin@ad.com', name: 'Admin', middleName: 'Not ', createdAt: '2023-06-27T22:20:48.428Z', lastLogin: '2023-06-28T20:26:51.215Z', role: 'ADMIN', ...
b17742e38f9dcdad942e690e4a3ba447
{ "intermediate": 0.326289564371109, "beginner": 0.46521440148353577, "expert": 0.20849603414535522 }
13,807
can you fix my code?
322a5d8814b6624fecdfa48fa01e386f
{ "intermediate": 0.3078547418117523, "beginner": 0.4568352699279785, "expert": 0.23531001806259155 }
13,808
сделай это в виде приложения #include <iostream> #include <fstream> #include <string> using namespace std; int main() { string filename; cout << "Enter filename: "; cin >> filename; string filepath = "C:\\testZilla\\1\\2\\" + filename; // полный путь к файлу ifstream file(filepath); // открываем файл для ч...
b5c143a6bfd96a1fc4ce5833fec7d52b
{ "intermediate": 0.3556305170059204, "beginner": 0.5418210625648499, "expert": 0.10254840552806854 }
13,809
hello
dfdd5e1d542b14341541a8263f7f17be
{ "intermediate": 0.32064199447631836, "beginner": 0.28176039457321167, "expert": 0.39759764075279236 }
13,810
I used this signal generator code: def signal_generator(df): # Calculate EMA and MA lines df['EMA5'] = df['Close'].ewm(span=5, adjust=False).mean() df['EMA10'] = df['Close'].ewm(span=10, adjust=False).mean() df['EMA20'] = df['Close'].ewm(span=20, adjust=False).mean() df['EMA50'] = df['Close'].ewm(sp...
3d89c18b64c71ecf016f4db880c8f284
{ "intermediate": 0.27838343381881714, "beginner": 0.3729536235332489, "expert": 0.3486630320549011 }
13,811
in angular, let's say I have an App component, inside it there is a Tasks component, inside it there is a Task-Item component. If the Task-Item component emits an event Fire, and Tasks does not catch it, will App catch it?
dd060fe73582328b71124b796a79e308
{ "intermediate": 0.723870038986206, "beginner": 0.13564026355743408, "expert": 0.14048969745635986 }
13,812
java code to place text at the very bottom of a Jbutton
79fc4b73adc00d0a942084b3212d5b68
{ "intermediate": 0.3998281955718994, "beginner": 0.24408134818077087, "expert": 0.3560904264450073 }
13,813
i used this command: "Scaffold-DbContext "Server=(LocalDB)\MSSQLLocalDB;Database=CryptoT;Trusted_Connection=True;" Microsoft.EntityFrameworkCore.SqlServer -OutputDir Models", now i need to update the database and get the new tables
8b283698167dd8ab39a0cf027e75f1b9
{ "intermediate": 0.6182749271392822, "beginner": 0.15445052087306976, "expert": 0.2272745668888092 }
13,814
arcgis cad to shapefile in model builder, how is
ec7fc5b0d4b4353fe46b186880bf35a7
{ "intermediate": 0.3638300895690918, "beginner": 0.15850362181663513, "expert": 0.47766628861427307 }
13,815
show me how to set up an ai agent in my browser, please give precise step by step instructions
1dca8ba8f42d881ddc6da6ff4ae3f3d8
{ "intermediate": 0.39118078351020813, "beginner": 0.07251854240894318, "expert": 0.5363006591796875 }
13,816
How to get all subdirectories of a site made with node?
d049210964c20ce991aa500503f6c98b
{ "intermediate": 0.3309999704360962, "beginner": 0.18520639836788177, "expert": 0.48379355669021606 }
13,817
Can you give me C++ code that creates a game loop.
dfaf1a612e5ff942315582e7c6e354ab
{ "intermediate": 0.17817407846450806, "beginner": 0.6922154426574707, "expert": 0.12961052358150482 }
13,818
suppose i'm gonna by ten cryptocurrencies. how can i choose my portfolio so as to achieve the minimum risk possible?
3640a4877f768ea917c8d237baa6ab45
{ "intermediate": 0.39287859201431274, "beginner": 0.30926448106765747, "expert": 0.2978569269180298 }
13,819
I've an asp.net core project, create an email service and use the email info@cryptotasky.com
1914d4fe1fe2079fcb212dffe3ff8bd0
{ "intermediate": 0.34569913148880005, "beginner": 0.19212029874324799, "expert": 0.4621805250644684 }
13,820
Hello there!
b1465e3a0185667e94969fa1c223872e
{ "intermediate": 0.324867308139801, "beginner": 0.2612829804420471, "expert": 0.41384971141815186 }
13,821
I've an asp.net core with react project. where should the controller be located or named to use "axios.post('/api/users/register', userData)"
cc6a05dcaae13317ac92f98b59beeeb5
{ "intermediate": 0.6268373131752014, "beginner": 0.20210447907447815, "expert": 0.17105819284915924 }
13,822
how to fix error [postcss] Cannot find module 'preline/plugin'
ffb40c95091af6a6f2d4f4f96a9dbe1f
{ "intermediate": 0.449614554643631, "beginner": 0.34394651651382446, "expert": 0.20643891394138336 }
13,823
Why Hello There!
843d2cbdd910724b31bdef489816c335
{ "intermediate": 0.3660122752189636, "beginner": 0.3154837191104889, "expert": 0.3185039758682251 }
13,824
hi there!
43510bd8ab260df865b245b477acd5a5
{ "intermediate": 0.327354371547699, "beginner": 0.26052674651145935, "expert": 0.4121188819408417 }
13,825
Write the code of 16to32-bit Sign Extension Unit with the testbench. “a” is 16-bit input and “result” is 32-bit output.Write the testbench write code in verilog
d0535b23605529fc1239f13917d0f11e
{ "intermediate": 0.36416536569595337, "beginner": 0.22124738991260529, "expert": 0.4145871698856354 }
13,826
refresh page while clicked on q-fab-action
e0e23a4b71f2cabc63c87847a394b358
{ "intermediate": 0.29387161135673523, "beginner": 0.209126278758049, "expert": 0.49700215458869934 }
13,827
refresh color of q-badge when q-fab-action is clicked in quasar
8c818dbdd35e6fadfb5351836379b43e
{ "intermediate": 0.39054951071739197, "beginner": 0.21606682240962982, "expert": 0.3933837115764618 }
13,828
testing
8926f687c7d6a7bd12f3117259033a8d
{ "intermediate": 0.3567313253879547, "beginner": 0.2693101167678833, "expert": 0.3739585876464844 }
13,829
напиши код androidstudio java который из выбранной картинки .jpg по нажатию на кнопку считает с нее текст
fe47bdb9205f0784bc6ca68e02cb8215
{ "intermediate": 0.4723031222820282, "beginner": 0.17124946415424347, "expert": 0.3564474582672119 }
13,830
how arm switch to thumb mode, how to switch back to arm
bcee2381ecc0d3f001b7f148a818f37c
{ "intermediate": 0.3517196774482727, "beginner": 0.23998616635799408, "expert": 0.4082941710948944 }
13,831
Operationscmd = New OleDbCommand(" insert into Operations (ReSaleID,OperDate,OperTime,OperUser,ReSaleTotalG,ReSaleQty,OperItem,OperitemPrice) Values ('" & ReSaleID.Text & "',#" & ReSaleDate.Value.ToString("MM-dd-yyyy HH:mm:ss") & "#,#" & ReSaleTime.Value.ToString("MM-dd-yyyy HH:mm:ss") & "#, '" & ReSaleUser.Text & " , ...
f883181c375431482b425f1a798645d3
{ "intermediate": 0.358244389295578, "beginner": 0.25827065110206604, "expert": 0.38348492980003357 }
13,832
struct ip_mreq结构体
5edd50229dc4eb8be9ba021def77f70a
{ "intermediate": 0.4060835540294647, "beginner": 0.24411064386367798, "expert": 0.3498057723045349 }
13,833
#include <mpi.h> #include <stdlib.h> #include <stdio.h> #include <omp.h> #define Type double #if Type == double #define MPI_TYPE MPI_DOUBLE #else #define MPI_TYPE MPI_FLOAT #endif inline Type **Allocate2D(int M, int N); inline void Free(Type **ptr); inline void Swap(Type ***A, Type ***B); int main() { MPI_Init(NULL...
0b96a6068e46bf0070e175af31b4003d
{ "intermediate": 0.3422110080718994, "beginner": 0.4289303123950958, "expert": 0.22885869443416595 }
13,834
We have file formula.txt with text: 1. A = U * I * t, where A is the work in Joules, U is the voltage, I is the current, and t is the time. 2. A = q / t, where A is the average current, q is the charge, and t is the time. 3. A = C * V, where A is the energy stored in a capacitor, C is the capacitance, and V is the volt...
da23f364474444f0b9a09a61fa119c47
{ "intermediate": 0.44230931997299194, "beginner": 0.2388238161802292, "expert": 0.31886690855026245 }
13,835
We have file formula.txt with text: 1. A = U * I * t, where A is the work in Joules, U is the voltage, I is the current, and t is the time. 2. A = q / t, where A is the average current, q is the charge, and t is the time. 3. A = C * V, where A is the energy stored in a capacitor, C is the capacitance, and V is the volt...
3ab78fcc800e9715386c75152a08588a
{ "intermediate": 0.454901784658432, "beginner": 0.2402159720659256, "expert": 0.3048821985721588 }
13,836
import { sshService, createUser as CU, deleteUser, checkUser } from '../../../../../service/sshService'; как импортировать createUser, но использовать под другим именем?
006784350a8fa19451d344e50610af50
{ "intermediate": 0.37725740671157837, "beginner": 0.4101409316062927, "expert": 0.2126016467809677 }
13,837
I used this signal_generator code: def signal_generator(df): # Calculate EMA and MA lines df['EMA5'] = df['Close'].ewm(span=5, adjust=False).mean() df['EMA10'] = df['Close'].ewm(span=10, adjust=False).mean() df['EMA20'] = df['Close'].ewm(span=20, adjust=False).mean() df['EMA50'] = df['Close'].ewm(sp...
a23875bad7d31ec103573aa78a8162aa
{ "intermediate": 0.30508798360824585, "beginner": 0.34550052881240845, "expert": 0.3494115173816681 }
13,838
pip3 config get global.index-url 报错 unknown command config
4b00bdc656d3d30081874042d6f503e6
{ "intermediate": 0.4015484154224396, "beginner": 0.2645131051540375, "expert": 0.33393847942352295 }
13,839
Write Java code that multiplies a String by a specified number of times.
ed53c7af517b6e969fc90b243bdbbd6d
{ "intermediate": 0.37304192781448364, "beginner": 0.2834708094596863, "expert": 0.3434872627258301 }
13,840
I am designing a powerapps screen for a chatbot. This chatbot should display and record the conversation going on between the bot and user. Can you write me a powerapps script that can do this design based on the script you provide?
1021f7e248dd1f2bff5eccfafcb042a2
{ "intermediate": 0.4059883952140808, "beginner": 0.3042145371437073, "expert": 0.2897970378398895 }
13,841
how can I use identify scope in discord developer portal?
f512cb2d0fc1ae4254b76fe85fe951d4
{ "intermediate": 0.5121124982833862, "beginner": 0.24101591110229492, "expert": 0.24687165021896362 }
13,842
Please give me further instructions to make this design responsive on all cell phone devices and tablets. Make the instructions step by step. If I need to use some scripts first give the instruction followed by its script. Certainly! Here is a step-by-step guide to make the chatbot screen design responsive on all cell ...
27870332e49cde10d7dc1b32ee23a65d
{ "intermediate": 0.37846049666404724, "beginner": 0.28338170051574707, "expert": 0.3381578326225281 }
13,843
I used this signal_generator code: def signal_generator(df): # Calculate EMA and MA lines df['EMA5'] = df['Close'].ewm(span=5, adjust=False).mean() df['EMA10'] = df['Close'].ewm(span=10, adjust=False).mean() df['EMA20'] = df['Close'].ewm(span=20, adjust=False).mean() df['EMA50'] = df['Close'].ewm(sp...
59ba99a556b38ec18d16c597e5b59c1e
{ "intermediate": 0.30508798360824585, "beginner": 0.34550052881240845, "expert": 0.3494115173816681 }
13,844
Please give me further instructions to make this design responsive on all cell phone devices and tablets. Make the instructions step by step. If I need to use some scripts first give the instruction followed by its script.
b88cc56b8a7e8287d4535e1ad070ebe9
{ "intermediate": 0.3236745595932007, "beginner": 0.20539391040802002, "expert": 0.4709315896034241 }
13,845
hello
97892091300cb85ac63a093bb97bcfb9
{ "intermediate": 0.32064199447631836, "beginner": 0.28176039457321167, "expert": 0.39759764075279236 }
13,846
Please give me further instructions to make my powerapps chatbot design responsive on all cell phone devices and tablets. Make the instructions step by step. If I need to use some scripts first give the instruction followed by its script.
0e92dd32cbf1e8550d6ec63ab1cecec8
{ "intermediate": 0.3308640122413635, "beginner": 0.24275986850261688, "expert": 0.4263761341571808 }
13,847
Hello, there.
f22810506c53d616ee06e988bfb40000
{ "intermediate": 0.3332764506340027, "beginner": 0.2615770399570465, "expert": 0.4051465392112732 }
13,848
I need to design a chatbot in powerapps that is responsive on phone devices, tablets and browsers. Please give step by step scripts to create it.
f9827ad1edbd6363b1072e817b4e371a
{ "intermediate": 0.4800598621368408, "beginner": 0.20842406153678894, "expert": 0.31151607632637024 }
13,849
Give me a line of JavaScript that returns true if I can use wget to click on a button in a certain website link and false otherwise.
3a6982fd92e3994156f56d1bc64bdb8d
{ "intermediate": 0.5269484519958496, "beginner": 0.2773652672767639, "expert": 0.1956862211227417 }
13,850
write python code to split .txt file onto several parts by line. Write in code fake path to file
58731b4b6c29a3361aa496c39bbb5398
{ "intermediate": 0.44020500779151917, "beginner": 0.24079787731170654, "expert": 0.3189971446990967 }
13,852
Make fill-in-the-blank code questions corresponding to the following text.: GUI development with Rust and GTK 4 Memory Management A GObject (or glib::Object in Rust terms) is a reference-counted, mutable object. Let’s see in a set of real life examples which consequences this has. fn main() -> glib::ExitCode { // Cre...
ecd1645d820f7fff8fca81cc6b03fcbc
{ "intermediate": 0.3376469016075134, "beginner": 0.3953392803668976, "expert": 0.267013818025589 }
13,853
public async checkUser(agent: AgentList, login: string, exist = true, repeat = 10, userRole = Project.Rpoint): Promise<void> { await OperationRepeater.RepeatUntil(async () => (await this.execCommandKey(agent.ip, userRole, 'compgen -u')).stdout.includes(login) === exist, repeat, 1); } мне написали:если в функ...
f818f155813459b2d9b118567704bf35
{ "intermediate": 0.2858085334300995, "beginner": 0.48162853717803955, "expert": 0.23256288468837738 }
13,854
Hi Im working with react-hook-form. And I need to make functionality that required is only to fill 1 field, any which user wants
18e80a9826314afd8809ecbee1f87673
{ "intermediate": 0.6185141801834106, "beginner": 0.1569259613752365, "expert": 0.22455990314483643 }
13,855
а в интерфейсе можно задать значение по умолчанию? interface CheckUserOptions { agent: AgentList; login: string; exist?: boolean; repeat: number = 10; userRole: string = Project.Rpoint; } public async checkUser(options: CheckUserOptions): Promise<void> { await OperationRepeater.RepeatUntil(async () => (await this.execC...
a1625569e030793f65ccf7199faebdef
{ "intermediate": 0.3206994831562042, "beginner": 0.4132865071296692, "expert": 0.2660140097141266 }
13,856
Hi Im working with react-hook-form. And I need to make functionality that required is only to fill 1 field, any which user wants
ce83e5ee70a6db6c4350a674e663b800
{ "intermediate": 0.5480569005012512, "beginner": 0.19398647546768188, "expert": 0.2579565942287445 }
13,857
Can you design screens on powerapps through scripts?
d32b984c5f86c42b64f9c38f6f9772f4
{ "intermediate": 0.344529390335083, "beginner": 0.27790728211402893, "expert": 0.37756332755088806 }
13,858
how to convert 4 byte float to short 2 byte float in c++ using IEEE-11073
d34f44353b7f2d9c9b101e7b4e213c21
{ "intermediate": 0.3280785381793976, "beginner": 0.21791556477546692, "expert": 0.4540059268474579 }
13,859
How can I refactor this code to use createBrowserRouter from react-router-dom instead of the BrowserRouter component: export const App: React.FC = () => { const { redirect } = useAuth(); const { flags } = useFlagsContext(); const { getUserPermissions, getUserPermissionsStatus } = usePermissionsContext(); c...
459fc415a4f5d8bd35eb3d4420ce63d9
{ "intermediate": 0.32188600301742554, "beginner": 0.5241230130195618, "expert": 0.15399107336997986 }
13,860
please provide .net 7 code for asp.net core server to read ssl protocol version from configuration and apply it to server
f77b746579d480f9617236ed0ea0c45b
{ "intermediate": 0.48963698744773865, "beginner": 0.2207929491996765, "expert": 0.28957003355026245 }
13,861
How can I draw Johnson's project algorithm graphically with Python? Is this a simple project?
31d44cb1f3dffd913154dbdee0fa4992
{ "intermediate": 0.19433259963989258, "beginner": 0.0490344762802124, "expert": 0.756632924079895 }
13,862
How to seng disconnect command using aircrack-ng
1c78d8b00a31238fe3f577eb31334f66
{ "intermediate": 0.3875995874404907, "beginner": 0.1864597350358963, "expert": 0.4259406626224518 }