row_id
int64
0
48.4k
init_message
stringlengths
1
342k
conversation_hash
stringlengths
32
32
scores
dict
8,633
build some vanilla JavaScript component
c44867512735755d1918caa1be5423e0
{ "intermediate": 0.2621201276779175, "beginner": 0.5387150645256042, "expert": 0.1991647481918335 }
8,634
how can i use this string format: "/add 'this is some text' groupid times seconds" in C# while storing "'this is some text'", "groupid", "times", "seconds" in different variables?
420d817c18d7b64d1d3484866db66dd6
{ "intermediate": 0.5097465515136719, "beginner": 0.3020997941493988, "expert": 0.18815363943576813 }
8,635
EffectiveCapabilities=cap_chown cap_dac_override cap_dac_read_search cap_fowner cap_fsetid cap_kill cap_setgid cap_setuid cap_setpcap cap_linux_immutable cap_net_bind_service cap_net_broadcast cap_net_admin cap_net_raw cap_ipc_lock cap_ipc_owner cap_sys_module cap_sys_rawio cap_sys_c...
defebda9a50553e826d2686dba1e74df
{ "intermediate": 0.47681447863578796, "beginner": 0.3758511245250702, "expert": 0.14733441174030304 }
8,636
I used this code: import time from binance.client import Client from binance.enums import * from binance.exceptions import BinanceAPIException import pandas as pd import requests import json import numpy as np import pytz import datetime as dt date = dt.datetime.now().strftime(“%m/%d/%Y %H:%M:%S”) print(date) url = “...
c9f825b3dc319e8e77c6f8f3340730f0
{ "intermediate": 0.296960711479187, "beginner": 0.4816133975982666, "expert": 0.22142592072486877 }
8,637
In unreal engine 4 I want to create an scope, but due to the camera Field of view when you look through the scope the viewing area is very narrow. Can you write a custom HLSL shader code in the scope material to clip only the narrow area through the scope? for example when the player looking through the scope, the fron...
3c5dfe92ef627c3091006f8ea5514d84
{ "intermediate": 0.4640779495239258, "beginner": 0.24091872572898865, "expert": 0.29500335454940796 }
8,638
"clc clear all close all % load Data TimeLabel = importTime('july3.xlsx'); Data = importData('july3.xlsx'); nDays = 110; TimeLabel = TimeLabel(2:nDays); Data = Data(2:nDays); TimeLabel = datetime(TimeLabel,"InputFormat","yyyyMMdd"); TimeLabel = string(TimeLabel); ts = timeseries(Data,TimeLabel); ts.Name = 'Close';...
1f44cd455a4bb4dbfae823548e64cd46
{ "intermediate": 0.4086975157260895, "beginner": 0.300933837890625, "expert": 0.2903686463832855 }
8,639
I have a telegram bot made using C#. I have a for loop somewhere and i need a way to break the loop using a telegram prefix that is placed far from the for loop. how can we achieve this?
5a8d9dc94b1b00a7316489a9d5bba882
{ "intermediate": 0.2910226583480835, "beginner": 0.5846990942955017, "expert": 0.1242782324552536 }
8,640
kmeans = KMeans(n_clusters=num_clusters, random_state=0).fit(features) in this line an error appears that says ValueError: Expected 2D array, got scalar array instead: array=10.0. Reshape your data either using array.reshape(-1, 1) if your data has a single feature or array.reshape(1, -1) if it contains a single samp...
995d5c9f58f038cbbeb98ab30625bf01
{ "intermediate": 0.49553993344306946, "beginner": 0.12907801568508148, "expert": 0.3753820061683655 }
8,641
I have a telegram bot in C#, I have a for loop in one prefix and another /stop prefix. how can i makethe /stop prefix always running in the background so whenever it is triggered the for loop breaks?
dc6909ebd84c623236a52a146d415ecf
{ "intermediate": 0.4133123457431793, "beginner": 0.44498005509376526, "expert": 0.1417076289653778 }
8,642
Solve, using scilab, the Ordinary Differential Equation by the Adams-Bashforth method of order 6y''(t)+23.8y''(t)+1.3y'(t)+0.5y(t)=8; y(0)=y'(0)=y'(0)=0; t on the interval [0, 400];
03d04c159fb46eb942c85c03db99c933
{ "intermediate": 0.2723923325538635, "beginner": 0.23027077317237854, "expert": 0.4973369240760803 }
8,643
Python open serial port 4, baudrate 115200
633bd1f0c162f8eb5d18171ea158104d
{ "intermediate": 0.3600423336029053, "beginner": 0.25636690855026245, "expert": 0.38359078764915466 }
8,644
This is part of my telegram bot code in C#: "async Task HandleUpdateAsync(ITelegramBotClient botClient, Update update, CancellationToken cancellationToken) { // Echo received message text for (int i = 0; i < Convert.ToInt32(Times); i++) { ...
657d5c8eadc8b13342becbc7b0f079f1
{ "intermediate": 0.4799121916294098, "beginner": 0.33905521035194397, "expert": 0.18103255331516266 }
8,645
write a simple Queue structure in C, with addQ and removeQ functions
9ceb7a6a2e5dfce761dc843f93368ee9
{ "intermediate": 0.27955394983291626, "beginner": 0.3906062841415405, "expert": 0.3298397660255432 }
8,646
Redis. how to create integer key with ttl 1 second, after which value is reset to 0 instead of deleting?
6c305fed9dda1b788a57685010a80c7d
{ "intermediate": 0.5623827576637268, "beginner": 0.1247725710272789, "expert": 0.3128446936607361 }
8,647
Make additions to the code below so that in the response it also returns name(), symbol(), decimals() the age of the creation of the contract Use the ABI application binary interface import asyncio import aiohttp bscscan_api_key = 'CXTB4IUT31N836G93ZI3YQBEWBQEGGH5QS' # Create a semaphore with a limit of n semaphore ...
a30703350d934c75519644c1b88c8565
{ "intermediate": 0.38978201150894165, "beginner": 0.4858655631542206, "expert": 0.12435252964496613 }
8,648
this is a telegram bot made using telegram.bot in C#: "using Telegram.Bot.Exceptions; using Telegram.Bot.Polling; using Telegram.Bot.Types.Enums; using Telegram.Bot.Types; using Telegram.Bot; using WolfLive.Api; using WolfLive.Api.Commands; using Newtonsoft.Json; using System.IO; using System.Text.RegularExpressions; u...
b1ba0fc4f94b45eb1f49a3061fbc16dc
{ "intermediate": 0.3697561025619507, "beginner": 0.4609270393848419, "expert": 0.16931691765785217 }
8,649
can you give me an example of use The Nelder-Mead algorithm optimize Keras model Weights? please use the iris dataset,thanks
9581158d1bf173d2cfa9f382c21ec8fa
{ "intermediate": 0.14044071733951569, "beginner": 0.031587865203619, "expert": 0.8279713988304138 }
8,650
Can you fix the problem AttributeError: module ‘cv2’ has no attribute ‘TrackerKCF_create’
4d306fce854306551a2e65cda9d00f1f
{ "intermediate": 0.541706383228302, "beginner": 0.20992901921272278, "expert": 0.2483646422624588 }
8,651
how to make C# app always listening to a function i have in program.cs
24469c5b50645ed0635e1b6779838a15
{ "intermediate": 0.36420851945877075, "beginner": 0.4425695836544037, "expert": 0.19322189688682556 }
8,652
%{ #include <stdio.h> #include <stdlib.h> #include <string.h> int yylex(); void yyerror(const char* s); %} %union { int num; char* str; } %token <num> NUMBER %token <str> IDENTIFIER STRING_LITERAL %token IF ELSE FOR ADD SUB MUL DIV MOD ASSIGN EQ LT GT LE GE NEQ AND OR NOT SEMICOLON LPAREN RPAREN LBRACE RBRACE...
1c15786610d48a27df07c24f66434bc8
{ "intermediate": 0.25593963265419006, "beginner": 0.6523360013961792, "expert": 0.09172441065311432 }
8,653
Modify the code below to get the following data about the token: name, symbol, price, creation date. Use ABI Application Binary Interface for this import asyncio import aiohttp bscscan_api_key = 'CXTB4IUT31N836G93ZI3YQBEWBQEGGH5QS' # Create a semaphore with a limit of n semaphore = asyncio.Semaphore(5) async def ge...
7c3753610aa1e30dc90417b3a9100dc6
{ "intermediate": 0.4334021508693695, "beginner": 0.4307703971862793, "expert": 0.13582740724086761 }
8,654
у меня есть такие классы: public abstract class MultipleReward extends Reward { public MultipleReward(int duration) { super(duration); } protected abstract void newSchedule(TownObject townObject); public abstract void cancelScheduleOnNoPlayers(TownObject townObject); public abstract void ...
7ff1e197a3ac101820756d59f7936e52
{ "intermediate": 0.23500843346118927, "beginner": 0.48908093571662903, "expert": 0.2759106755256653 }
8,655
This is my ide program for a highsum gui game. "import GUIExample.GameTableFrame; import Model.*; import GUIExample.LoginDialog; public class GUIExample { private Dealer dealer; private Player player; private GameTableFrame app; public GUIExample() { } public void run() { dealer.shuf...
9770d2c98f44f80e32b29ce38b9c9285
{ "intermediate": 0.2889218032360077, "beginner": 0.6018312573432922, "expert": 0.10924690216779709 }
8,656
Video editor application banane ke liye kaun sa programming language ka use hota Hai
3a4ec20ac915ed38d595efa06a8068a1
{ "intermediate": 0.20909805595874786, "beginner": 0.5702588558197021, "expert": 0.22064319252967834 }
8,657
Complete the code below so that it also displays the age of the token address in the response import asyncio import aiohttp import json bscscan_api_key = 'CXTB4IUT31N836G93ZI3YQBEWBQEGGH5QS' # Define ABI request URLs abi_url = f'https://api.bscscan.com/api?module=contract&action=getabi&apikey={bscscan_api_key}' # D...
3da913893b172fe420276b682b326fd7
{ "intermediate": 0.3743782639503479, "beginner": 0.5121715068817139, "expert": 0.1134503036737442 }
8,658
гдк ошибка в @Override? import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scn = new Scanner(System.in); System.out.println("Введите сторону a"); int a = scn.nextInt(); System.out.println("Введите сторону b"); int b = scn.nextInt(...
8b2201ba8fde8635a9c7d95cf7f16f87
{ "intermediate": 0.33452746272087097, "beginner": 0.502278745174408, "expert": 0.1631937474012375 }
8,659
使用Nessus扫描,提示Unable to resolve DNS 'r.nessus.org' to check Log4j Vulnerability.
57ed9d48dfd00fe1600a9b9befe92339
{ "intermediate": 0.32801470160484314, "beginner": 0.35770243406295776, "expert": 0.3142828345298767 }
8,660
i have a kotlin app. in it i have a function, lets call it f1. i want to display a progress bar (indefinite progress bar) for as long as f1 is running
ed4e0f9567a05084487c5084f02c3b61
{ "intermediate": 0.4134749472141266, "beginner": 0.2518063485622406, "expert": 0.3347187340259552 }
8,661
Change the code below so that the date format in the response is displayed as y m d h m s. If the value in front is zero, then they should not be displayed # Оптимизированный!!! Возвращает адреса созданных токенов в указанном интревале блоков (Обрабатывет множество блоков) import asyncio import aiohttp from datetime ...
6740234acbc889e02414ea89ec8574b7
{ "intermediate": 0.38839268684387207, "beginner": 0.4254501760005951, "expert": 0.18615710735321045 }
8,662
у меня есть такой класс export class ConfirmOrderComponent implements OnInit { хочу использовать его в export class PageMarketGiftComponent {
23b42deec8d11752dfab5e295a3e7401
{ "intermediate": 0.34823140501976013, "beginner": 0.46048662066459656, "expert": 0.1912819892168045 }
8,663
Traceback (most recent call last): File "C:\Users\AshotxXx\PycharmProjects\pythonProject4\main.py", line 127, in <module> asyncio.run(main()) File "C:\Users\AshotxXx\AppData\Local\Programs\Python\Python311\Lib\asyncio\runners.py", line 190, in run return runner.run(main) ^^^^^^^^^^^^^^^^ File "...
ebc7e65bcbb76d86671b701f69902d5f
{ "intermediate": 0.3375992476940155, "beginner": 0.4223949611186981, "expert": 0.24000579118728638 }
8,664
hi, please write a python script to build an empty streamlit app
9fc0423966eecccb92be64161f12c879
{ "intermediate": 0.47727522253990173, "beginner": 0.17550243437290192, "expert": 0.34722235798835754 }
8,665
write me a docker compose that spins up fastapi+celery+flower+redis and write me a python module that uses it to do onnx-model predictions
6e13c4ef7c5d60004f7f92eb49a96a6f
{ "intermediate": 0.7709735035896301, "beginner": 0.05389485880732536, "expert": 0.17513158917427063 }
8,666
Traceback (most recent call last): File "C:\Users\AshotxXx\PycharmProjects\pythonProject4\main.py", line 137, in <module> asyncio.run(main()) File "C:\Users\AshotxXx\AppData\Local\Programs\Python\Python311\Lib\asyncio\runners.py", line 190, in run return runner.run(main) ^^^^^^^^^^^^^^^^ File "...
7ef9980660150817a1f25cfdf02aa206
{ "intermediate": 0.30789852142333984, "beginner": 0.3956702649593353, "expert": 0.2964312434196472 }
8,667
Use vanilla JavaScript and ES6 Class dynamic build multi-layers sidebar navigation, eg. three-layers,four-layers etc.
95f40a22a992f1ebf1cfff09e9e6d1a0
{ "intermediate": 0.328571617603302, "beginner": 0.3875296115875244, "expert": 0.28389880061149597 }
8,668
I have c# wpf project with this code: // MyProject/Utils/Constants/ToolTips.cs namespace MyProject.Constants { public static class ToolTips { public const string ToolTip1 = "ToolTip1"; // Add more tooltip constants here if needed } } // MyProject/Views/Window.xaml xmlns:c="clr-namespace:M...
ab005a5f030ccb22e4eeb13b44eb8667
{ "intermediate": 0.6284009218215942, "beginner": 0.20962375402450562, "expert": 0.16197529435157776 }
8,669
Write a code for ESP8266 that will open a webserver on the access point that will allow me to control LED connected to pin 4 using AJAX.
eb2e9714dcf70f3d98b21572d9cc7810
{ "intermediate": 0.6140366792678833, "beginner": 0.09514311701059341, "expert": 0.2908201813697815 }
8,670
write a C# code to break every process,loop,task running and start one task
4e550a9517e4a9f73448f284ef7587b8
{ "intermediate": 0.42851418256759644, "beginner": 0.3879739046096802, "expert": 0.1835118979215622 }
8,671
Implement a tracking algorithm (motpy tracking algorithms) to track multiple objects in a video.
acd02ea9ec30c9ce683bfe05b72ae759
{ "intermediate": 0.10138039290904999, "beginner": 0.057538751512765884, "expert": 0.8410808444023132 }
8,672
i have a kotlin app, and a function which counts games in a database. however, when i put the value in an acitivity, it returns 0. fun countGames(): Int { var gamesCount = 0 val COUNT_GAMES = (“SELECT COUNT(*) FROM " + TABLE_GAMES + " WHERE " + COLUMN_TYPE + " = 0”) val DB = this.readableDatabase val QUERY = DB.rawQuer...
9c5a7de7e5eed6ef567de7e07b71dcd2
{ "intermediate": 0.4624195396900177, "beginner": 0.35572341084480286, "expert": 0.18185701966285706 }
8,673
Исправь ошибки в коде: error C2065: вирусом: необъявленный идентификатор error C2065: является: необъявленный идентификатор error C2065: “Файл: необъявленный идентификатор error C3873: "0x201c": этот символ недопустим как первый символ идентификатора error C3873: "0x201d": этот символ недопустим как первый символ идент...
649876cadc3528bd59672060f9bca26a
{ "intermediate": 0.34124991297721863, "beginner": 0.5078699588775635, "expert": 0.1508801132440567 }
8,674
Улучши код и функции. алгоритм сканирования должны быть максимально эффективными и актуальными #include <iostream> #include <fstream> #include <dirent.h> #include <string> #include <vector> #include <cstdio> using namespace std; bool isVirus(string fileName, string databaseFilePath) { // Открываем файл и считы...
b9a92608f473b82fca7e4ec366c8ac8c
{ "intermediate": 0.33819130063056946, "beginner": 0.5609928965568542, "expert": 0.10081584006547928 }
8,675
Улучши алгоритм сканирования должны быть максимально эффективными и актуальными. #include <iostream> #include <fstream> #include <dirent.h> #include <string> #include <vector> #include <cstdio> using namespace std; bool isVirus(string fileName, string databaseFilePath) { // Открываем файл и считываем его содерж...
577c2373430143ab302f774200081edc
{ "intermediate": 0.3298338055610657, "beginner": 0.39979538321495056, "expert": 0.27037087082862854 }
8,676
Traceback (most recent call last): File "C:\Users\AshotxXx\AppData\Local\Programs\Python\Python311\Lib\asyncio\runners.py", line 118, in run return self._loop.run_until_complete(task) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\Users\AshotxXx\AppData\Local\Programs\Python\Python311\Lib\asyncio\base_...
d79f646dd94146a78b48583fd8be3f49
{ "intermediate": 0.35282760858535767, "beginner": 0.3421136438846588, "expert": 0.3050587475299835 }
8,677
Проверь код на ошибки dir. Так же измени что бы база данных вируса считывалась не txt а cav. #include <iostream> #include <fstream> #include <dirent.h> #include <string> #include <vector> #include <cstdio> #include <thread> #include <chrono> #include <openssl/md5.h> #include <map> using namespace std; bool isViru...
3004e56e846870828f79ae425acaca52
{ "intermediate": 0.41277870535850525, "beginner": 0.45700299739837646, "expert": 0.13021831214427948 }
8,678
Hello There. What model are you?
8de60f60588fb4a6449cb2bf1129ea28
{ "intermediate": 0.2409294843673706, "beginner": 0.18210403621196747, "expert": 0.576966404914856 }
8,679
%{ #include <stdio.h> #include <stdlib.h> #include <string.h> int yylex(); void yyerror(const char* s); %} %union { int num; char* str; } %token <num> NUMBER %token <str> IDENTIFIER STRING_LITERAL %token IF ELSE FOR ADD SUB MUL DIV MOD ASSIGN EQ LT GT LE GE NEQ AND OR NOT SEMICOLON LPAREN RPAREN LBRACE RBRACE...
8f2b6e809e722fe8374ec148e622d4c8
{ "intermediate": 0.20764784514904022, "beginner": 0.6795367002487183, "expert": 0.11281539499759674 }
8,681
напиши пример функций которая будет вызываться при выборе сотрудника изменять selectedCity <label>Кому</label> <ng-container *ngIf="users && selectedUser"> <select id="employee" class="chosen-select" placeholder="Выбери сотрудника" [(ngModel)]="selectedUser.Id"> <optio...
1f6981430bda7a8547586bcc2848429e
{ "intermediate": 0.3481835722923279, "beginner": 0.3676401972770691, "expert": 0.284176230430603 }
8,682
error: failed to run custom build command for `libspa-sys v0.6.0` Caused by: process didn't exit successfully: `/home/void/Documents/Coding/fractal/target/release/build/libspa-sys-6d21663c0f02e200/build-script-build` (exit status: 101) --- stdout cargo:rerun-if-env-changed=LIBPIPEWIRE_0.3_NO_PKG_CONFIG cargo:r...
da0ae56bc4e023b22a52a3b3c8977d68
{ "intermediate": 0.5387021899223328, "beginner": 0.20329031348228455, "expert": 0.2580074369907379 }
8,683
openbsd finf pkg
24f7ec204e0f07061e5b6e9a875564f0
{ "intermediate": 0.3974701166152954, "beginner": 0.237322136759758, "expert": 0.3652077317237854 }
8,684
нужна проверка на значение const branch = this.cityItems.filter((c) => c.Code == this._cityUtils.getCityCode(workInfo.AddressWorkplace))[0]; если не опредленно то 1
2ee711c4ca03cb87a6b485657756f671
{ "intermediate": 0.33064958453178406, "beginner": 0.3728916347026825, "expert": 0.29645881056785583 }
8,685
I used this code: import time from binance.client import Client from binance.enums import * from binance.exceptions import BinanceAPIException import pandas as pd import requests import json import numpy as np import pytz import datetime as dt date = dt.datetime.now().strftime("%m/%d/%Y %H:%M:%S") print(date) url = "...
67c73a688c3628dfb0bbdc43df5960f0
{ "intermediate": 0.33428263664245605, "beginner": 0.4321554899215698, "expert": 0.2335619032382965 }
8,686
what are the trending news of today 05-27-2023 ?
592554060292ba241b26464c0740fb6c
{ "intermediate": 0.3091232180595398, "beginner": 0.31444862484931946, "expert": 0.37642818689346313 }
8,687
openbsd subprojects/wireplumber/meson.build:55:0: ERROR: Dependency "intl" not found, tried builtin and system
3880a7354d557de7260d7e157f988e98
{ "intermediate": 0.5356301069259644, "beginner": 0.26024115085601807, "expert": 0.20412872731685638 }
8,688
lisp cons two lists
9b3b00cb21114f7d16d9753d22083f9a
{ "intermediate": 0.2403465360403061, "beginner": 0.5751309394836426, "expert": 0.18452246487140656 }
8,689
في تطبيق اندرويد ستوديو هل يمكنك تعديل شكل هذه الواجهة ( تعديل استايل التطبيق ) ليكون اكثر اناقة وجمالا للمستخدم النهائي هذا هو الكود <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.a...
59143bbf8097581bcc55f8edd66e2eec
{ "intermediate": 0.21379436552524567, "beginner": 0.550936222076416, "expert": 0.23526941239833832 }
8,690
in kotlin, how do i check if 24 hours have passed between two values of type LocalDate?
2838d6244073ce54746cccf96b48ee57
{ "intermediate": 0.5880350470542908, "beginner": 0.08466432988643646, "expert": 0.3273006081581116 }
8,691
# Crear un diagrama de cajas y bigotes sns.boxplot(data=Vinos) plt.xlabel(["Acidez_fija", "Azucar_residual","pH"]) plt.ylabel("Valores") plt.title("Diagrama de Cajas y Bigotes de Acidez Fija, Azúcar Residual y pH") plt.setp(ax.get_xticklabels(), rotation="45", ha="right") name 'ax' is not defined
2fdd349471931d47d123f642e0ebe4ab
{ "intermediate": 0.3508531451225281, "beginner": 0.2721751928329468, "expert": 0.37697169184684753 }
8,692
Can you fix this code and write it again:
60342e303a76094c566764d0e28852b1
{ "intermediate": 0.2882290482521057, "beginner": 0.36724767088890076, "expert": 0.34452328085899353 }
8,693
a zip program that inflate data from stdin to stdout
8d94c7c54956518b5911ba76c79f5abf
{ "intermediate": 0.41214439272880554, "beginner": 0.2118983268737793, "expert": 0.37595728039741516 }
8,694
@sanz#4384 Explain in detail, step by step at an EXTREMELY LOW LEVEL exactly how I would create a social network consisting of only AI. How it would work is a random number is picked from 1-10 every minute, and if the number is 3, a new account is created, each with their own AI generated handle, name, bio, personality...
2b2a4ac7de8b242911535b18789bf4aa
{ "intermediate": 0.3742692172527313, "beginner": 0.38102656602859497, "expert": 0.24470430612564087 }
8,695
I need a vba code that will check column A of sheet 'Events' for a date that is 7 days before today. If a date is found, I want the row of column A, B, C and D of the same row where the match is found, displayed in a pop up with each colum value on a seperate line.
715ea26c0e601b8b5e261c2e776e7549
{ "intermediate": 0.6205412745475769, "beginner": 0.14298777282238007, "expert": 0.23647096753120422 }
8,696
What about this error in JypterNoteBook ImportError: cannot import name 'DetectionList' from 'motpy' (C:\Users\AAT\anaconda3\lib\site-packages\motpy\__init__.py)
3a7bbdebc2a705fe8b1a3826d60a3b8a
{ "intermediate": 0.7426086664199829, "beginner": 0.1099362000823021, "expert": 0.1474551558494568 }
8,697
Replace all of “ to " : def replace_words(string, words_to_replace, new_word): for word in words_to_replace: string = string.replace(word, new_word) return string string = “The quick brown fox jumps over the lazy dog” words_lists = [[“quick”, “fox”], [“lazy”, “dog”], [“brown”, “jumps”]] new_word = “cat...
b538d5b784921d91fe4ce68ddf966d71
{ "intermediate": 0.33824822306632996, "beginner": 0.3338095545768738, "expert": 0.32794225215911865 }
8,698
a zig program that inflate data from stdin to stdout
d1219400398850f466c8c3b7ec5a2739
{ "intermediate": 0.32973113656044006, "beginner": 0.19514870643615723, "expert": 0.4751201570034027 }
8,699
import numpy as np import gym from gym import spaces import matplotlib.pyplot as plt %matplotlib inline class Snake_game(gym.Env): """ Custom Environment for Stable Baseline 3 for the classic Snake """ metadata = {'render.modes': ['console','rgb_array']} #Direction constants n_actions = 3 #3 p...
bf5899729cbadf896c25e97c6110dd05
{ "intermediate": 0.41176027059555054, "beginner": 0.3733367919921875, "expert": 0.21490295231342316 }
8,700
This code is not finding the dates in column A of Sheet Events: Sub CheckEvents() Dim EventsSheet As Worksheet Dim LastRow As Long Dim DateToCheck As Date Dim i As Long Dim MatchCount As Integer Dim Matches As String Set EventsSheet = ThisWorkbook.Sheets("Events") LastRow = EventsSheet.Range("A" & Rows.count).End(xl...
81147f2acef0e48043dc0652334db69c
{ "intermediate": 0.4289437234401703, "beginner": 0.3739839196205139, "expert": 0.1970723420381546 }
8,701
In unreal engine 4 I want to create an scope, but due to the camera Field of view when you look through the scope the viewing area is very narrow. Can you write a custom HLSL shader code using Custom Expression in the scope material to clip only the narrow area through the scope? for example when the player looking thr...
81a91d2696c512b7f652cc55be3609a6
{ "intermediate": 0.5051255226135254, "beginner": 0.25387096405029297, "expert": 0.24100352823734283 }
8,702
operation = qml.searchObj(squish.waitForObject(self.contentMenu), 'text', text) В этой функции где мы передаем text def selectOperation(self, text): self.openMenu() operation = qml.searchObj(squish.waitForObject(self.contentMenu), 'text', text) squish.tapObject(operation)
52ca245cdf41e14a029ecc60ae9d368d
{ "intermediate": 0.35459399223327637, "beginner": 0.3969345688819885, "expert": 0.2484714686870575 }
8,703
In unreal engine 4 I want to create an scope, but due to the camera Field of view when you look through the scope the viewing area is very narrow. Can you write a custom HLSL shader code using Custom Expression in the scope material to clip only the narrow area through the scope? for example when the player looking thr...
3d358cff605e50ebc2430d47b20edb05
{ "intermediate": 0.5051255226135254, "beginner": 0.25387096405029297, "expert": 0.24100352823734283 }
8,704
Are you able to Code in Roblox Lua?
b2605e099febf412e41422464b0b11a0
{ "intermediate": 0.360014945268631, "beginner": 0.476129412651062, "expert": 0.16385573148727417 }
8,705
Svelte kit from submit
2addc05fa509e46ff8aec45dc76cbdc1
{ "intermediate": 0.4007960855960846, "beginner": 0.25562915205955505, "expert": 0.34357473254203796 }
8,706
in matrial desing i have a text edit and i want to get text when pres putton in kebord of phone like enter kotlin
308aa9a2e48608c8c09ff05af4828ce1
{ "intermediate": 0.4386587142944336, "beginner": 0.23087483644485474, "expert": 0.33046647906303406 }
8,707
In unreal engine 4 I want to create an scope, but due to the camera Field of view when you look through the scope the viewing area is very narrow. is it possible to write a custom HLSL shader code using Custom Expression in the scope material to clip only the narrow area through the scope? for example when the player l...
3af36740d5b14ad25fd75d2aac8919a1
{ "intermediate": 0.5033854842185974, "beginner": 0.2671845555305481, "expert": 0.2294299602508545 }
8,708
In unreal engine 4 I want to create an scope, but due to the camera Field of view when you look through the scope the viewing area is very narrow. is it possible to write a custom HLSL shader code using the Custom expression node in the scope material to clip only the narrow area through the scope? for example when the...
35c0f774af232a5ee1aa1303b0168bf3
{ "intermediate": 0.5898072123527527, "beginner": 0.20929762721061707, "expert": 0.20089519023895264 }
8,709
In unreal engine 4 I want to create an scope, but due to the camera Field of view when you look through the scope the viewing area is very narrow. is it possible to write a custom HLSL shader code using Custom expression node in the scope material to clip only the narrow area through the scope? for example when the pla...
c37c4d23031e3eb3b072dde50e6c33bf
{ "intermediate": 0.5094509720802307, "beginner": 0.25055474042892456, "expert": 0.23999430239200592 }
8,710
In unreal engine 4 I want to create an scope, but due to the camera Field of view when you look through the scope the viewing area is very narrow. is it possible to write a custom HLSL shader code using Custom expression node that is connected to the masked Input in the scope material to clip only the narrow area throu...
05940ad7cd5842f76daf6cd3f77923ed
{ "intermediate": 0.5297097563743591, "beginner": 0.22705473005771637, "expert": 0.24323557317256927 }
8,711
remove all view in linerlayout horizontal
6b13244fb5e37b6d6a7c9da8430f2fec
{ "intermediate": 0.3646663725376129, "beginner": 0.3333292603492737, "expert": 0.30200427770614624 }
8,712
In unreal engine 4, I want to create an scope, but due to the camera Field of view when you look through the scope the viewing area is very narrow. is it possible to write a custom HLSL shader code using Custom expression node in the scope material to clip only the narrow area through the scope? for example when the pl...
b5db69f447c116429068d76185b64ac4
{ "intermediate": 0.5754845142364502, "beginner": 0.24490638077259064, "expert": 0.17960911989212036 }
8,713
how do i get the camera position in an hlsl frac shader?
3f4871abc21fec07bfec11f2e77b1b6b
{ "intermediate": 0.3292563259601593, "beginner": 0.16018396615982056, "expert": 0.5105596780776978 }
8,714
php how to create trait function protected from ANYONE outside trait itself
e4f196cde9f38710832a5adafa2fdc17
{ "intermediate": 0.3394741117954254, "beginner": 0.29853928089141846, "expert": 0.36198657751083374 }
8,715
Debug this simulation in Julia: @with_kw mutable struct BikeTrip origin::Int destination::Int trip_time::Int end @with_kw mutable struct BikeSimulation bike_stations::Array{Int, 1} station_capacity::Int trip_distributions::Array{Array{Int, 2}, 1} event_queue::PriorityQueue{Function, Tuple{...
e38dc4a735785e7cdd0827b344fed484
{ "intermediate": 0.4709593653678894, "beginner": 0.3514285385608673, "expert": 0.17761217057704926 }
8,716
En python, Implementar la funci´on quienGana(j1: str, j2: str) ->str , cuya especificaci´on es la siguiente: problema quienGana (in j1: seq⟨Char⟩, in j2: seq⟨Char⟩) : seq⟨Char⟩ { requiere: {juegaBien(j1) ∧ juegaBien(j2)} asegura: {gana(j1, j2) → res = ”Jugador1”} asegura: {gana(j2, j1) → res = ”Jugador2”} asegura: {(¬g...
20ecc3e6d47396b81e1f4eb12392c4b7
{ "intermediate": 0.34412649273872375, "beginner": 0.5525922179222107, "expert": 0.10328120738267899 }
8,717
Write an explanation for each line of the code below. import asyncio import aiohttp bscscan_api_key = 'CXTB4IUT31N836G93ZI3YQBEWBQEGGH5QS' # Create a semaphore with a limit of n semaphore = asyncio.Semaphore(5) async def get_external_transactions(block_number): async with semaphore: async with aiohttp.Cl...
e2d19b2c90141c19eb97c19d393d2f87
{ "intermediate": 0.3848123252391815, "beginner": 0.49920836091041565, "expert": 0.11597929894924164 }
8,718
I got an idea right now. what if you make html code wih some super-crazy-ultimate-infinite-supercrazy-god universe fractal background, and place all supreme god names all around it in their original transcriptions and also under each god name you could use some small font letters <sub> of transliteration in english, to...
7672a614e3f8b10f3ac3a0c592931d27
{ "intermediate": 0.38583552837371826, "beginner": 0.34120771288871765, "expert": 0.2729567885398865 }
8,719
import numpy as np import pandas as pd from keras.layers import Conv1D, MaxPooling1D, Flatten, Dense, Dropout from keras.models import Sequential from sklearn.model_selection import StratifiedShuffleSplit # 读取多列传感器数据 df = pd.read_csv('time_series_data.csv') # 定义时间窗口大小 seq_size = 5 # 定义要分层抽样划分的列 stratify_col = 'targe...
8522223258541a8116dc3d7f54c76402
{ "intermediate": 0.31153321266174316, "beginner": 0.34772834181785583, "expert": 0.340738445520401 }
8,720
import requests from bs4 import BeautifulSoup def fetch_and_parse(url): response = requests.get(url) if response.status_code == 200: page_content = response.text else: print(f"Error: Unable to fetch the page. Status code: {response.status_code}") return soup = BeautifulSoup(pa...
5a0dfaab2a57ac3e33842be214970f58
{ "intermediate": 0.40529948472976685, "beginner": 0.4394932687282562, "expert": 0.15520724654197693 }
8,721
I want to use Overleaf to make a LaTex table. The table should have three rows ("No. of London '1st eds'", "Entered in SR", "Entered or assigned in SR") and three columns ("1594-96", "1614-16", "1634-36"). This leaves, of course nine places of intersection. Going from top to bottom and left to right, starting therefore...
4c8cda284bee10dff5dc5f8132226bf8
{ "intermediate": 0.36039072275161743, "beginner": 0.2834330201148987, "expert": 0.3561762571334839 }
8,722
Hi
75916637bd7687f5f449bcfc24b8c635
{ "intermediate": 0.33010533452033997, "beginner": 0.26984941959381104, "expert": 0.400045245885849 }
8,723
hi there
a88d776521bd0129566287a8e54c27b1
{ "intermediate": 0.32885003089904785, "beginner": 0.24785484373569489, "expert": 0.42329514026641846 }
8,724
/// ../project/src/main.rs pub static mut GLOBAL_HASHMAP: HashMap<&str, &str> = HashMap::new(); /// ../project/src/subproject/src/lib.rs use crate::parent::GLOBAL_HASHMAP; use crate::parent::GLOBAL_HASHSET; use crate::parent::GLOBAL_VEC; /* error: src/subproject/src/lib.rs:1: unresolved import `GLOBAL_HASHMAP` error: ...
256955c583e2a4837e79011be7fd8712
{ "intermediate": 0.38381654024124146, "beginner": 0.39581188559532166, "expert": 0.2203715592622757 }
8,725
can you make this page in dark mode
5bc3d912249e6ddf3dded1f7f7308668
{ "intermediate": 0.3142074942588806, "beginner": 0.2379963994026184, "expert": 0.447796106338501 }
8,726
This code still does not return the name and symbol of the token Fix this by referring to the page code below <div class="page"><div class="sidemenu"><div class="content"><ul class="items"><li class="last"><a href="/" class=" router-link-active"><svg viewBox="0 0 24 24"><path d="M10 19v-5h4v5c0 .6.5 1 1 1h3c.6 0 1-.5...
114b4d189132f8813ef46571b6e6767f
{ "intermediate": 0.3637048304080963, "beginner": 0.43830180168151855, "expert": 0.19799339771270752 }
8,728
C# error explain: System.IndexOutOfRangeException: Index was outside the bounds of the array.
58f7eeb7691683c69443c2fce5318270
{ "intermediate": 0.5718063116073608, "beginner": 0.20372849702835083, "expert": 0.22446520626544952 }
8,729
pub mod parent { use std::collections::{HashMap, HashSet}; // Using HashMap pub static mut GLOBAL_HASHMAP: HashMap<&str, &str> = HashMap::new(); } error: src/main.rs:27: cannot call non-const fn `HashMap::<&str, &str>::new` in statics note: src/main.rs:27: calls in statics are limited to constant functions, tuple st...
9aca0ddc437c1895cb44df5e193c3bc4
{ "intermediate": 0.38287079334259033, "beginner": 0.4718206822872162, "expert": 0.1453085094690323 }
8,730
i have a script written ion bash on arch linux can you help me modify it?
f3e739db8c1c928ad34a5dc4a8c64284
{ "intermediate": 0.4197675287723541, "beginner": 0.2636449635028839, "expert": 0.31658750772476196 }
8,731
AttributeError: 'numpy.ndarray' object has no attribute 'fillna'
86130f8cdf9cfdcf64e5fe2927b3d532
{ "intermediate": 0.47529473900794983, "beginner": 0.19574512541294098, "expert": 0.3289601504802704 }
8,732
from bs4 import BeautifulSoup from selenium import webdriver from selenium.webdriver.chrome.options import Options def get_token_name_and_symbol(url): chrome_options = Options() chrome_options.add_argument("–headless") # Update the path below to the actual path to your WebDriver executable driver = we...
75a02922c7406845393dfd22642a9137
{ "intermediate": 0.339860200881958, "beginner": 0.4406368136405945, "expert": 0.21950304508209229 }
8,733
C:\Users\AshotxXx\PycharmProjects\Parcing\pythonProject\venv\Scripts\python.exe C:\Users\AshotxXx\PycharmProjects\Parcing\pythonProject\ChromeDriver\main.py C:\Users\AshotxXx\PycharmProjects\Parcing\pythonProject\ChromeDriver\main.py:11: DeprecationWarning: executable_path has been deprecated, please pass in a Service...
6408ec28e6a9e53f30856c3582beae7f
{ "intermediate": 0.39800482988357544, "beginner": 0.26697838306427, "expert": 0.33501675724983215 }
8,734
import time from bs4 import BeautifulSoup from selenium import webdriver from selenium.webdriver.chrome.options import Options def get_token_info(url): chrome_options = Options() chrome_options.add_argument("–headless") # Update the path below to the actual path to your WebDriver executable driver = w...
0a6862d07ec269ef06572a11e784a7c7
{ "intermediate": 0.2472541630268097, "beginner": 0.5032341480255127, "expert": 0.24951162934303284 }