row_id int64 0 48.4k | init_message stringlengths 1 342k | conversation_hash stringlengths 32 32 | scores dict |
|---|---|---|---|
37,346 | elif event.key == pygame.K_e and not is_crouching:
is_floating = True
elif event.key == pygame.K_r:
# Floating set up
if is_floating:
gravity = 0.3
jump_height = -6.5
in_air = False
is_crouching = False
circle_radius = 35
circle_y_offset = 35
else:
gravity = 1
jump_height = -15
in_air = True
circle_radius = 25
circle_y... | 7eb056cd9f70508228f97419962028c8 | {
"intermediate": 0.33124300837516785,
"beginner": 0.3433919847011566,
"expert": 0.3253650367259979
} |
37,347 | obtengo este erro cuando quiero subir algo a mi branch
ERROR: 152:15 align statements are not aligned
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! fe-usuarios@2.4.51 lint: `ng lint`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the fe-usuarios@2.4.51 lint script.
npm ERR! This is probably not a problem w... | d56cb0f1cf76672db00e14fbf0950f30 | {
"intermediate": 0.2399752140045166,
"beginner": 0.5524587035179138,
"expert": 0.207566037774086
} |
37,348 | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.20;
// ███████╗███████╗██████╗ ██████╗
// ╚══███╔╝██╔════╝██╔══██╗██╔═══██╗
// ███╔╝ █████╗ ██████╔╝██║ ██║
// ███╔╝ ██╔══╝ ██╔══██╗██║ ██║
// ███████╗███████╗██║ ██║╚██████╔╝
// ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═════╝
// Website: https://zerolend.xyz
/... | fb535ef0843feef8cee1f42d3db3800c | {
"intermediate": 0.33124735951423645,
"beginner": 0.26777634024620056,
"expert": 0.4009762704372406
} |
37,349 | How do users manage their locks, such as merging locks, withdrawing tokens, or transferring NFTs? Could you describe these processes? // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.20;
// ███████╗███████╗██████╗ ██████╗
// ╚══███╔╝██╔════╝██╔══██╗██╔═══██╗
// ███╔╝ █████╗ ██████╔╝██║ ██║
// ███╔╝ ... | 0a5172d548c12dd20ebbcb9215a3de35 | {
"intermediate": 0.497389018535614,
"beginner": 0.2948576509952545,
"expert": 0.20775333046913147
} |
37,350 | starting with the addFees function and how it updates the cumulativeFeePerToken. We’ll then proceed to the onBalanceChange and fee claiming functions (claimFees and batchClaiming). the process of adding fees to a token’s fee pool and updating the cumulative fee per token. Next, we’ll expand on the balance change and fe... | 2647030e250cc17989751d8cd3ed8d29 | {
"intermediate": 0.4268982410430908,
"beginner": 0.29349830746650696,
"expert": 0.27960342168807983
} |
37,351 | in this contract // SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
import “./CurvesERC20.sol”;
contract CurvesERC20Factory {
function deploy(string memory name, string memory symbol, address owner) public returns (address) {
CurvesERC20 tokenContract = new CurvesERC20(name, symbol, owner);
return address(tokenCo... | b5f63a370c08e0338627b6d7eb5577dd | {
"intermediate": 0.48714640736579895,
"beginner": 0.28481534123420715,
"expert": 0.22803829610347748
} |
37,352 | provide more details on any additional setup that might occur within the CurvesERC20 constructor or any other functions and modifiers that are part of the CurvesERC20 contract? here is the contract // SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
import "./CurvesERC20.sol";
contract CurvesERC20Factory {
fun... | 09c882f5b1011ae909b2f8be5544d7b5 | {
"intermediate": 0.40331318974494934,
"beginner": 0.43801262974739075,
"expert": 0.15867416560649872
} |
37,353 | Please provide proper indentation
import pygame
import sys
# Set up display
screen = pygame.display.set_mode((900, 700))
# Set up colors (RGB format)
kirby_pink_color = (255, 105, 180)
kirby_yellow_color = (0,0,0)
ground_color = (0, 255, 0)
# Kirby properties
circle_radius1 = 25 # Initial radius
circle_radius2 = 25... | 29437e885b3dcfefb7b717d73a0d7e5c | {
"intermediate": 0.29394689202308655,
"beginner": 0.4360091984272003,
"expert": 0.27004390954971313
} |
37,354 | Fix the issues pls.
import pygame
import sys
# Set up display
screen = pygame.display.set_mode((900, 700))
# Set up colors (RGB format)
kirby_pink_color = (255, 105, 180)
kirby_yellow_color = (0,0,0)
ground_color = (0, 255, 0)
# Kirby properties
circle_radius1 = 25 # Initial radius
circle_radius2 = 25 # Initial rad... | 2a0cd80897fda99a73380a912c48893e | {
"intermediate": 0.39480310678482056,
"beginner": 0.4541890025138855,
"expert": 0.15100783109664917
} |
37,355 | Can you fix Kirby2 movement and refine the code a bit with proper indents? import pygame
import sys
# Set up display
screen = pygame.display.set_mode((900, 700))
# Set up colors (RGB format)
kirby_pink_color = (255, 105, 180)
kirby_yellow_color = (0, 0, 0)
ground_color = (0, 255, 0)
# Kirby properties
circle_radius1... | 2e7bab1e502902fb2abf12f923c137e5 | {
"intermediate": 0.4885052442550659,
"beginner": 0.33879518508911133,
"expert": 0.17269951105117798
} |
37,356 | // Decompiled by AS3 Sorcerer 6.78
// www.buraks.com/as3sorcerer
//scpacker.gui.LoaderWindow
package scpacker.gui
{
import flash.display.Sprite;
import flash.display.BitmapData;
import flash.geom.Point;
import flash.display.Bitmap;
import flash.display.DisplayObjectContainer;
import flash.text... | a26482e59f7b8570410b2e3e62ac3e1f | {
"intermediate": 0.3618093729019165,
"beginner": 0.41722047328948975,
"expert": 0.22097012400627136
} |
37,357 | can you format this nicely as a single line python string: Type Parameter Declarations
Here is a new syntax for declaring type parameters for generic classes, functions, and type aliases. The syntax adds support for a comma-delimited list of type parameters in square brackets after the name of the class, function, or ... | 669cf35612564c3b96a8b95299ddcd4d | {
"intermediate": 0.3495596945285797,
"beginner": 0.4630281925201416,
"expert": 0.1874120682477951
} |
37,358 | how could i make a youtube to mp3 converter in python? | f0c77f6675da90a17f51c454e2f1eb19 | {
"intermediate": 0.5127548575401306,
"beginner": 0.171468123793602,
"expert": 0.3157770037651062
} |
37,359 | how to web scrape a page that requires login | 5e9306512659987390f905f0072e5cf4 | {
"intermediate": 0.30279964208602905,
"beginner": 0.3816036880016327,
"expert": 0.3155965805053711
} |
37,360 | //±-----------------------------------------------------------------+
//| BuySellSignal.mq4 |
//| Custom Indicator for MetaTrader 4 |
//±-----------------------------------------------------------------+
#property copyright "Copyright 20... | a380a0ac8569051f14750cc3ff04d7c8 | {
"intermediate": 0.2979876697063446,
"beginner": 0.4303416609764099,
"expert": 0.27167072892189026
} |
37,361 | (py_dvc) Z:>cd Z:\ФД\Валидация\Валидация_2024
Системе не удается найти указанный путь. Такой путь существует в системе, но Anaconda Promt выдает ошибку | 9fa7b764bca5d88c61efe9b5c0dd9fa3 | {
"intermediate": 0.3040648400783539,
"beginner": 0.30130308866500854,
"expert": 0.3946320414543152
} |
37,362 | why does my code have an error? import java.util.Scanner;
public class RockPaperScissors
{
private static final String USER_PLAYER = "User wins!";
private static final String COMPUTER_PLAYER = "Computer wins!";
private static final String TIE = "Tie";
public static String getWinner(String user... | 222c8dd7012e870760797d7350fd0323 | {
"intermediate": 0.47616109251976013,
"beginner": 0.38620591163635254,
"expert": 0.13763293623924255
} |
37,363 | why does my code have an error: public class Randomizer
{
public static int nextInt()
{
int randInt1 = (int)(Math.random()*(11)+ 1);
while (randInt1 > 10 || randInt1 < 1)
{
randInt1 = (int)(Math.random()*(11)+ 1);
}
return randInt1;
}
public stati... | b24d593dc525b4a16d0e0168f46b2ddc | {
"intermediate": 0.4435487389564514,
"beginner": 0.3878883123397827,
"expert": 0.1685628890991211
} |
37,364 | In this code, how can I prevent the option to call remove or grant access if the user type is owner: render(row) {
return (
<Menu disabled={Boolean((row.user_type === 'ADMIN' && user?.accessLevel === 'LEAD') || (row.user_type === 'OWNER' && user?.accessLevel !== 'OWNER'))} options={... | 4363be8ffe13e594e857f2ef8552b474 | {
"intermediate": 0.3071518540382385,
"beginner": 0.42128390073776245,
"expert": 0.2715642750263214
} |
37,365 | class CustomIntegerDialog(simpledialog.Dialog):
def body(self, master):
self.title('Custom Integer Dialog')
self.geometry(f'+{master.winfo_rootx() + 50}+{master.winfo_rooty() + 50}')
self.entry = tk.Entry(master, font=("Arial", 12), width=10)
self.entry.pack(padx=10, pady=10)
d... | 984398dab45ee165c9b47e2b7f49ae24 | {
"intermediate": 0.40530940890312195,
"beginner": 0.3428376317024231,
"expert": 0.25185295939445496
} |
37,366 | class CustomTimeDialog(simpledialog.Dialog):
def body(self, master):
self.title('Custom Time Dialog')
self.listbox = tk.Listbox(master, height=7, width=15, font=("Arial", 12))
for time_string in ['0:15', '0:30', '0:45', '1:00', '2:00', '5:00', '10:00']:
self.listbox.insert(tk.EN... | 251b7bb6d68476b2a994500fa9a20344 | {
"intermediate": 0.38650965690612793,
"beginner": 0.35581332445144653,
"expert": 0.25767701864242554
} |
37,367 | ###Instruction###
Fix error Promise returned in function argument where a void return was expected.
###About issue###
Promises need to be resolved or awaited to return the expected value, otherwise, they return the promise object.
Unresolved promises:
Forgetting to await a promise is a frequent mistake. There are p... | e17e468972fb969289e2b8fa44a91941 | {
"intermediate": 0.40981826186180115,
"beginner": 0.26328834891319275,
"expert": 0.3268933892250061
} |
37,368 | #property strict
#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Lime // Colore della freccia di buy
#property indicator_color2 Red // Colore della freccia di sell
// Input parameters
extern int EmaPeriod = 10;
extern int BollingerPeriod = 20;
extern double BollingerDeviations... | fbc3813f8ba0b27053302a1e493cc880 | {
"intermediate": 0.36613214015960693,
"beginner": 0.29728057980537415,
"expert": 0.3365872800350189
} |
37,369 | class CustomTimeDialog(simpledialog.Dialog):
def body(self, master):
self.timebutton_style = {"font": ("consolas", 11), "fg": "white", "bg": "#3c3c3c", "relief": "flat"}
self.title('Custom Time')
self.time_background = "#808080"
master.configure(bg=self.time_background)
... | 9dbb8a65a3f488c782dcb9b62f95060e | {
"intermediate": 0.3477990925312042,
"beginner": 0.509820282459259,
"expert": 0.14238055050373077
} |
37,370 | Fix this error and give fixed code
###Error###
Promise returned in function argument where a void return was expected.
Promises need to be resolved or awaited to return the expected value, otherwise, they return the promise object.
Unresolved promises:
Forgetting to await a promise is a frequent mistake. There are ... | ead8e75e613e3f0c1f09ab34c0ff34ba | {
"intermediate": 0.3966000974178314,
"beginner": 0.2807372212409973,
"expert": 0.32266268134117126
} |
37,371 | class CustomTimeDialog(simpledialog.Dialog):
def body(self, master):
self.timebutton_style = {"font": ("consolas", 11), "fg": "white", "bg": "#3c3c3c", "relief": "flat"}
self.title('Custom Time')
master.configure(bg=self.time_background)
self.listbox = tk.Listbox(master, hei... | 4946cb79ef5f6cddd38327d5e3cb5414 | {
"intermediate": 0.3505135774612427,
"beginner": 0.43186938762664795,
"expert": 0.21761707961559296
} |
37,372 | Fix this error and give fixed code
MY Code MUST BE FIXED AND GETTED TO USER
I NEED A COMPLETE CODE BLOCK
###Error###
Promise returned in function argument where a void return was expected.
Promises need to be resolved or awaited to return the expected value, otherwise, they return the promise object.
Unresolved prom... | 44b27191628d5eb7d9f861a0f31d4c6b | {
"intermediate": 0.4337429404258728,
"beginner": 0.28093910217285156,
"expert": 0.28531792759895325
} |
37,373 | Fix my regex for js for this links
/(http(s)?:\/\/.)?(www\.)?[-a-zA-Z0-9@:%._+~#=]{0,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_+.~#?&/=]*)/g
Text for regex:
https://t.me/testest
https://youtube.com/testtest | b35f3bfd5331992ca3d5e05e80a7c97b | {
"intermediate": 0.29744797945022583,
"beginner": 0.38422852754592896,
"expert": 0.31832343339920044
} |
37,374 | {% block styles %}
<link rel="stylesheet" href="{{ url_for('static', filename='admin_billets.css') }}">
{% endblock %}
{% block content%}
<a id="retour" href="{{ url_for('menu_admin') }}" class="btn-retour">Retour</a>
<h1>Les billets du festival</h1>
<table>
<thead>
<tr>
... | 6f2a4e3a3eaf50c79eb322972dc73d26 | {
"intermediate": 0.4129120707511902,
"beginner": 0.4861813485622406,
"expert": 0.10090658813714981
} |
37,375 | Promise returned in function argument where a void return was expected.
Promises should not be misused javascript:S6544 | e6f8c21f4ac264dd69219ba38552112d | {
"intermediate": 0.4511064291000366,
"beginner": 0.2710585594177246,
"expert": 0.27783501148223877
} |
37,376 | There is a problem in the code, it is called "Promise returned in function argument where a void return was expected. "
Which reads: Promises should not be misused javascript:S6544.
The error was found with the following pieces of code: | 18e0cd01e38d4bd7fb227df94e815a26 | {
"intermediate": 0.32452142238616943,
"beginner": 0.3641546368598938,
"expert": 0.311323881149292
} |
37,377 | There is a problem in the code, it is called “Promise returned in function argument where a void return was expected. "
Which reads: Promises should not be misused javascript:S6544.
The error was found with the following pieces of code: | cb11f1fd3b594ff0fceed63d54b372f9 | {
"intermediate": 0.3269379734992981,
"beginner": 0.3629564046859741,
"expert": 0.3101055920124054
} |
37,378 | There is a problem in the code, it is called “Promise returned in function argument where a void return was expected. "
Which reads: Promises should not be misused javascript:S6544.
The error was found with the following pieces of code: | 9ccd21b4eec06bbd03271bd81a626a0f | {
"intermediate": 0.3269379734992981,
"beginner": 0.3629564046859741,
"expert": 0.3101055920124054
} |
37,379 | There is a problem in the code, it is called “Promise returned in function argument where a void return was expected. "
Which reads: Promises should not be misused javascript:S6544.
The error was found with the following pieces of code: | 4a6d91c4d6a94b44da11fbba93a3dbbe | {
"intermediate": 0.3269379734992981,
"beginner": 0.3629564046859741,
"expert": 0.3101055920124054
} |
37,380 | There is a problem in the code, it is called “Promise returned in function argument where a void return was expected. " Which reads: Promises should not be misused javascript:S6544. The error was found with the following pieces of code: | 702399291c9bd67b367eb30bc14425ed | {
"intermediate": 0.35802730917930603,
"beginner": 0.2831631600856781,
"expert": 0.3588094711303711
} |
37,381 | I have a project and the details are below
Question. Case Scenario
Project Brief - Zymplify
Founded in 2013, Zymplify is a fast growing software as a service (SaaS) company providing a robust and cutting-edge marketing automation and lead generation solution to B2B customers around the world.
Our unique buyer intent ... | 7ad6b165fb254755b4b397f3aa9f0f70 | {
"intermediate": 0.21397586166858673,
"beginner": 0.6050567626953125,
"expert": 0.1809673309326172
} |
37,382 | A typical density of municipal solid waste is 600 kg/m3. Assuming this density, estimate the
year that the landfill will be full (i.e. can receive no more waste) with the following
assumptions:
the landfill services a population of 100,000 people in 2024.
this population is expected to increase by 0.5% every year f... | 4c831ac6103610d5caef57a2e3ef1ad3 | {
"intermediate": 0.30262744426727295,
"beginner": 0.31667178869247437,
"expert": 0.3807007670402527
} |
37,383 | what is the difference between jedis and lettuce when pulling down the cluster nodes from redis | 9c3877e3c0e3d8f3a466ad552422e395 | {
"intermediate": 0.3705456554889679,
"beginner": 0.20859739184379578,
"expert": 0.42085695266723633
} |
37,384 | nodejs how to get random element in list | 05fb759f080c340c2703cd0249c290dd | {
"intermediate": 0.43262583017349243,
"beginner": 0.2543814480304718,
"expert": 0.31299272179603577
} |
37,385 | I have an assignment, the brief is below
Size or length of assessment: 2000 words
Module learning outcomes assessed by this task:
1.Conduct professional quality stakeholder, context and competitor research using industry-standard methodologies.
2.Identify and develop creative solutions to a design problem and iterate ... | 9354a7b549d84ef29b942727cd35e76e | {
"intermediate": 0.3967832922935486,
"beginner": 0.4068094789981842,
"expert": 0.1964072734117508
} |
37,386 | how to build redis cluster using docker on windows | 9016245492ca1cae47187c43b54949b3 | {
"intermediate": 0.503149151802063,
"beginner": 0.2428920418024063,
"expert": 0.2539588510990143
} |
37,387 | optimize code | a0d08335a5dd354f9ac89063d735e7c9 | {
"intermediate": 0.29695019125938416,
"beginner": 0.21418508887290955,
"expert": 0.4888647794723511
} |
37,388 | Music structure in J-POP is almost always Verse, Leadin, Chorus, Verse Leadin Chorus Bridge Chorus Chorus (often last Chorus with a key change). This structure is called A melo, B melo, Chorus, and D melo for bridge. If the song doesn’t have a Leadin, they often will completely ignore it as too western.
Simplify this ... | 66127b5355cef0e23924792cb62bb34b | {
"intermediate": 0.24289129674434662,
"beginner": 0.3870232105255127,
"expert": 0.3700854480266571
} |
37,389 | Make an example of a dga algorithm, involve russian names and random years from 1980-1800 | bd2c5a80bd09879988dc0a5c1f27a82a | {
"intermediate": 0.06262913346290588,
"beginner": 0.0676237940788269,
"expert": 0.8697471022605896
} |
37,390 | give me summary of a model how to use | 2762d530d6723f495ac08108ca42680a | {
"intermediate": 0.35249677300453186,
"beginner": 0.20838937163352966,
"expert": 0.4391138255596161
} |
37,391 | Make an example of a dga algorithm, involve russian/slavic 1names and random years from 1945-1819, also include the tlds .click, .com, .su | c8d15506af290bd6bb7de1820ad56cb9 | {
"intermediate": 0.06783274561166763,
"beginner": 0.07039779424667358,
"expert": 0.861769437789917
} |
37,392 | Hi! | 405edb0fd5a1065b0fb1dddada8c434c | {
"intermediate": 0.3230988085269928,
"beginner": 0.2665199935436249,
"expert": 0.4103812277317047
} |
37,393 | Make an example of a dga algorithm, involve russian/slavic names and random years from 1945-1819, also include the tlds .click and .com. like this [slavic name][blog/site]-[year].[tld]. Do not use randomness, just output a list that comes out exactly the same order every time. Allsi how many domains can this generate? | 47bcc50039a59ba34d720232f85af48b | {
"intermediate": 0.1382809281349182,
"beginner": 0.11763954907655716,
"expert": 0.7440795302391052
} |
37,394 | Hey | c1b73f72ce55894dc4586664b499da09 | {
"intermediate": 0.3360580503940582,
"beginner": 0.274208664894104,
"expert": 0.38973328471183777
} |
37,395 | make sense of this code : #!/usr/bin/env python
from _ctypes import PyObj_FromPtr
storage = {}
commands = f'''
Zero: {id(0)}
0) Add To Store
1) Remove From Store
2) Load Address
'''.strip()
while True:
print(commands)
match(input('Selection:')):
case '0':
inp = input('To Add:')
... | 8007fa5ffce740965ee0df5037fc6c10 | {
"intermediate": 0.3236033320426941,
"beginner": 0.586703896522522,
"expert": 0.08969277888536453
} |
37,396 | how to parse site with such html content on Python and fetch files <a class="items-center justify-self-end mt-1 w-10 gap-x-1.5 px-2.5 py-1.5 text-sm font-semibold text-white shadow-sm rounded-md bg-gray-600 hover:bg-gray-500" href="https://samples.vx-underground.org/Papers/Windows/Analysis and Internals/2023-11-12 - Ho... | 9eda03e3f854b74ade0b6384ef264434 | {
"intermediate": 0.7096891403198242,
"beginner": 0.15769106149673462,
"expert": 0.13261988759040833
} |
37,397 | I have a textfield that I am using with markdown-draft-js and draft-js libraries in React and I am facing a problem where when I paste some text into it that has numerical order when I copy the text only the text itself is being copied, the numbers of order of the list don't seem to be as if the part of the whole messa... | b667699ed019ded4aa0c44a0dd524cd5 | {
"intermediate": 0.8662000894546509,
"beginner": 0.06479430198669434,
"expert": 0.06900559365749359
} |
37,398 | I wanna try making an ai ddos firewall. How should i present it the data? I think its gonna be l7 for now. Should i present it just the raw http request data? Show me an example of the data of ehat it should look like including the raw http data, request rate, etc and when it should get predicted as you cant trg and pr... | dfb033f2bb46b49e97c658c86222f6d8 | {
"intermediate": 0.5242528915405273,
"beginner": 0.14293313026428223,
"expert": 0.33281394839286804
} |
37,399 | running nohup python app.py, stuck on "nohup: ignoring input and appending output to 'nohup.out'" | f59b252f551f6d9f6d1b6153c55ebdc2 | {
"intermediate": 0.4413820803165436,
"beginner": 0.22363582253456116,
"expert": 0.33498209714889526
} |
37,400 | Generate extensive code in C++ for a plugin that can procedurally generate a game universe with the following list. Procedural generation of planets and celestial bodies (Similar to StarSystem.h/.cpp and GalaxyGenerator.h/.cpp).
Terrain generation (Similar to TerrainGenerator.h/.cpp).
Flora and fauna generation (Simila... | 904f56bdce1d82074da9202271806f94 | {
"intermediate": 0.35831865668296814,
"beginner": 0.30544763803482056,
"expert": 0.3362337648868561
} |
37,401 | with the help of an ASCII diagram help me to understand the learning curve effect | 37bc6e4bb82a1cced28693fef0c6a890 | {
"intermediate": 0.3735659420490265,
"beginner": 0.3329688608646393,
"expert": 0.29346516728401184
} |
37,402 | concatanate 2 strings using python hi and hello | 798d7073d72d9e2370b8c9da5f5fa540 | {
"intermediate": 0.36865776777267456,
"beginner": 0.3110041618347168,
"expert": 0.32033804059028625
} |
37,403 | convert this input | 82789ce8a08f497ecbbfedcb0a2bad69 | {
"intermediate": 0.2596789300441742,
"beginner": 0.31751957535743713,
"expert": 0.42280152440071106
} |
37,404 | it doesn't close the dialog after you press add or the close button until you extend a tab or something, doesn't seem to update on change of the displayDialog:
<Dialog header="Add Item" v-model:visible="displayDialog">
<InputText v-model="newItemName" />
<template #... | 2e872b33532eb1b424425508bf8b64df | {
"intermediate": 0.406110942363739,
"beginner": 0.35622039437294006,
"expert": 0.2376687079668045
} |
37,405 | how to sub every whitespace in file with %20 with sed ? | 46084925ce4e95fb530d87982d6ca57d | {
"intermediate": 0.3772503435611725,
"beginner": 0.1783646047115326,
"expert": 0.44438502192497253
} |
37,406 | [{"Cols":[{"Hosp":"BED","Value":"3128"},{"Hosp":"CARDID","Value":"001002050286"},{"Hosp":"HOSPITALNUMBER","Value":"A00165704"},{"Hosp":"NAME","Value":"缪金生"},{"Hosp":"GENDER","Value":"男性"},{"Hosp":"AGE","Value":"87"},{"Hosp":"BIRTHDATE","Value":"1936-03-27 00:00:00.0"},{"Hosp":"RECORDDATE","Value":"2024-01-12 16:00:00.0... | 88c89cfb1f2cfac08db3407018d5c4f3 | {
"intermediate": 0.24988965690135956,
"beginner": 0.47612667083740234,
"expert": 0.2739837169647217
} |
37,407 | how to write function in shell and pass arguments to it ? | 6ed26bfca29c86e9d1862eff2917eef1 | {
"intermediate": 0.23387518525123596,
"beginner": 0.6161506772041321,
"expert": 0.14997410774230957
} |
37,408 | how to write function in shell and pass arguments to it ? | 31dbed7fdbb259390c9327d120690953 | {
"intermediate": 0.23387518525123596,
"beginner": 0.6161506772041321,
"expert": 0.14997410774230957
} |
37,409 | how to write function in shell and pass arguments to it ? | b9e7cca2db0e3f61e3bf369263625fdd | {
"intermediate": 0.23387518525123596,
"beginner": 0.6161506772041321,
"expert": 0.14997410774230957
} |
37,410 | how to write function in shell and pass arguments to it ? | 7df9ac8c7549a5796724dd4e1988351e | {
"intermediate": 0.23387518525123596,
"beginner": 0.6161506772041321,
"expert": 0.14997410774230957
} |
37,411 | from transformers import BartForConditionalGeneration, BartTokenizer
example_english_phrase = "photographer"
batch = tokenizer(example_english_phrase, return_tensors="pt")
generated_ids = model.generate(batch["input_ids"], max_new_tokens=150)
output = tokenizer.batch_decode(generated_ids, skip_special_tokens=True) | e4e96dce8db9051b012405689246b0bb | {
"intermediate": 0.4386600852012634,
"beginner": 0.27060434222221375,
"expert": 0.2907355725765228
} |
37,412 | Instructions:
The project focuses on the use of FMCW radar.
It is used for data collection, point detection, tracking and other functions.
The project is broken down into several modules.
The aim of this division is to decouple as much as possible the functionalities present in each module, and make the development of ... | b6cb8c649e0049da3b8b460ae724f3da | {
"intermediate": 0.34244200587272644,
"beginner": 0.43980252742767334,
"expert": 0.217755526304245
} |
37,413 | Instructions:
The project focuses on the use of FMCW radar.
It is used for data collection, point detection, tracking and other functions.
The project is broken down into several modules.
The aim of this division is to decouple as much as possible the functionalities present in each module, and make the development of ... | 64835455c8af35dd93dc4eef2770de71 | {
"intermediate": 0.34244200587272644,
"beginner": 0.43980252742767334,
"expert": 0.217755526304245
} |
37,414 | Instructions:
The project focuses on the use of FMCW radar.
It is used for data collection, point detection, tracking and other functions.
The project is broken down into several modules.
The aim of this division is to decouple as much as possible the functionalities present in each module, and make the development of ... | 3c727087b41748cab8c4d48833723095 | {
"intermediate": 0.34244200587272644,
"beginner": 0.43980252742767334,
"expert": 0.217755526304245
} |
37,415 | Instructions:
The project focuses on the use of FMCW radar.
It is used for data collection, point detection, tracking and other functions.
The project is broken down into several modules.
The aim of this division is to decouple as much as possible the functionalities present in each module, and make the development of ... | ce38d931d64b0b129829e38aaf7f3f28 | {
"intermediate": 0.34244200587272644,
"beginner": 0.43980252742767334,
"expert": 0.217755526304245
} |
37,416 | Instructions:
The project focuses on the use of FMCW radar.
It is used for data collection, point detection, tracking and other functions.
The project is broken down into several modules.
The aim of this division is to decouple as much as possible the functionalities present in each module, and make the development of ... | 070876f67ba44c022b7d60e5ac2a6540 | {
"intermediate": 0.34244200587272644,
"beginner": 0.43980252742767334,
"expert": 0.217755526304245
} |
37,417 | use module time.strftime with math | 1310d58d9efa527f6218ae0e532c967f | {
"intermediate": 0.44761523604393005,
"beginner": 0.3141869902610779,
"expert": 0.23819774389266968
} |
37,418 | Instructions:
The project focuses on the use of FMCW radar.
It is used for data collection, point detection, tracking and other functions.
The project is broken down into several modules.
The aim of this division is to decouple as much as possible the functionalities present in each module, and make the development of ... | d76c2d825e644a02af8af994f104280d | {
"intermediate": 0.34244200587272644,
"beginner": 0.43980252742767334,
"expert": 0.217755526304245
} |
37,419 | 这个报错怎么解决:org.springframework.core.io.buffer.DataBufferLimitException: Exceeded limit on max bytes to buffer : 262144 | 8ebf030115a349c6b8576a0df4966a96 | {
"intermediate": 0.4633679687976837,
"beginner": 0.2343800663948059,
"expert": 0.302251935005188
} |
37,420 | In my React component I use draft-js library. In my text input there is onPaste event that pastes text with the type of 'ordered-list-item'. It results in the list being pasted with numerical order. However after I send the message it just sends text itself without numbers for each line. What can I do in order to send ... | 6209fcbecc4445263203d6369cb8e6e3 | {
"intermediate": 0.8659704923629761,
"beginner": 0.057182732969522476,
"expert": 0.07684672623872757
} |
37,421 | Is __atomic_signal_fence necessary? What can I replace it with? | a50d4de3ae11a0e18bd6928e3b8813da | {
"intermediate": 0.4194762408733368,
"beginner": 0.22902236878871918,
"expert": 0.35150134563446045
} |
37,422 | window.open('file:///Users/bluelatios/Desktop/ZombsScript/gui/index.html');
VM391:1 Not allowed to load local resource: file:///Users/bluelatios/Desktop/ZombsScript/gui/index.html | f29396d490178965c76438cd310a7bb9 | {
"intermediate": 0.3490740954875946,
"beginner": 0.32822051644325256,
"expert": 0.3227054178714752
} |
37,423 | give me the css styles necessary to place a div element <div id="buttonsdiv"></div> in the horizontal center of the div element <div class="mapcontainer">, 20 px from the bottom of the page and with a z-index of 1 | c82689247d84c70d5356c3fc9ef21484 | {
"intermediate": 0.4503532648086548,
"beginner": 0.2374456524848938,
"expert": 0.3122011125087738
} |
37,424 | Using markdown-draft-js library I need to convert a string into a BlockMap | 179b275bc9366b8e32fa2503a2a8d270 | {
"intermediate": 0.6942388415336609,
"beginner": 0.12162018567323685,
"expert": 0.18414095044136047
} |
37,425 | Instructions:
The project focuses on the use of FMCW radar.
It is used for data collection, point detection, tracking and other functions.
The project is broken down into several modules.
The aim of this division is to decouple as much as possible the functionalities present in each module, and make the development of ... | bfe0f01b22e12ec226b3cca51453e40f | {
"intermediate": 0.34244200587272644,
"beginner": 0.43980252742767334,
"expert": 0.217755526304245
} |
37,426 | je veux ajouter un style pour le boutton - et +, le bouton est de base de couleur orange est lors du hover il est assombrit : import { useEffect } from "react";
import TicketCard from "../../components/TicketCard";
import Footer from "../../components/footer";
import axios from 'axios';
const videoSrc = "images/bgbille... | fa29f33884a2532f2dfee6cda7cdca5c | {
"intermediate": 0.44478169083595276,
"beginner": 0.40077003836631775,
"expert": 0.15444834530353546
} |
37,427 | What is gcc __int128 | a27e4bfe575123d630c49b2ecc3f4612 | {
"intermediate": 0.36543145775794983,
"beginner": 0.41944849491119385,
"expert": 0.2151201069355011
} |
37,428 | Парсер-бот просто не показывает данные и даже ошибок нету, что я пропустил?
Почему ничего не происходит? Ошибку даже не выдаёт.
import requests
from bs4 import BeautifulSoup
import telebot
# настройка телеграм-бота
TOKEN = ''
bot = telebot.TeleBot(TOKEN)
chat_id = ''
# получение HTML-кода страницы с товарами
... | 2f9efbb46521b7beac1f5878303c7c37 | {
"intermediate": 0.38293930888175964,
"beginner": 0.45363056659698486,
"expert": 0.1634301096200943
} |
37,429 | I was making a website using next js in that website I want my vehicle monitering device data to be displaye on that website in that a map show the reached limit and challan , limit speed , penalty etc so can u help me with that code | 8e92c7f395e82d12627859d25cbf3e39 | {
"intermediate": 0.6703543066978455,
"beginner": 0.14115563035011292,
"expert": 0.188490092754364
} |
37,430 | I was making a website using next js in that website I want my vehicle monitering device data to be displaye on that website in that a map show the reached limit and challan , limit speed , penalty etc so can u help me with that description | a9bad51f590594337ba693d949e3a584 | {
"intermediate": 0.47960805892944336,
"beginner": 0.20193074643611908,
"expert": 0.31846117973327637
} |
37,431 | Can you fix the indentation?
import pygame
import sys
# Set up display
screen = pygame.display.set_mode((900, 700))
# Set up colors (RGB format)
kirby_pink_color = (255, 105, 180)
kirby_yellow_color = (255, 255, 0)
ground_color = (0, 255, 0)
# Kirby properties
circle_radius1 = 25 # Initial radius
circle_radius2 = ... | 8f7c855827dd6c7f21f3a9467343de88 | {
"intermediate": 0.46553948521614075,
"beginner": 0.3968413174152374,
"expert": 0.13761919736862183
} |
37,432 | Can you show me some advanced practical usage example codes for Cinema 4D Python Effector? | ade46b547c54a23d9f85ed473e7c1ee1 | {
"intermediate": 0.598149299621582,
"beginner": 0.16301329433918,
"expert": 0.23883739113807678
} |
37,433 | Using Cinema 4D Formula Deformer I want to create ripple effect on a plane. | f1473d57544a42dd622d7e0090d0981d | {
"intermediate": 0.2765890061855316,
"beginner": 0.2176242470741272,
"expert": 0.5057867169380188
} |
37,434 | write an applescript script that opens a file on my mac | eb790f9f39fe0c2eae89f51dd8190696 | {
"intermediate": 0.350564569234848,
"beginner": 0.38649430871009827,
"expert": 0.2629410922527313
} |
37,435 | Can you add some scrolling? It should be able to go both ways.
import pygame
import sys
# Set up display
screen = pygame.display.set_mode((900, 700))
# Set up colors (RGB format)
kirby_pink_color = (255, 105, 180)
kirby_yellow_color = (255, 255, 0)
ground_color = (0, 255, 0)
# Kirby properties
circle_radius1 = 25 ... | 72fa6a33683d75c6f6afef875fb440b9 | {
"intermediate": 0.3652649521827698,
"beginner": 0.44287818670272827,
"expert": 0.19185681641101837
} |
37,436 | import pygame
import sys
# Set up display
screen = pygame.display.set_mode((900, 700))
# Set up colors (RGB format)
kirby_pink_color = (255, 105, 180)
kirby_yellow_color = (255, 255, 0)
ground_color = (0, 255, 0)
# Kirby properties
circle_radius1 = 25 # Initial radius
circle_radius2 = 25 # Initial radius
circle_y_... | 9db570c107e985d2cb94f9efc469e20a | {
"intermediate": 0.31070899963378906,
"beginner": 0.511910080909729,
"expert": 0.17738093435764313
} |
37,437 | Can you make the USA flag in processing 4? Use "For" loops. | d9e22e3b2000f0edbbae4ae0c96cae0f | {
"intermediate": 0.24404844641685486,
"beginner": 0.4744319021701813,
"expert": 0.28151968121528625
} |
37,438 | Can you make the Kirby collide with each other?
import pygame
import sys
# Set up display
screen = pygame.display.set_mode((900, 700))
# Set up colors (RGB format)
kirby_pink_color = (255, 105, 180)
kirby_yellow_color = (255, 255, 0)
ground_color = (0, 255, 0)
# Kirby properties
circle_radius1 = 25 # Initial radiu... | 538fd1120b80135d659d90c1b71efbcb | {
"intermediate": 0.49970465898513794,
"beginner": 0.36652183532714844,
"expert": 0.13377349078655243
} |
37,439 | Consider one more time the following contract specification for the static method smooth.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/**
* Smooths a given {@code Sequence<Integer>}.
*
* @param s1
* the sequence to smooth
* @param s2
* the resulting sequence
*
* @replaces s2
* ... | ee2e99a1de214d6b8c7602cdf53ddce4 | {
"intermediate": 0.37162965536117554,
"beginner": 0.29646387696266174,
"expert": 0.3319064974784851
} |
37,440 | import pygame
import sys
# Set up display
screen = pygame.display.set_mode((900, 700))
# Set up colors (RGB format)
kirby_pink_color = (255, 105, 180)
kirby_yellow_color = (255, 255, 0)
ground_color = (0, 255, 0)
# Kirby properties
circle_radius1 = 25 # Initial radius
circle_radius2 = 25 # Initial radius
circle_y_... | 3fc20438202396ec034f29f0f1fb0d9b | {
"intermediate": 0.31070899963378906,
"beginner": 0.511910080909729,
"expert": 0.17738093435764313
} |
37,441 | Программа на /bin/sh
ip2int()
{
local a b c d
{ IFS=. read a b c d; } << $1
echo $(((((((a << 8) | b) << 8) | c) << 8) | d))
}
int2ip()
{
local ui32=$1; shift
local ip n
for n in 1 2 3 4; do
ip=$((ui32 & 0xff))${ip:+.}$ip
ui32=$((ui32 >> 8))
done
echo $ip
}
netmask()
#... | e67c8b26dffb299f00642e7dd1090e92 | {
"intermediate": 0.23096859455108643,
"beginner": 0.5165145397186279,
"expert": 0.25251689553260803
} |
37,442 | Override the toString method. Throw an IllegalStateException. Profit. | f56ced504b6efa921f8cbc391b0c6ce3 | {
"intermediate": 0.4390365779399872,
"beginner": 0.27866804599761963,
"expert": 0.2822954058647156
} |
37,443 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Portfolio</title>
<style>
body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
display: fl... | 9f4195acc9b6823d173543714ce64374 | {
"intermediate": 0.3129365146160126,
"beginner": 0.5422636866569519,
"expert": 0.14479981362819672
} |
37,444 | Finish the class: package components.queue;
import components.sequence.Sequence;
import components.sequence.Sequence1L;
/**
* {@code Queue} represented as a {@code Sequence} of entries, with
* implementations of primary methods.
*
* @param <T>
* type of {@code Queue} entries
* @correspondence this =... | 8e4c1f41d621ec004ba613fd997571ef | {
"intermediate": 0.4704260528087616,
"beginner": 0.31003743410110474,
"expert": 0.21953655779361725
} |
37,445 | How would you make a loop in python that runs 100 times? | 7df15a6c7823d8fb6d455ea92047fafd | {
"intermediate": 0.24032795429229736,
"beginner": 0.47712594270706177,
"expert": 0.28254613280296326
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.