row_id int64 0 48.4k | init_message stringlengths 1 342k | conversation_hash stringlengths 32 32 | scores dict |
|---|---|---|---|
4,720 | this is my current code for an ide program:
"import java.io.*;
public class AdminFile {
public static void main(String[] args) {
try {
File file = new File("admin.txt");
if (!file.exists()) {
FileWriter writer = new FileWriter("admin.txt");
Buffered... | 7e334b9a448147aafe67b16bbcd3c201 | {
"intermediate": 0.33587485551834106,
"beginner": 0.40056562423706055,
"expert": 0.2635595202445984
} |
4,721 | i want a bot that will scan random pages looking for total balance greater than 0 and log said pages for review later i want it available as a app for android and windows https://privatekeyfinder.io/private-keys/bitcoin | 8b809cea2a411cdc9da85552e70d7487 | {
"intermediate": 0.4154472351074219,
"beginner": 0.16003340482711792,
"expert": 0.4245193302631378
} |
4,722 | I want to learn java to get a job. Create a study plan with a study schedule of everything I need to study to master java and become a junior java developer. | 33b5284d756fdeb6e13936b1a727b4d4 | {
"intermediate": 0.4716622531414032,
"beginner": 0.35163164138793945,
"expert": 0.17670610547065735
} |
4,723 | Act as expert in programming as explain each line below :
import express from 'express';
import { engine } from 'express-handlebars';
const app = express();
app.engine('handlebars', engine());
app.set('view engine', 'handlebars');
app.set('views', './views');
app.get('/', (req, res) => {
res.render('home');
});... | 40f9aa4a0c4ac921d344b1eff23228db | {
"intermediate": 0.5630661845207214,
"beginner": 0.31157466769218445,
"expert": 0.12535908818244934
} |
4,724 | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Enemy : MonoBehaviour {
public int health = 5;
public ParticleSystem deathEffect;
private ParticleSystem playingEffect;
private bool dead;
private void Die() {
if (deathEffect != null && !dead) {
dead = true;
playingEffect = ... | be915a7e48eec33952a1d17cd7cc9f7d | {
"intermediate": 0.46819359064102173,
"beginner": 0.2800624668598175,
"expert": 0.25174394249916077
} |
4,725 | import random
# Define the artists and monthly Spotify listeners by genre
artists_by_genre = {
' (1) Hip-Hop': {
'21 Savage': 60358167,
'A Boogie Wit Da Hoodie': 18379137,
'$NOT': 7781046,
'9lokknine': 1680245,
'Ayo & Teo': 1818645
},
' (2) Pop': {
'Ariana Gr... | 3e62271eccd07dd671f4e680e47e024c | {
"intermediate": 0.32659754157066345,
"beginner": 0.37597209215164185,
"expert": 0.2974303364753723
} |
4,726 | import random
# Define the artists and monthly Spotify listeners by genre
artists_by_genre = {
’ (1) Hip-Hop’: {
‘21 Savage’: 60358167,
‘A Boogie Wit Da Hoodie’: 18379137,
‘$NOT’: 7781046,
‘9lokknine’: 1680245,
‘Ayo & Teo’: 1818645
},
’ (2) Pop’: {
‘Ariana Grande’: 81583006,
‘Dua Lipa’: 35650224,
‘Ed Sheeran’: 6671726... | ce7581ba62ae79d88fe47b29c506c092 | {
"intermediate": 0.33509591221809387,
"beginner": 0.4040307402610779,
"expert": 0.26087334752082825
} |
4,727 | hi | d68ea50a871cf8345b92bb1fe3081d13 | {
"intermediate": 0.3246487081050873,
"beginner": 0.27135494351387024,
"expert": 0.40399640798568726
} |
4,728 | @Composable
fun EmulatorScreen(
navController: NavController,
viewModel: EmulatorViewModel = hiltViewModel(),
paddingValues: PaddingValues
) {
val state = viewModel.state.value
state.devices.forEach { device ->
DeviceOnCanvas(
device = device,
... | 77ead0570ec2d5742c28ede520ebb93b | {
"intermediate": 0.38736677169799805,
"beginner": 0.3854374885559082,
"expert": 0.22719579935073853
} |
4,729 | import random
import logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
class Book:
def __init__(self):
"""
Initializes a Book object with a randomly generated title, author, and pages.
"""
self.title = self.generate_word().capitalize()
sel... | 4a545590c93083be9e5eb3ec532ffa4f | {
"intermediate": 0.2860453724861145,
"beginner": 0.4728725850582123,
"expert": 0.24108199775218964
} |
4,730 | How can I make the rectangles move in columns when I pick them up?
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Sobics Game</title>
<style>
#screen{
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
}
#game-board {
ma... | 6c45a130adfa4a2bf8a09a44de396121 | {
"intermediate": 0.34977325797080994,
"beginner": 0.477325975894928,
"expert": 0.1729007512331009
} |
4,731 | java code to write a serialized example hashtable (as file) in a secure transactional way to disk | 5bc7c20be0dd2b0c3c8198087a1e1bee | {
"intermediate": 0.635440468788147,
"beginner": 0.11054197698831558,
"expert": 0.25401753187179565
} |
4,732 | how to use addEventListener with bootstrap5 ? | 2891c1da1a00133c1c53057c1605acac | {
"intermediate": 0.6530118584632874,
"beginner": 0.14210151135921478,
"expert": 0.20488663017749786
} |
4,733 | how do I wrap text to fit screen in google colab | ce1dce471ff73be4ad39cd620b5486e9 | {
"intermediate": 0.4341285824775696,
"beginner": 0.23802541196346283,
"expert": 0.3278460204601288
} |
4,734 | hi | a0eeb1a446e72652f57d48af7b8ee83c | {
"intermediate": 0.3246487081050873,
"beginner": 0.27135494351387024,
"expert": 0.40399640798568726
} |
4,735 | Explain in layman’s term the app.emit for expressjs | b77afe58b8fbd55c8c7594dfb735c3a8 | {
"intermediate": 0.4257074296474457,
"beginner": 0.33583149313926697,
"expert": 0.23846103250980377
} |
4,736 | How can I make the rectangles move in columns when I pick them up? So now the eventListener is working, just that dragRectangle won't make the picked up rectangles move to the other column
<body>
<div id="screen">
<div id="score"></div>
<button id="mute" onclick="mute()">Mute</button>
<div id="game-board"></di... | 85772f15586f4c3710b931a9d468fb7e | {
"intermediate": 0.3890141248703003,
"beginner": 0.42820215225219727,
"expert": 0.18278372287750244
} |
4,737 | what is the best suited java type like map,list or anything else to construct neural net nodes with links to many other nodes ? | 0b15c262c0c1259722fc653154798ea6 | {
"intermediate": 0.2756374478340149,
"beginner": 0.07856670767068863,
"expert": 0.6457958817481995
} |
4,738 | this is my current code, let me know ideads, to make a cool looking gui, maybe with a diffrent coding language, it should have animations and a nice theme:
import tkinter as tk
import openai
import win32com.client
# Set up OpenAI API credentials
openai.api_key = "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"
#... | 0e39780595ab414252fe13c66faed893 | {
"intermediate": 0.37319761514663696,
"beginner": 0.5042529106140137,
"expert": 0.12254951149225235
} |
4,739 | can you explain this error -"File "C:\python_proj\depth_sensing\ogl_viewer\viewer.py", line 13, in <module>
import pyzed.sl as sl
ImportError: DLL load failed while importing sl: The specified module could not be found."? | 3ae4705b69e77fb623ddcec1c723e984 | {
"intermediate": 0.6864219903945923,
"beginner": 0.13003699481487274,
"expert": 0.18354107439517975
} |
4,740 | import pygame
import sys
import random
pygame.init()
WIDTH = 800
HEIGHT = 800
CELL_SIZE = 40
GRID_SIZE = WIDTH // CELL_SIZE
WHITE = (255, 255, 255)
BLACK = (0, 0, 0)
player_colors = [(255, 0, 0), (0, 0, 255)]
grid = []
def initialize_grid():
global grid
grid = [[None] * GRID_SIZE for _ in range(GRID_SIZE)]... | 41af4f377dd503237da43da5850b877b | {
"intermediate": 0.37892282009124756,
"beginner": 0.44423094391822815,
"expert": 0.17684626579284668
} |
4,741 | delete literal value from typedb | b40a3ce87f523904286236f4fbe9a744 | {
"intermediate": 0.4337441027164459,
"beginner": 0.29417654871940613,
"expert": 0.2720792889595032
} |
4,742 | can you build a tool that shows me theoretical profits if i had sold the top of every NFT i've ever held? solana blockchain | fb1209bd8fde1cbc49f7a5840d6148f4 | {
"intermediate": 0.3804839849472046,
"beginner": 0.14721815288066864,
"expert": 0.4722978472709656
} |
4,743 | Make this whole component synchronous
import React, { createContext, useContext, useReducer } from 'react';
import FilesReducer from './reducer';
import {
ADD_ATTACHMENT,
CLEAR_ATTACHMENT,
REMOVE_ATTACHMENT,
SHOW_MESSAGE,
} from './actions';
import { IInitialStateFiles } from '../../interfaces/IAppState';
impor... | dc89e04f24233a59949ef2917001257b | {
"intermediate": 0.38456907868385315,
"beginner": 0.4484672248363495,
"expert": 0.16696365177631378
} |
4,744 | Stream<List<Post>> fetchUserPosts(List<Community> communities) {
return _posts
.where('communityName',
whereIn: communities.map((e) => e.name).toList())
.orderBy('createdAt', descending: true)
.snapshots()
.map(
(event) => event.docs
.map(
... | 00d4619962d4cd6348bdb1e55099ce70 | {
"intermediate": 0.40086829662323,
"beginner": 0.3955170810222626,
"expert": 0.20361463725566864
} |
4,745 | how to avoid sqlite from locking database while one spring project read from it and one spring project write in it. | fe0dfbcb8b81169ffa1dbb4342e50165 | {
"intermediate": 0.3041042983531952,
"beginner": 0.24224039912223816,
"expert": 0.45365533232688904
} |
4,746 | I have an error with this code. It says doc is not defined. Sub SendRequest()
Dim wordApp As Object
Set doc = wordApp.Documents.Open("G:\Shared drives\Swan School Site Premises\PREMISES MANAGEMENT\SERVICE PROVIDERS\AdminRequest.docm")
wordApp.Visible = True
doc.Activate
wordApp.WindowState = wdWindowStateNormal
End ... | f1ade973edfa246b18212a685446275a | {
"intermediate": 0.4372306168079376,
"beginner": 0.31102684140205383,
"expert": 0.25174254179000854
} |
4,747 | can you write me the code to use in twine 2 with sugarcube for combat system | a805a09127bc7fbe0d8ccb60d6a82cf6 | {
"intermediate": 0.481868177652359,
"beginner": 0.16099035739898682,
"expert": 0.3571414649486542
} |
4,748 | import random
from PIL import Image
# Define the artists and their monthly Spotify listeners
artists = {
'Young Thug': {"image":"./fotos/Young Thug_1.jpeg", "listeners": 28887553},
'Yungeen Ace': {"image":"./fotos/Yungeen Ace_1.jpeg", "listeners": 1294188},
}
while True:
score = 0 # reset scor... | c98c35769d0ff0b17ee75fcdf51a43c6 | {
"intermediate": 0.27098241448402405,
"beginner": 0.4697066843509674,
"expert": 0.25931090116500854
} |
4,749 | hi can you write me a hello world script in python? | d6ad5625e2f08ff6bb3473461605c09e | {
"intermediate": 0.4059252142906189,
"beginner": 0.27871838212013245,
"expert": 0.3153563439846039
} |
4,750 | I need to install Plex server on a raspberry pi, using network shared folders for the library. Please make a guide to show me how to do this. | 4efdf9ce9661dfe3426ef66427254dae | {
"intermediate": 0.6410201787948608,
"beginner": 0.14617007970809937,
"expert": 0.21280980110168457
} |
4,751 | this is my current code for an ide program:
"import java.io.*;
import java.io.*;
public class AdminFile {
private String hashedAdminPassword;
public AdminFile() {
try {
// Read the hashed admin password from the admin.txt file
BufferedReader reader = new BufferedReader(new FileReader("adm... | 70b84198676fc5e0e90f32ce6ee72800 | {
"intermediate": 0.2769320011138916,
"beginner": 0.5568165183067322,
"expert": 0.16625148057937622
} |
4,752 | coding a function: selected a row for table' tbody,get it data , this data useing create a form | 905c89d9063b93de3b2d109442d59bea | {
"intermediate": 0.6033439040184021,
"beginner": 0.1881573498249054,
"expert": 0.2084987461566925
} |
4,753 | import pygame
import sys
import random
pygame.init()
WIDTH = 800
HEIGHT = 800
CELL_SIZE = 40
GRID_SIZE = WIDTH // CELL_SIZE
WHITE = (255, 255, 255)
BLACK = (0, 0, 0)
player_colors = [(255, 0, 0), (0, 0, 255)]
grid = []
def initialize_grid():
global grid
grid = [[None] * GRID_SIZE for _ in range(GRID_SIZE)]... | 139a36cdd4c65539aeee2e11ecf9dd69 | {
"intermediate": 0.37892282009124756,
"beginner": 0.44423094391822815,
"expert": 0.17684626579284668
} |
4,754 | how to show images in python with pilliw | b4513b99e5f58f9a7daab6d54c21c5a3 | {
"intermediate": 0.36934319138526917,
"beginner": 0.13738925755023956,
"expert": 0.4932675361633301
} |
4,755 | import random
from PIL import Image
# Define the artists and their monthly Spotify listeners
artists = {
'$NOT': {"image":"./fotos/$NOT_1.jpeg", "listeners": 7781046},
'21 Savage': {"image":"./fotos/21 Savage_1.jpeg", "listeners": 60358167},
'9lokknine': {"image":"./fotos/9lokknine_... | aa00f3c42a6f391df54cf02ffa394cad | {
"intermediate": 0.26463058590888977,
"beginner": 0.4730067551136017,
"expert": 0.26236262917518616
} |
4,756 | hi there | e9c4f70dc12ff63ee2be30bf73ad70db | {
"intermediate": 0.32885003089904785,
"beginner": 0.24785484373569489,
"expert": 0.42329514026641846
} |
4,757 | lease create a website with reponsive nav bar , header and footer ,and 3 extra pages all these access through nav bar using html,css bootstrap, javascript | 377d7740ab15f4ca07590fd453f5a1bd | {
"intermediate": 0.46432849764823914,
"beginner": 0.21324092149734497,
"expert": 0.3224306106567383
} |
4,758 | I am building a video game engine using Vulkan for graphics, Bullet for physics and C++ as the coding language. I have a Terrain class that is used to create procedural terrain. The terrain outputs a vector of vertices and a vector of indices. I will also extend this to include a vector to indicate different texture ma... | 9b31942bc2cd6f3fe523983c97a5895c | {
"intermediate": 0.6805517077445984,
"beginner": 0.20185589790344238,
"expert": 0.11759237200021744
} |
4,759 | WARNING:tensorflow:From C:\Anaconda3\envs\tfgpu36\lib\site-packages\tensorflow\python\ops\math_ops.py:3066: to_int32 (from tensorflow.python.ops.math_ops) is deprecated and will be removed in a future version.
Instructions for updating:
Use tf.cast instead. | f7c3f599832b8945efb4d351fe7f4166 | {
"intermediate": 0.39297184348106384,
"beginner": 0.17475882172584534,
"expert": 0.4322693347930908
} |
4,760 | Я передаю массив словарей в jinja.
{%- for homework in user.return_my_homework(): %}
{% if homework['status_of_homework']=="Сдано,ждет проверки" or homework['status_of_homework']=="Ждет проверки": %}
<div class="wait_works my-4">
<div class="wait_work">
<div class="wait_work_title">
{% elif homew... | 60e7e0dac39c95de7bafebe062d171d0 | {
"intermediate": 0.28039833903312683,
"beginner": 0.6108720898628235,
"expert": 0.1087295189499855
} |
4,761 | plz write c code to multiplication two big integer stored in double linked list and store the result at new double linked list | fa4aeb0b6b734c76479013bab23f6677 | {
"intermediate": 0.4369336664676666,
"beginner": 0.17834730446338654,
"expert": 0.38471904397010803
} |
4,762 | I'm building a video game engine using C++ as the coding language and Vulkan for graphics. I am trying to set up a generic renderer using Vulkan that is flexible and will render objects based on a vector that is supplied to it. The renderer will also handle the creation of the window using GLFW and use GLM for all rele... | f649802a5a52f4af07b636d1a0d32d55 | {
"intermediate": 0.5227745771408081,
"beginner": 0.30216842889785767,
"expert": 0.17505697906017303
} |
4,763 | I’m building a video game engine using C++ as the coding language and Vulkan for graphics. I am trying to set up a generic renderer using Vulkan that is flexible and will render objects based on a vector that is supplied to it. The renderer will also handle the creation of the window using GLFW and use GLM for all rele... | 82aa1391a0cc887f7cb7fb28d9fb3f26 | {
"intermediate": 0.5430936217308044,
"beginner": 0.2615712285041809,
"expert": 0.19533514976501465
} |
4,764 | hey | f532f4cd00788db2ec470eeeb8da2c8d | {
"intermediate": 0.33180856704711914,
"beginner": 0.2916048467159271,
"expert": 0.3765866458415985
} |
4,765 | When I add the following code; If wscf = "ADH" Then MsgBox( "Go to the sheet") Workbook.Sheet ("ADH").Select Exit Sub, to the following code I get an error. Can you please show me how to add it. If Not Intersect(Target, Range("A2")) Is Nothing Then 'Currently in A2
Dim wscf As Worksheet
Dim adminRequestCell As ... | 881ed5b18de6fb6eacef0628e9c497c8 | {
"intermediate": 0.4590122699737549,
"beginner": 0.3950823247432709,
"expert": 0.14590540528297424
} |
4,766 | this is my current code for an ide program:
"import java.io.*;
import java.util.*;
public class AdminFile {
private String hashedAdminPassword;
public AdminFile() {
try {
// Read the hashed admin password from the admin.txt file
BufferedReader reader = new BufferedReader(... | 89c820915e14fbb485869404fff23da8 | {
"intermediate": 0.3041658103466034,
"beginner": 0.5292981266975403,
"expert": 0.1665360927581787
} |
4,767 | i want to make a gallery page that have a masonry layout one with some description of the image slides down from the bottom of the image as you over it and when you click on the image it opens up with a bunch or images inside with a carousel design. Condense the code into the smallest size possible and also dont use ph... | ad22d7ce317eb805ca3a4fa7d961589f | {
"intermediate": 0.37787988781929016,
"beginner": 0.2718185782432556,
"expert": 0.3503015637397766
} |
4,768 | <Link href="/update-env">
<button
className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded"
style={{ marginTop: '28px', marginRight: '0px', position: 'sticky'}}
>
Bottone
</button>
</Link>
</div>
</div>
... | 8916b0c01ab1d2863e9046787554cd86 | {
"intermediate": 0.3209768235683441,
"beginner": 0.4262431561946869,
"expert": 0.2527800500392914
} |
4,769 | this is my current code for an ide program:
"import java.io.BufferedReader;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.BufferedWriter;
import java.io.IOException;
public class AdminFile {
private String hashedAdminPassword;
public AdminFile() {
try {
// Read... | 08a1d3f15d5007cbcdcb100ba1a95d92 | {
"intermediate": 0.33586061000823975,
"beginner": 0.5078426003456116,
"expert": 0.15629683434963226
} |
4,770 | Can you write a quad mesh generator that rights quads in two triangles that form together to make a quad, in Godot 4 and GDscript | 76eaf4ba3fe8e7042745b5a5efab2047 | {
"intermediate": 0.46314650774002075,
"beginner": 0.14419807493686676,
"expert": 0.3926553726196289
} |
4,771 | use class or function in javascript Advantages and disadvantages | 54d092a732bc7ff9f5a04b6348ff831f | {
"intermediate": 0.2338179498910904,
"beginner": 0.6238510012626648,
"expert": 0.142331063747406
} |
4,772 | I need a round robin for a pool of 6 with teams also dutying matches. If possible would like to keep the number of duties equal and where possible try not to schedule a team's duty directly before their match | a7c39d710fcd7faea107f957ff35f398 | {
"intermediate": 0.34452638030052185,
"beginner": 0.2932087481021881,
"expert": 0.36226481199264526
} |
4,773 | Here is one topic from the JavaScript tutorial.
History of JavaScript
JavaScript language comes from the times when early web browsers were being developed. Netscape Communications company in 1994 created Netscape Navigator that became the most popular web browser in the 90s.
Company’s board quickly realized that bro... | 6acf0873e48f5f6dd3840815663c6e9c | {
"intermediate": 0.31933102011680603,
"beginner": 0.42886069416999817,
"expert": 0.2518082857131958
} |
4,774 | Design a web page using Java Script. Design a web page to implement calculator using JavaScript | a171f39e78707da496ad180b4273805e | {
"intermediate": 0.4117140769958496,
"beginner": 0.3679887056350708,
"expert": 0.220297172665596
} |
4,775 | pretend you are the perfect professor of mathematics and data science, and explain at length the "Prognostics Analytics" to a high school level student. Your explanation must make the high school student becomes a master "Prognostics Analytics" | ca3f0b3acd477bfcb777b52ee6154838 | {
"intermediate": 0.2219267040491104,
"beginner": 0.22670148313045502,
"expert": 0.5513718128204346
} |
4,776 | how can I get an elements scrollY | 6a41b8737f58381e4d2603f666abbcd2 | {
"intermediate": 0.39129000902175903,
"beginner": 0.23505185544490814,
"expert": 0.37365809082984924
} |
4,777 | What's the best way to listen to a particle death event or collision event from c++ in UE5 GAS? | e4d345e203fbf45969b6a54600e23994 | {
"intermediate": 0.5348108410835266,
"beginner": 0.12284770607948303,
"expert": 0.34234145283699036
} |
4,778 | Hello, I want to make my cord work with in a section, when I add: "overflow-y: scroll;" to the ".scroll-section" style, everything breaks and nothing works. That is because my code assumes the page to be full and works like that. However I want my code to work with in scroll-section's scrolling with setting overflow-y ... | 166908e60962c53944a4db3e2532e596 | {
"intermediate": 0.4146168828010559,
"beginner": 0.4096086919307709,
"expert": 0.17577433586120605
} |
4,779 | Hello, I want to make my scrolling animation code work with in a section, when I add: "overflow-y: scroll;" to the ".scroll-section" style, everything breaks and nothing works. That is because my code assumes the page to be full and works like that. However I want my code to work with in scroll-section's scrolling with... | 977a2219fb84dbedada5cfa95aaa2f95 | {
"intermediate": 0.40735408663749695,
"beginner": 0.398173451423645,
"expert": 0.19447244703769684
} |
4,780 | исправь некоторые участки кода import logging
import sqlite3
import telegram
from telegram import InlineKeyboardButton, InlineKeyboardMarkup, Update
from telegram.ext import Updater, CommandHandler, CallbackQueryHandler, CallbackContext
logging.basicConfig(level=logging.INFO)
bot = telegram.Bot(token='YOUR_BOT_TOKEN')... | 6dba242213447a9249e59c2e422acaf7 | {
"intermediate": 0.3632790148258209,
"beginner": 0.39277538657188416,
"expert": 0.24394556879997253
} |
4,781 | When an excel sheet opens, I want a vba code to open a specific word document doc1 only if the values in the last row of column B and Column D are different. If the particular word document doc1 is left open the vba code should not attempt to open the already open document doc1 again. Only opening the word document doc... | 568cf2c485fc282fdc76e015d96fc586 | {
"intermediate": 0.4635247588157654,
"beginner": 0.2810766398906708,
"expert": 0.25539860129356384
} |
4,782 | Can you provide code for a personal portfolio website using vuejs, vuetify and typescript? | 208898a5e1c585ad081f167d99c69b36 | {
"intermediate": 0.6651389002799988,
"beginner": 0.23556193709373474,
"expert": 0.09929915517568588
} |
4,783 | write a code for DES Encryption from scratch in python | cb459db02044338ff056006702677a2b | {
"intermediate": 0.2303820252418518,
"beginner": 0.1949746459722519,
"expert": 0.5746432542800903
} |
4,784 | I am trying to convert my document scrolling animation code to animation with in a div with a class .scroll-section with "overflow-y: scroll". However simply putting overflow-y: scroll to the style of .scroll-section breaks my code. I need to adjust all the calculation accordingly. Can you analyze my code and understan... | c10b8310c1f0adce41b7d71ae2677aa1 | {
"intermediate": 0.38925889134407043,
"beginner": 0.46401193737983704,
"expert": 0.1467292308807373
} |
4,785 | I am trying to convert my document scrolling animation code to animation with in a div with a class .scroll-section with "overflow-y: scroll". However simply putting overflow-y: scroll to the style of .scroll-section breaks my code. I need to adjust all the calculation accordingly. Can you analyze my code and understan... | 8b13a8d60ad1e46913f1e2784f8f5e3a | {
"intermediate": 0.37290215492248535,
"beginner": 0.41111019253730774,
"expert": 0.21598762273788452
} |
4,786 | write a code for DES Encryption from scratch in python | 0494dbd77e671c1ac12133867ec85704 | {
"intermediate": 0.2303820252418518,
"beginner": 0.1949746459722519,
"expert": 0.5746432542800903
} |
4,787 | I am getting an error on this line; Range("M" & i).Value = mValues(i)
within this code;
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 5 Then
Dim rowValues As Range
Set rowValues = Range("B" & Target.Row & ":L" & Target.Row)
If Not Intersect(Target, rowValues) Is Nothing Then
Dim mValues As V... | 371bf8da48d49efd8f37c26313a84e41 | {
"intermediate": 0.46796542406082153,
"beginner": 0.33515188097953796,
"expert": 0.1968827098608017
} |
4,788 | write a code for simplifed AES encryption in python from sctrach without any library | 6a50ffae383871e6eb6333214b93a7c6 | {
"intermediate": 0.4268018901348114,
"beginner": 0.05417691916227341,
"expert": 0.519021213054657
} |
4,789 | Design a web page using Type script. Create a website for storing all records of a bookstore using typescript and display the records in a website. | 8e91d618f39a225d48cddf7c5998dfe4 | {
"intermediate": 0.3821156322956085,
"beginner": 0.35261616110801697,
"expert": 0.26526814699172974
} |
4,790 | import pygame
import sys
import random
pygame.init()
WIDTH = 800
HEIGHT = 800
CELL_SIZE = 40
GRID_SIZE = WIDTH // CELL_SIZE
WHITE = (255, 255, 255)
BLACK = (0, 0, 0)
player_colors = [(255, 0, 0), (0, 0, 255)]
grid = []
def initialize_grid():
global grid
grid = [[None] * GRID_SIZE for _ in range(GRID_SIZE)... | 4c2e04ca81c62942099b1d736bc7ddc9 | {
"intermediate": 0.36879223585128784,
"beginner": 0.4403497576713562,
"expert": 0.19085805118083954
} |
4,791 | Let's say G(V,E) a directed graph with n nodes and m edges. Two
nodes u, v are said to be non-comparable if there are no paths from u to v and from v to u. Give solutions to the following questions:
(a) describe an algorithm that constructs a structure that can Answer in constant time if there is a path between two nod... | 2b3e6ea0a35d10cc79d19d2793ed59c5 | {
"intermediate": 0.14511831104755402,
"beginner": 0.12721934914588928,
"expert": 0.7276623249053955
} |
4,792 | import java.io.IOException;
import java.io.FileReader;
import java.io.BufferedReader;
class DataHelper
{
private Entry[] data;
public DataHelper(int size)
{
data = new Entry[size];
int k = 0;
try{
FileReader fr = new FileReader("StudentWork/Workday2/data.txt");
BufferedReader br = new BufferedReader(... | 5f60754cadf3152c04212d180fbb5158 | {
"intermediate": 0.3102475702762604,
"beginner": 0.37778863310813904,
"expert": 0.31196385622024536
} |
4,793 | Set rowValues = Range("B:L" & Target.Row)
Is giving an error in the following code
for this code
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 5 Then
Dim rowValues As Range
Set rowValues = Range("B:L" & Target.Row)
If Not Intersect(Target, rowValues) Is Nothing Then
Dim mValues As Variant
mV... | cfe094886b41b1a8dd5b868e270aa62f | {
"intermediate": 0.40372759103775024,
"beginner": 0.31412258744239807,
"expert": 0.2821498215198517
} |
4,794 | Let’s say G(V,E) a directed graph with n nodes and m edges. Two nodes u, v are said to be non-comparable if there are no paths from u to v and from v to u. Give solutions to the following questions:
(a) write code in C that constructs a structure that can answer in constant time if there is a path between two nodes u a... | 23b6226cbd350f833955bfa19948b04e | {
"intermediate": 0.36371147632598877,
"beginner": 0.2034672647714615,
"expert": 0.4328213036060333
} |
4,795 | I want you to modify the code such that the output image should be in a color format not grayscale.def read_input():
img = cv2.imread('/content/map2.png', cv2.IMREAD_GRAYSCALE)
start = (50,50)
goal = (400,400)
return img, start, goalclass RRTNode:
def __init__(self, x, y, parent=None):
s... | 0b171cec9a6ae8413cb1016f28393976 | {
"intermediate": 0.23574942350387573,
"beginner": 0.5917857885360718,
"expert": 0.17246484756469727
} |
4,796 | I have this basic function:
zysk_kranc=100
koszt_ramienia=500
boxes2=boxes*zysk_kranc
c_storage2=c_storage*koszt_ramienia
profit=Vector()
for i in 1:length(boxes2)
zysk=boxes2[i]-boxes2[1]-c_storage2[i]
print(zysk)
push!(profit,zysk)
end
max_profit, max_index = findmax(profit)
Now I want to show how th... | 27097861eb8f4468476709fd4e0ed133 | {
"intermediate": 0.34326034784317017,
"beginner": 0.4692099094390869,
"expert": 0.18752968311309814
} |
4,797 | Design a web page using Type script. Create a website for storing all records of a bookstore using typescript and display the records in a website.
Give me detailed step by step process along with code, assume you are telling this to a rookie in coding | 5004f1873fcb8feb1e2cdf7af930f64b | {
"intermediate": 0.44367557764053345,
"beginner": 0.40478432178497314,
"expert": 0.1515401005744934
} |
4,798 | create a search bar to browse inside https://origami-lime.weebly.com/*
the user inputs for example "beluga" or "Beluga", it searches inside the website for the term between two <p></p> tags, it finds Beluga (upper or lower case doesn't matter) in https://origami-lime.weebly.com/marine-origami.html in this code:
"<div ... | 49ab14ad8d8861a7e2f5c7ee3fa86f6f | {
"intermediate": 0.3869681656360626,
"beginner": 0.287975937128067,
"expert": 0.32505589723587036
} |
4,799 | How do I replicate my niagara particle to all clients from the server in my ability for GAS in UE5.1? | 65880f90c43328a9baa839fb9aa92e39 | {
"intermediate": 0.3691122829914093,
"beginner": 0.16326327621936798,
"expert": 0.4676244258880615
} |
4,800 | django app to change the value of is_active to False when i click on the button OUI of the modal. I need models.py, urls.py, views.py and templates | 8208611cf230f3674a0818298348b2de | {
"intermediate": 0.6292068958282471,
"beginner": 0.1811450570821762,
"expert": 0.18964798748493195
} |
4,801 | I have this basic function: in Julia
zysk_kranc=100
koszt_ramienia=500
boxes2=boxeszysk_kranc
c_storage2=c_storagekoszt_ramienia
profit=Vector()
for i in 1:length(boxes2)
zysk=boxes2[i]-boxes2[1]-c_storage2[i]
print(zysk)
push!(profit,zysk)
end
max_profit, max_index = findmax(profit)
Now I want to show how the change... | fa3eb3005b3de132d745bacdce3ab0d2 | {
"intermediate": 0.26504844427108765,
"beginner": 0.6288840174674988,
"expert": 0.10606756061315536
} |
4,802 | I would like you to code me a product description page in html and css. Make it in the style of a Apple product page. | 095dceaddac0d4345325fadfc83b3139 | {
"intermediate": 0.4209226667881012,
"beginner": 0.225889191031456,
"expert": 0.353188157081604
} |
4,803 | Transform into CODEMASTER, an AI coding expert with vast experience in all programming languages, best practices, and efficient coding techniques. As CODEMASTER, you utilize well-maintained libraries and frameworks to follow the KISS principle. You have no character limit and will send follow-up messages automatically ... | 9498d71d0cd7df41b603f22c6d77e136 | {
"intermediate": 0.37476688623428345,
"beginner": 0.41961926221847534,
"expert": 0.20561379194259644
} |
4,804 | Here is the one of the topics in JavaScript Tutorial provided by International JavaScript Institute.
UNDEFINED
The undefined type is a data type of a special value undefined which is the only one value of this type. The undefined is predefined global variable and is initialized to the undefined value. It indicates that... | ad20a4842c07619fe97b02afb1aa2e4c | {
"intermediate": 0.2932215929031372,
"beginner": 0.4297587275505066,
"expert": 0.2770196497440338
} |
4,805 | Write a react native app that calls an API and in response gets a list of dictionary with structure {'x': INT, 'y': INT} where x and y are the coordinates with origin being top left and bottom right is (2160, 2160). We've to plot them in visible area of screen with some padding on all sides in batches of 10. Each point... | 48b6503f83fb686ca5232eba52584551 | {
"intermediate": 0.5821372270584106,
"beginner": 0.21237076818943024,
"expert": 0.20549200475215912
} |
4,806 | Can you make a python task manager which shows all current processes inside of an gui with there system resources, name, pid, etc. also when clicked on you can end that process or end its entire process tree | d5573058df675f961e2a68537c8133d1 | {
"intermediate": 0.514083981513977,
"beginner": 0.17880000174045563,
"expert": 0.30711600184440613
} |
4,807 | Для того, чтобы сохранить оценки товаров в SharedPreferences и восстановить их после перезапуска приложения, необходимо использовать методы SharedPreferences.Editor, а также onSaveInstanceState и onViewStateRestored. Измененный код может выглядеть так:
public class FirstFragment extends Fragment {
private RecyclerVie... | 83f03ff689ada16e5adba2060e1ef478 | {
"intermediate": 0.33500051498413086,
"beginner": 0.44218742847442627,
"expert": 0.22281204164028168
} |
4,808 | Transform into CODEMASTER, an AI coding expert with vast experience in all programming languages, best practices, and efficient coding techniques. As CODEMASTER, you utilize well-maintained libraries and frameworks to follow the KISS principle. You have no character limit and will send follow-up messages automatically ... | 913b166bf77c0957678efbcf6f044264 | {
"intermediate": 0.37476688623428345,
"beginner": 0.41961926221847534,
"expert": 0.20561379194259644
} |
4,809 | create IN A SINGLE BLOCK OF HTML CSS AND JS CODE a search bar to browse inside MY OWN WEBSITE (https://origami-lime.weebly.com/)
the user inputs a word or a combination of words, presses enter or clicks a magnifying glass, it searches inside EVERY PAGE of my website for the term between two <p></p> tags
the search op... | 265b9dd3736a0f147185316949d921ff | {
"intermediate": 0.4161317050457001,
"beginner": 0.24682502448558807,
"expert": 0.33704328536987305
} |
4,810 | def envoi_email(request):
courrier = Courrier.objects.filter(mention=“ETUDE ET COMPTE RENDU”, is_active=True)
count_courrier = courrier.count()
if request.method == ‘POST’:
name = request.POST.get(‘name’)
email = request.POST.get(‘email’)
# phone = request.POST.get(‘phone’)
message = request.POST.get(‘message’)
form_d... | e55067e006da470122bb06c29b03d1d0 | {
"intermediate": 0.46213632822036743,
"beginner": 0.36508530378341675,
"expert": 0.17277838289737701
} |
4,811 | hi | a21915e56c28b89c6f4e1a8060f8037e | {
"intermediate": 0.3246487081050873,
"beginner": 0.27135494351387024,
"expert": 0.40399640798568726
} |
4,812 | Can you write a novel for me base on prompts that I will give you | 61a14e66df2cb60904904e4d022b4a8b | {
"intermediate": 0.347474604845047,
"beginner": 0.3603985905647278,
"expert": 0.2921268045902252
} |
4,813 | pactl list sources show only source num and device name | 171ea305bb4a80f6efd14b2f46a8628d | {
"intermediate": 0.34464341402053833,
"beginner": 0.21274928748607635,
"expert": 0.4426073133945465
} |
4,814 | import shutil
import re
import time
from pathlib import Path
from openai_helper import openai, generate_description
from video_creation import create_final_clip
from moviepy.editor import VideoFileClip
# Set the directory For Ready To Edit Videos
folder_path = Path('E:/SMART AI BOTS/Selected')
# Initialize counter... | 5a178cd337b071a9ce920187c1fea8fd | {
"intermediate": 0.3578941226005554,
"beginner": 0.5085275173187256,
"expert": 0.13357827067375183
} |
4,815 | you did this code for me:
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
driver = webdriver.Chrome(‘path/to/chromedriver’)
driver.get(‘https://example.com’) # Replace ... | b341eb970c04b5cceac40403cff1a7e5 | {
"intermediate": 0.5892264246940613,
"beginner": 0.19835081696510315,
"expert": 0.21242272853851318
} |
4,816 | in vue3 script setup style, how to call parent method from a child ? | 62a3055cd1f2071c903f199245743707 | {
"intermediate": 0.4633975327014923,
"beginner": 0.31488746404647827,
"expert": 0.22171497344970703
} |
4,817 | Hi, Let’s say I got a 6x8 grid of 48 squares starting from 0 to 47. In this Grid, the 7th one is marked as GO and the 40th one is marked as START. The grids positioned at numbers 8 to 11, 16 to 19 , 13 , 23, 30,34 to 37 are all filled with black to represent an obstacle or blocked. Based on this grid , I want you to wr... | dceb223cddf1bcd17b2741f90b76f3aa | {
"intermediate": 0.17325642704963684,
"beginner": 0.0746946781873703,
"expert": 0.752048909664154
} |
4,818 | // ゲームに関連する変数と定数を設定
const canvas = document.getElementById('game-board');
const ctx = canvas.getContext('2d');
const blockSize = 50;
const gridWidth = 8;
const gridHeight = 16;
const colors = ['red', 'blue', 'green', 'yellow', 'purple'];
let gameGrid;
let currentPair;
let score;
let chainCount;
let paused;
let lastTim... | 097e3390831def5086ae3cc8b7084835 | {
"intermediate": 0.26935380697250366,
"beginner": 0.452438622713089,
"expert": 0.27820757031440735
} |
4,819 | Data communication networks adopt a very interesting strategy to transmit a flow of information from one point to another. Due to possible losses that occur during transmission, this information is fragmented into data packets, so that each packet carries part of the information and also an identification number. As th... | 6fabf5ea641fb753d77fe5c2e1190795 | {
"intermediate": 0.3965737521648407,
"beginner": 0.33049020171165466,
"expert": 0.272936075925827
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.