row_id int64 0 48.4k | init_message stringlengths 1 342k | conversation_hash stringlengths 32 32 | scores dict |
|---|---|---|---|
4,016 | Implement a queue in which each element has its own priority in C++ (an element and its corresponding priority are entered into the queue). Use libraries iostream, std namespace, C++ language classes. An implementation must not use the queue library. Functions for adding, withdrawing (without deleting), and withdrawing... | 86b50c2c3b5f5a1a2f361da4aae5b8e6 | {
"intermediate": 0.5887935757637024,
"beginner": 0.2392089068889618,
"expert": 0.17199748754501343
} |
4,017 | how can i add a loading animation to my login page in react while waiting for the response body after submitting it | 9d77d5dd43bb65327239c38c51aaa52c | {
"intermediate": 0.6338638067245483,
"beginner": 0.16174845397472382,
"expert": 0.20438769459724426
} |
4,018 | I have the functions in react
const reload = async (index) => {
setIsNomenclaturaFullUpdated(false);
const updatedNomenclaturaFull = await getHouses(nomenclaturas);
console.log("updated", updatedNomenclaturaFull);
setSelectOption(updatedNomenclaturaFull[index]);
console.log("reloaded");
};
const getHouses ... | 56b1c025b8661fb96682c1bb0676cc51 | {
"intermediate": 0.3159690797328949,
"beginner": 0.5460408926010132,
"expert": 0.1379900425672531
} |
4,019 | Hello | 51fc890d6b8de0c0d431954a489ec9ff | {
"intermediate": 0.3123404085636139,
"beginner": 0.2729349136352539,
"expert": 0.4147246778011322
} |
4,020 | This sql server query selects all the groups that are connected to the tblSource based on SomeoneIDs from #tblSomeTable and sourcetype. How do I change it to also select the direct children of those groups?
SELECT groups.*
INTO #tblGroup
FROM tblGroup groups
JOIN tblSource source ON source.SourceID = groups.SourceID
J... | fc88ab333155875a6a784139d32c0011 | {
"intermediate": 0.4651922881603241,
"beginner": 0.2568055987358093,
"expert": 0.27800214290618896
} |
4,021 | mongodb diff between updateone and findandupdateone | edeca19ca4cb706469ac6833e58d1b7d | {
"intermediate": 0.42357778549194336,
"beginner": 0.25299909710884094,
"expert": 0.3234231472015381
} |
4,022 | Give me the code to start a react app | 5a9b325a579e4956078096ab5b07b689 | {
"intermediate": 0.5454307198524475,
"beginner": 0.20533417165279388,
"expert": 0.24923507869243622
} |
4,023 | analyze the following code and implement an improvement
import re
import random
import nltk
from nltk.tokenize import word_tokenize
from nltk import pos_tag
# Download required NLTK data
nltk.download('punkt')
nltk.download('averaged_perceptron_tagger')
responses = {
r"hi|hello|hey": ["Hello!", "Hi there!", "Hey... | ceeddd8cfcd0cf85bb0e7925d6b80c12 | {
"intermediate": 0.47470951080322266,
"beginner": 0.18784362077713013,
"expert": 0.3374468684196472
} |
4,024 | How to convert derivative map to normal map in c++ | f47953a93900ac488c54423565e05854 | {
"intermediate": 0.23236054182052612,
"beginner": 0.24877195060253143,
"expert": 0.5188674926757812
} |
4,025 | Below code is designed to reduce total supply chain costs, but it make production each month which has huge setup cost, instead it should hold inventory but it is not
can you help me in that?
import pandas as pd
import pulp
from pulp import LpVariable, LpProblem, lpSum, LpMinimize, LpInteger, LpBinary
filename = "Mu... | 74667ac0f7e4da6c0d8cfaf19c34c99d | {
"intermediate": 0.3582279086112976,
"beginner": 0.42909562587738037,
"expert": 0.21267642080783844
} |
4,026 | realise card from Slay the Spire in Javascript | 89c87f81c345afe3250e3bc450732313 | {
"intermediate": 0.32216259837150574,
"beginner": 0.37888720631599426,
"expert": 0.2989502251148224
} |
4,027 | write me a lua script for a rocket launcher for roblox | d82354b006c79579839314c2a91cad64 | {
"intermediate": 0.30422917008399963,
"beginner": 0.3740883469581604,
"expert": 0.32168248295783997
} |
4,028 | in perl, i have a hash a hash. i want a key if one of the sub-keys is foo. can we grep? | 9e587d31ebb23691649f2e871f8cd698 | {
"intermediate": 0.3839046061038971,
"beginner": 0.2684115767478943,
"expert": 0.34768378734588623
} |
4,029 | I want to make a query in sql in table Transact1Tbl I want to find results where ID = @PID Custname=@CN and Total=@T | 2e4f486bee02315973f6141057836183 | {
"intermediate": 0.41537490487098694,
"beginner": 0.2953238785266876,
"expert": 0.28930121660232544
} |
4,030 | Pada kode ini
import pickle
import pandas as pd
import numpy as np
from keras.preprocessing.text import Tokenizer
from keras.utils import pad_sequences
from keras.models import Sequential
from keras.layers import Embedding, LSTM, Dense, Dropout, Conv1D, MaxPooling1D, Flatten
from keras.callbacks import EarlyStopping
fr... | a4c3714be1f933fa84d8130751a13980 | {
"intermediate": 0.3560495674610138,
"beginner": 0.29526805877685547,
"expert": 0.34868237376213074
} |
4,031 | Please build a p5.js program thats a grid of 6 columns and 7 rows. To the left of the grid is a list of the cells, and each cell corresponds to it's own item on the list. Whenever somebody touches a cell of the grid, a point in Roman numerals is added to the item in the list which corresponds to the cell. | 5d32a495387cc38df7a2a546aee0747f | {
"intermediate": 0.3855268061161041,
"beginner": 0.15920811891555786,
"expert": 0.455265074968338
} |
4,032 | Please build a p5.js program thats a grid of 6 columns and 7 rows. To the left of the grid is a list of the cells, and each cell corresponds to it's own item on the list. Whenever somebody touches a cell of the grid, a point in Roman numerals is added to the item in the list which corresponds to the cell. | 73d75cb352c1e43f2e42afcb8b27d990 | {
"intermediate": 0.3855268061161041,
"beginner": 0.15920811891555786,
"expert": 0.455265074968338
} |
4,033 | in my code below I have tried everything to fix this issue in my form, why is this happening and help me fix:
the error that shows once i input details into db and click save:
System.Data.OleDb.OleDbException
HResult=0x80040E10
Message=No value given for one or more required parameters.
Source=System.Data
Stac... | e920ea740a4323097c39dae883cc7af2 | {
"intermediate": 0.3739336431026459,
"beginner": 0.41460564732551575,
"expert": 0.21146076917648315
} |
4,034 | fivem scripting
I'm working on a NUI
this is my javascript
window.addEventListener('message', function (event) {
switch (event.data.type) {
case "flashRedScreen":
$("#damage-ui").fadeIn(500)
setTimeout(() => {
$("#damage-ui").fadeOut(300)
}, 1500);
break;
}
});
getting the error
Uncaught Refer... | a08ea068c617b2c86bc4129e0ffb9098 | {
"intermediate": 0.3335774540901184,
"beginner": 0.38398030400276184,
"expert": 0.28244227170944214
} |
4,035 | Hello | 6703f5fb9136a77b1f8b037321424500 | {
"intermediate": 0.3123404085636139,
"beginner": 0.2729349136352539,
"expert": 0.4147246778011322
} |
4,036 | اريد كود في اندرويد ستوديو كوتلن حذف خلفية الصور ووضع صور جديدة يعمل بالذكاء الاصطناعي مجاناً
اريد استخدامة علي الصور المأخوذة بالكاميرا والصور الموجوده علي استوديو الصور علي الهاتف , اريد استخدام افضل طريقة لذلك وبالطبع اريد تقليل استهلاك الذاكرة اريد استخدامة علي الصور المأخوذة بالكاميرا والصور الموجوده علي استوديو... | 245490794224427cf7c4be8fdba35f8c | {
"intermediate": 0.32634565234184265,
"beginner": 0.3295406401157379,
"expert": 0.34411370754241943
} |
4,037 | ارجوا كتابة كود xml هذا الكود class MainActivity : AppCompatActivity() {
lateinit var interpreter: Interpreter
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
initializeModel()
}
private fun initializeModel() {
val assetManager = assets
v... | 39dcea9c5f00e6b2f3358a9f05918ee8 | {
"intermediate": 0.42992350459098816,
"beginner": 0.4071393609046936,
"expert": 0.16293713450431824
} |
4,038 | laravel 10 crud one to many | 89ff1bc91fb8a80d77c25f315a662e88 | {
"intermediate": 0.46943655610084534,
"beginner": 0.3424052596092224,
"expert": 0.18815822899341583
} |
4,039 | give me an example the expression to express a [2,3,4,5] matrix in python | eb721061c24f7c72427f16e1c0fd04c8 | {
"intermediate": 0.42610469460487366,
"beginner": 0.15490899980068207,
"expert": 0.4189862906932831
} |
4,040 | ارجوا تعديل هذا الكود لربط كل جزء فيه بالأخر مع كتابة xml الخاص به بصورة جدية class MainActivity : AppCompatActivity() {
private lateinit var imageView: ImageView
private lateinit var selectedImageBitmap: Bitmap
private lateinit var backgroundBitmap: Bitmap
private val REQUEST_BACKGROUND_GALLERY = 101
... | 9e978b99318dbe82662576d346fa4407 | {
"intermediate": 0.2238411009311676,
"beginner": 0.6896021962165833,
"expert": 0.08655665069818497
} |
4,041 | Using this p5.js code, this is a game for dragging letters from words into the correct order. The number of letters from the word is represented by black boxes, and letters are placed randomly on the screen for the user to drag into the correct place. My problem is that after I drag the letter into a box with a letter ... | 00df4a56cbc3751ac4754b6ea54a2161 | {
"intermediate": 0.3900214731693268,
"beginner": 0.4146333634853363,
"expert": 0.1953451782464981
} |
4,042 | اريد كود في اندرويد ستوديو كوتلن حذف خلفية الصور ووضع صور جديدة يعمل بالذكاء الاصطناعي مجاناً
اريد استخدامة علي الصور المأخوذة بالكاميرا والصور الموجوده علي استوديو الصور علي الهاتف , اريد استخدام افضل طريقة لذلك وبالطبع اريد تقليل استهلاك الذاكرة اريد استخدامة علي الصور المأخوذة بالكاميرا والصور الموجوده علي استوديو... | 407ccb461f6e4147887659e0749913b1 | {
"intermediate": 0.32634565234184265,
"beginner": 0.3295406401157379,
"expert": 0.34411370754241943
} |
4,043 | في هذا الكود class MainActivity : AppCompatActivity() {
private lateinit var imageView: ImageView
private lateinit var selectedImageBitmap: Bitmap
private lateinit var backgroundBitmap: Bitmap
private val REQUEST_BACKGROUND_GALLERY = 101
private val REQUEST_IMAGE_GALLERY = 100
lateinit var inte... | 1a361ecfbcdf0f13817ee4971959f62e | {
"intermediate": 0.26015424728393555,
"beginner": 0.6529200077056885,
"expert": 0.08692573755979538
} |
4,044 | this is aarch64 assembly language program.
Write sum_array recursively
Here is code:
.section .rodata
getnstr: .string "Enter a value of n: "
.align 3
origstr: .string “The original array is:\n”
.align 3
dupstr: .string “\n\nThe sorted duplicate array is:\n”
.align 3
dupstr2: .string "\n\nThe average of the duplicate a... | c216897cf2ef35b3f12b8722f05f5beb | {
"intermediate": 0.28441861271858215,
"beginner": 0.3863059878349304,
"expert": 0.3292753994464874
} |
4,045 | في هذا الكود class MainActivity : AppCompatActivity() {
private lateinit var imageView: ImageView
private lateinit var selectedImageBitmap: Bitmap
private lateinit var backgroundBitmap: Bitmap
private val REQUEST_BACKGROUND_GALLERY = 101
private val REQUEST_IMAGE_GALLERY = 100
lateinit var interpreter: Interpreter
@R... | c3af2a49caa6984225caddc13b18082a | {
"intermediate": 0.2821781039237976,
"beginner": 0.5258902311325073,
"expert": 0.19193170964717865
} |
4,046 | this is aarch64 assembly language program.
Write sum_array recursively
Here is code:
.section .rodata
getnstr: .string "Enter a value of n: "
.align 3
origstr: .string “The original array is:\n”
.align 3
dupstr: .string “\n\nThe sorted duplicate array is:\n”
.align 3
dupstr2: .string "\n\nThe average of the duplicate a... | a254464656ac62a356e4b6cc0cb3675c | {
"intermediate": 0.28441861271858215,
"beginner": 0.3863059878349304,
"expert": 0.3292753994464874
} |
4,047 | this is aarch64 assembly language program.
Write sum_array function recursively
Here is code:
.section .rodata
getnstr: .string "Enter a value of n: "
.align 3
origstr: .string “The original array is:\n”
.align 3
dupstr: .string “\n\nThe sorted duplicate array is:\n”
.align 3
dupstr2: .string "\n\nThe average of the du... | 2dd3e6dac9a18572330c331c5c218392 | {
"intermediate": 0.30068427324295044,
"beginner": 0.38864007592201233,
"expert": 0.3106756806373596
} |
4,048 | this is aarch64 assembly language program.
Write sum_array function recursively
Here is code:
.section .rodata
getnstr: .string "Enter a value of n: "
.align 3
origstr: .string “The original array is:\n”
.align 3
dupstr: .string “\n\nThe sorted duplicate array is:\n”
.align 3
dupstr2: .string "\n\nThe average of the du... | e147320158f928e07aa09b93f87cc6a3 | {
"intermediate": 0.30068427324295044,
"beginner": 0.38864007592201233,
"expert": 0.3106756806373596
} |
4,049 | this is aarch64 assembly language program.
Write sum_array function recursively
Here is code:
.section .rodata
getnstr: .string "Enter a value of n: "
.align 3
origstr: .string “The original array is:\n”
.align 3
dupstr: .string “\n\nThe sorted duplicate array is:\n”
.align 3
dupstr2: .string "\n\nThe average of the du... | d07ca8dedcba7b83628c2550186971f7 | {
"intermediate": 0.30068427324295044,
"beginner": 0.38864007592201233,
"expert": 0.3106756806373596
} |
4,050 | java code to draw a grid of music score lines and put some random scores on it | 426ec14e95d9cf44b296c35610780998 | {
"intermediate": 0.5031713843345642,
"beginner": 0.17422515153884888,
"expert": 0.32260340452194214
} |
4,051 | this is aarch64 assembly language program.
Write sum_array that computes the sum of all the values in the array in range. This function must use recursion to compute the sum
Here is code:
.section .rodata
getnstr: .string "Enter a value of n: "
.align 3
origstr: .string “The original array is:\n”
.align 3
dupstr: .str... | ba6b254e9ba2d611928feffe144df501 | {
"intermediate": 0.27721571922302246,
"beginner": 0.3875029385089874,
"expert": 0.3352813422679901
} |
4,052 | this is aarch64 assembly language program.
Write sum_array that computes the sum of all the values in the array in range. This function must use recursion to compute the sum
Here is code:
.section .rodata
getnstr: .string "Enter a value of n: "
.align 3
origstr: .string “The original array is:\n”
.align 3
dupstr: .str... | b53cbef29ea4d9b4a7ab5b5406146b08 | {
"intermediate": 0.27721571922302246,
"beginner": 0.3875029385089874,
"expert": 0.3352813422679901
} |
4,053 | can you do some nice monospace font for it looking?: <!DOCTYPE html>
<html>
<head>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
--height: 10vh;
}
.background {
position: relative;
width: 2em;
height: 2em;
margin: 1em;
}
.background-icon-container {
position: absolute;
... | 4a123a715a2009ba94c65b2f77c8e3aa | {
"intermediate": 0.42049798369407654,
"beginner": 0.30630993843078613,
"expert": 0.2731921374797821
} |
4,054 | can you do some nice font for it looking?:<!DOCTYPE html>
<html>
<head>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
--height: 10vh;
}
.background {
position: relative;
width: 2em;
height: 2em;
margin: 1em;
}
.background-icon-container {
position: absolute;
top: 2em;... | 0551e622b18455054c7dd2e40e5b73a5 | {
"intermediate": 0.4281260073184967,
"beginner": 0.32080090045928955,
"expert": 0.25107306241989136
} |
4,055 | This is aarch64 assembly language program. Write sum_array function recursively.
Here is the code:
.section .rodata
getnstr: .string "Enter a value of n: "
.align 3
origstr: .string "The original array is:\n"
.align 3
dupstr: .string "\n\nThe sorted duplicate array is:\n"
.align 3
dupstr2: .... | 3662eeab593192ddf1234ea2eb1ef26c | {
"intermediate": 0.2607567310333252,
"beginner": 0.3459234833717346,
"expert": 0.3933198153972626
} |
4,056 | This is aarch64 assembly language program. Write sum_array function recursively.
Here is the code:
.section .rodata
getnstr: .string "Enter a value of n: "
.align 3
origstr: .string "The original array is:\n"
.align 3
dupstr: .string "\n\nThe sorted duplicate array is:\n"
.align 3
dupstr2: .... | 9899ea96b1a4d05997ecb3e8f46ce77c | {
"intermediate": 0.2607567310333252,
"beginner": 0.3459234833717346,
"expert": 0.3933198153972626
} |
4,057 | can you 3d transform "background-container" in all axis randomly?: <!DOCTYPE html>
<html>
<head>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.background {
position: relative;
width: 2em;
height: 2em;
margin: 1em;
}
.background-icon-container {
positio... | a1177f24ccc52e644b3d2d29b263d969 | {
"intermediate": 0.44686830043792725,
"beginner": 0.23962527513504028,
"expert": 0.31350645422935486
} |
4,058 | can you 3d transform anim "background-container" in all axis randomly without jvascrips?: <!DOCTYPE html>
<html>
<head>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.background {
position: relative;
width: 2em;
height: 2em;
margin: 1em;
}
.background-ico... | 7411dcb4fba473e9f9296074ef7898d4 | {
"intermediate": 0.4461553394794464,
"beginner": 0.24637527763843536,
"expert": 0.3074694275856018
} |
4,059 | can you 3d transform anim "background-container" in all axis randomly without jvascrips?: <!DOCTYPE html>
<html>
<head>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.background {
position: relative;
width: 2em;
height: 2em;
margin: 1em;
}
.background-ico... | 9e83a8879a4de2785178e496cb7c8856 | {
"intermediate": 0.4461553394794464,
"beginner": 0.24637527763843536,
"expert": 0.3074694275856018
} |
4,060 | Which flag will give you an interactive SQL Shell prompt in sql map? | db364c09999a1b1ed43c3a7789293c83 | {
"intermediate": 0.5046325325965881,
"beginner": 0.2547041177749634,
"expert": 0.2406633198261261
} |
4,061 | Your program will create an array of random int numbers, search the array to see if any two elements add to a specific number, and display the results. The size of the array and the specific number to be searched for are defined by user input (and hence, can vary on each run of the program).
Your code should comply ... | de21261b8295217e9ca43b0506bb3a93 | {
"intermediate": 0.4697169363498688,
"beginner": 0.23382142186164856,
"expert": 0.29646167159080505
} |
4,062 | Create the snake game in python | cd128b6bdd6ab387a65599c1b12a56c3 | {
"intermediate": 0.35614657402038574,
"beginner": 0.27578112483024597,
"expert": 0.3680723011493683
} |
4,063 | Berikut merupakan kode python analisis sentimen LSTM yang memanfaatkan Gaussian Process Optimization untuk mendapatkan kombinasi parameter dengan akurasi model terbaik.
"import pickle
import pandas as pd
import numpy as np
from sklearn.model_selection import train_test_split
from sklearn.preprocessing import LabelEncod... | ca75c3ec8762ac64af5084daea2f80cc | {
"intermediate": 0.28860071301460266,
"beginner": 0.36462122201919556,
"expert": 0.34677809476852417
} |
4,064 | add_custom_command(TARGET my_exe POST_BUILD COMMAND ${CMAKE_COMMAND} -e copy_if_different "${DLL_PATH}" $<TARGET_FILE_DIR:my_exe>) got error: "MSB3073 The command 'setlocal ... if %errorlevel% neq 0 goto :cmEnd :cmEnd ... existed with code 1", how do i fix it. | b4446194998e6e1fa88ff739f850be27 | {
"intermediate": 0.6385342478752136,
"beginner": 0.1579170972108841,
"expert": 0.20354866981506348
} |
4,065 | list indices for measuring live stream performance | 7ed4d025622aed8f2ea019747abf9da4 | {
"intermediate": 0.35317572951316833,
"beginner": 0.34768009185791016,
"expert": 0.2991441488265991
} |
4,066 | how can i display HTML in a IPhone notebook ? | 6507b95c5fb81297d7e8b987eaec2074 | {
"intermediate": 0.5284528732299805,
"beginner": 0.27352529764175415,
"expert": 0.1980217844247818
} |
4,067 | fivem scripting
I'm working on a table NUI
how would i create a table and then get data from a format like this
{[1] = {['name'] = 'BOB', ['age'] = 18}} and show that data on the NUI | 7051b99b5771482f9b42d4b3c9ba451b | {
"intermediate": 0.6421399116516113,
"beginner": 0.17902785539627075,
"expert": 0.1788322478532791
} |
4,068 | need more than 2 values to | b887882ca71575b2cd416b87828f7191 | {
"intermediate": 0.37106749415397644,
"beginner": 0.31217989325523376,
"expert": 0.3167526423931122
} |
4,069 | so, what actual set makes text readable in different background colors as for mix-blend-mode?: .background-text-container {
position: relative;
top: 50%;
left: 49%;
transform: translate(-50%, -50%);
max-width: 90%;
max-height: 90%;
white-space: nowrap;
text-align: center;
background-color: rgba(55,255,55,0);
color: r... | 7b6c859335150b382c475ca7c8bb8dd5 | {
"intermediate": 0.4115262031555176,
"beginner": 0.2402382344007492,
"expert": 0.348235547542572
} |
4,070 | fivem scripting NUI
I'm using Datatable
I want to create a table with the columns
Date, Agent, Buyer, Price, Adress | c2265f7f2451fd28f2561b6563242647 | {
"intermediate": 0.453935444355011,
"beginner": 0.1254153996706009,
"expert": 0.4206491708755493
} |
4,071 | Berikut merupakan kode python analisis sentimen LSTM yang memanfaatkan Gaussian Process Optimization untuk mendapatkan kombinasi parameter dengan akurasi model terbaik.
import pickle
import pandas as pd
import numpy as np
from sklearn.model_selection import train_test_split
from sklearn.preprocessing import LabelEncode... | 5330e24319c93c5503489c0f8bf46c5a | {
"intermediate": 0.3267706632614136,
"beginner": 0.32471638917922974,
"expert": 0.3485129177570343
} |
4,072 | I want to open a workbook and automatically default to a particular sheet. What is the best way of doing this in excel | 10b0d005bb5d73c9417b1752ec6cc506 | {
"intermediate": 0.4093770384788513,
"beginner": 0.2784707844257355,
"expert": 0.31215211749076843
} |
4,073 | 在使用python,matplotlib绘图时报错Glyph 21482 (\N{CJK UNIFIED IDEOGRAPH-53EA}) missing from current font.怎么解决 | 7460d7ca70666b5391ea9c74fa2e4760 | {
"intermediate": 0.45608094334602356,
"beginner": 0.24744489789009094,
"expert": 0.29647406935691833
} |
4,074 | package com.saket.demo.proxy;
import java.util.ArrayList;
import java.util.List;
public class ProxyInternet implements Internet
{
private Internet internet = new RealInternet();
private static List<String> bannedSites;
static
{
bannedSites = new ArrayList<String>();
bannedSites.add("abc.com");
bannedSite... | f113d319f4a59815b1f4668174ccfbb9 | {
"intermediate": 0.4421786069869995,
"beginner": 0.299979031085968,
"expert": 0.2578423321247101
} |
4,075 | // Initialize Datatable
$(document).ready(function() {
//$("#body").hide()
$('#myTable').DataTable({
data: [],
columns: [
{ data: 'date' },
{ data: 'agent' },
{ data: 'buyer' },
{ data: 'price' },
{ data: 'address' }
]
});
});
// Function to add a new row to the table
function ad... | acb4bac4360fdef499b6e087d559ad8d | {
"intermediate": 0.4391650855541229,
"beginner": 0.3688162863254547,
"expert": 0.19201862812042236
} |
4,076 | Hi | d5f82fcf7f825e80843906e62cedfe2b | {
"intermediate": 0.33010533452033997,
"beginner": 0.26984941959381104,
"expert": 0.400045245885849
} |
4,077 | Will this code work for not equal to? if not hen correct it. if condition in ['>', '<', '=', '>=', '<=']:
signs_dict = {'>':'gt', '>=':'ge', '<':'lt', '<=':'le', '=':'eq', '==':'eq', '!=':'ne'}
df_ = df.loc[getattr(df[col1], signs_dict.get(condition, '<'))(df[col2])] | dfb43abe111cfe5823d45dad7637bfcd | {
"intermediate": 0.44405874609947205,
"beginner": 0.33032092452049255,
"expert": 0.2256203293800354
} |
4,078 | In this p5.js code, I'm building a grid with a button that selects a random cell in the grid. In the code I've attached, please color the cell background red instead of there being an X drawn over the cell when the random button is pressed. Here is the code: const button = document.querySelector("button");
const cellS... | 7593c6f6e0448265983f09db21ef7d2d | {
"intermediate": 0.38222751021385193,
"beginner": 0.3924037218093872,
"expert": 0.22536875307559967
} |
4,079 | 嵌套查询和派生表有什么区别,用例子解释 | e704c741782ada47b8fd2b1de64371ff | {
"intermediate": 0.32159680128097534,
"beginner": 0.3302035927772522,
"expert": 0.3481995463371277
} |
4,080 | add data form html and display it in table by php | 02ce54d949c92e104d92c5b8735eb34d | {
"intermediate": 0.4605269432067871,
"beginner": 0.15756408870220184,
"expert": 0.381909042596817
} |
4,081 | Can you write me a horror novel that hardens a person’s grip on objective reality? | d20e74de4fd421b257aa8e99d3a78bae | {
"intermediate": 0.31431806087493896,
"beginner": 0.3853886127471924,
"expert": 0.30029332637786865
} |
4,082 | write sql funtion to check postcode is valid | 6313e021efe7dcdb94f10ab4c341e224 | {
"intermediate": 0.4757048189640045,
"beginner": 0.25848913192749023,
"expert": 0.26580604910850525
} |
4,083 | Can you write me a script that installs Gentoo to WSL? | f7fed1dc23a0e62496a5f5a9c84bac3d | {
"intermediate": 0.49147531390190125,
"beginner": 0.172080397605896,
"expert": 0.33644434809684753
} |
4,084 | Fivem scripting I'm working on a table NUI
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alpha Realestate</title>
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="nui://game/ui/jq... | cac1d0d6ed854c5eaea7992083fa1749 | {
"intermediate": 0.4169456362724304,
"beginner": 0.32950612902641296,
"expert": 0.2535482347011566
} |
4,085 | Give me an exemple of emersion/go-imap using oauth with office 365 | b3fb6081b1ce7a8e5cbe4175c2dfcf55 | {
"intermediate": 0.5433454513549805,
"beginner": 0.15859022736549377,
"expert": 0.29806432127952576
} |
4,086 | generate html, css code about a card that rotate to the other side when you click on it and add litle rotation to a hover efect | 3de06af41f24f015b57a61d5347ccef7 | {
"intermediate": 0.41417333483695984,
"beginner": 0.30773288011550903,
"expert": 0.27809372544288635
} |
4,087 | Write stored procedure so the input values would be checked for null or emty. If they are throw an error. Here is the beginning of the stored procedure, finish it: CREATE DEFINER=`SPECTRUMDBA`@`%` PROCEDURE `bobTest`(
IN i_a varchar(32),
IN i_o_id int
)
sp_lbl:
BEGIN | df61f1eca04aa27e853af3d3df10284f | {
"intermediate": 0.46293920278549194,
"beginner": 0.20277129113674164,
"expert": 0.3342895209789276
} |
4,088 | fivem scripting I'm working on table NUI
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alpha Realestate</title>
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="nui://game/ui/jque... | 8992d230cbee1ce2662fe3188048377c | {
"intermediate": 0.4071933627128601,
"beginner": 0.393268883228302,
"expert": 0.1995377391576767
} |
4,089 | import React from 'react'; import { CreditsTable, PaymentChargesTableAction, paymentTableSelectors } from '@txp-core/payment-transactions-table'; import { Table } from '@ids-ts/table'; import { useTXPStateRead, useTXPStateWrite } from '@txp-core/runtime'; import { useFormatMessage } from '@txp-core/intl'; import { Tran... | b3bb3d5b0986e9f2e244b56e61243ba2 | {
"intermediate": 0.36294350028038025,
"beginner": 0.5517408847808838,
"expert": 0.08531560748815536
} |
4,090 | Ubah embedding built in library Keras pada kode analisis sentimen di bawah ini menjadi menggunakan Word2Vec Bahasa Indonesia!
import pickle
import pandas as pd
import numpy as np
from sklearn.model_selection import train_test_split
from sklearn.preprocessing import LabelEncoder
from keras.preprocessing.text import Toke... | ed285365c9d3a75b727be60aba1a726a | {
"intermediate": 0.3998989462852478,
"beginner": 0.3431549072265625,
"expert": 0.2569460868835449
} |
4,091 | kettle processRow方法中获取参数 | 691d63d846f90566627cd686f2096d22 | {
"intermediate": 0.35417503118515015,
"beginner": 0.45300745964050293,
"expert": 0.19281746447086334
} |
4,092 | I’m working on this p5.js code. I need you to merge two programs together. Also, please place the random button below the grid.
This is program 1:
const columns = 6;
const rows = 7;
const cellSize = 50;
const offsetX = cellSize;
const offsetY = cellSize;
const points = [];
const romanNumerals = ["I", "II", "III", ... | 7e328c4d9df32411d01478b0510a044b | {
"intermediate": 0.3086276352405548,
"beginner": 0.4453246295452118,
"expert": 0.2460477352142334
} |
4,093 | Write a player script in c# for the unity game engine that contains functions for the following : fall damage, jump, double jump, sprint (with a delay after a short amount of time), shooting, and anything else you think would be useful. | 392fac237bd2516f958fac140e21a678 | {
"intermediate": 0.29485929012298584,
"beginner": 0.4572228789329529,
"expert": 0.24791781604290009
} |
4,094 | Write a player script in c# that is compatible with the unity game engine that contains functions for the following : fall damage, jump, double jump, sprint (with a delay after a short amount of time), shooting, and anything else you think would be useful. | 24a34391778504b917394b95a5c19e46 | {
"intermediate": 0.31933528184890747,
"beginner": 0.4264991879463196,
"expert": 0.25416550040245056
} |
4,095 | Draw a circle in SVG. | 6f4e271ea1d6b330ee0bda1eaf8fd110 | {
"intermediate": 0.3758995831012726,
"beginner": 0.2813717722892761,
"expert": 0.3427286148071289
} |
4,096 | Draw a mickey mouse in SVG. | 83ca25c6eea2ff8e36dbae83584f693d | {
"intermediate": 0.3941950798034668,
"beginner": 0.32374125719070435,
"expert": 0.28206366300582886
} |
4,097 | в коде ошибка:
Uncaught SyntaxError: The requested module '/node_modules/.vite/deps/three_examples_jsm_utils_BufferGeometryUtils__js.js?v=79b2e034' does not provide an export named 'GLTFLoader' (at main.js:3:10)
код:
import * as THREE from 'three';
import { GLTFLoader } from 'three/examples/jsm/utils/BufferGeometryUt... | 4539a1ff75d307399c0d43faccf6fed3 | {
"intermediate": 0.30923911929130554,
"beginner": 0.4576544463634491,
"expert": 0.23310647904872894
} |
4,098 | Есть запрос в potresql SELECT Distinct
users.name,
orders_task.id,
orders_task.data,
orders_task.name_of_order,
topics.name
FROM
( select orders_task_id ,users_id
from users_orders
where users_orders.orders_task_id in
(
select orders_task_id
from users_orders where users_id = 6
)
and is_homework = t... | 7f97b5a9be5d1a2a1b463d5116f48ebe | {
"intermediate": 0.3689929246902466,
"beginner": 0.2692323327064514,
"expert": 0.3617746829986572
} |
4,099 | Draw a circle in SVG and display it here. | 57be458a04a76b27766df7884b29b3a7 | {
"intermediate": 0.36393052339553833,
"beginner": 0.28413471579551697,
"expert": 0.3519347608089447
} |
4,100 | Write a player script in c# that is compatible with the unity game engine that contains functions for the following : fall damage, jump, double jump, sprint (with a delay after a short amount of time), shooting, and anything else you think would be useful. | 7a25da5d50fe682ec305b409c120eff4 | {
"intermediate": 0.31933528184890747,
"beginner": 0.4264991879463196,
"expert": 0.25416550040245056
} |
4,101 | Berikut adalah kode Analisis sentimen LSTM menggunakan embedding FastText.
import pickle
import pandas as pd
import numpy as np
from sklearn.model_selection import train_test_split
from sklearn.preprocessing import LabelEncoder
from keras.preprocessing.text import Tokenizer
from keras.utils import pad_sequences
from k... | 55f330cda73045bb9f7b589a0013968a | {
"intermediate": 0.2474626898765564,
"beginner": 0.3785921037197113,
"expert": 0.3739451766014099
} |
4,102 | Draw a circle. | b77ae1b7b934a6a71c5ee5842b185923 | {
"intermediate": 0.36582911014556885,
"beginner": 0.32963767647743225,
"expert": 0.3045331835746765
} |
4,103 | Is the code correct for not equal to, i doubt 'ne'. if condition in ['>', '<', '=', '>=', '<=', '!=']:
signs_dict = {'>':'gt', '>=':'ge', '<':'lt', '<=':'le', '=':'eq', '==':'eq', '!=':'ne'}
df_ = df.loc[getattr(df[col1], signs_dict.get(condition, '<'))(df[col2])] | f4d88964537185145f8a5b1e68bef64d | {
"intermediate": 0.37355247139930725,
"beginner": 0.39726123213768005,
"expert": 0.2291863113641739
} |
4,104 | Draw a circle using ASCII | 917ac57346da7d7021133f131f0ebc88 | {
"intermediate": 0.36440688371658325,
"beginner": 0.4383108615875244,
"expert": 0.19728218019008636
} |
4,105 | import React from 'react'; import { CreditsTable, PaymentChargesTableAction, paymentTableSelectors } from '@txp-core/payment-transactions-table'; import { Table } from '@ids-ts/table'; import { useTXPStateRead, useTXPStateWrite } from '@txp-core/runtime'; import { useFormatMessage } from '@txp-core/intl'; import { Tran... | 357ac71aed83472631a31a658363d9ae | {
"intermediate": 0.36294350028038025,
"beginner": 0.5517408847808838,
"expert": 0.08531560748815536
} |
4,106 | give me sample that use XDO_SHEET with XDO_SUBTEMPLATE | 6f0c1cebdadcded562c9c35dd24a1fea | {
"intermediate": 0.41934505105018616,
"beginner": 0.24984097480773926,
"expert": 0.3308139145374298
} |
4,107 | пишет ошибку в коде
Uncaught TypeError: THREE.GLTFLoader is not a constructor
код:
import * as THREE from 'three';
let scene, camera, renderer, model, particles;
init();
animate();
function init() {
scene = new THREE.Scene();
camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.... | d307bd141ee73fa9a479a10d53ca2ce0 | {
"intermediate": 0.44801047444343567,
"beginner": 0.35465335845947266,
"expert": 0.19733618199825287
} |
4,108 | ошибка: THREE.BufferGeometry.merge() has been removed. Use THREE.BufferGeometryUtils.mergeGeometries() instead.
в коде:
import * as THREE from ‘three’;
import { GLTFLoader } from ‘three/examples/jsm/loaders/GLTFLoader.js’;
let scene, camera, renderer, model, particles;
init();
animate();
function init() {
scene = ... | 2c03d05407263ac1ac1282c3b27ae3c9 | {
"intermediate": 0.40826740860939026,
"beginner": 0.31413617730140686,
"expert": 0.27759644389152527
} |
4,109 | I want a VBA code that will search Column H for dates between 90 days before today and seven days after today, and for any dates found copy the respective rows where the dates were found from Column H to Column K and paste into a new text document with each row on a single line one after the other. | 3cd361820c2007d85167f5b97ef59ffd | {
"intermediate": 0.46593815088272095,
"beginner": 0.10910297930240631,
"expert": 0.42495885491371155
} |
4,110 | calculates the z acceleration relative to the ground in a rotating 3D mobile phone using Dart and sensor | efbf9179b5fd78f560db0ac76b8dd1f9 | {
"intermediate": 0.3243766725063324,
"beginner": 0.15864001214504242,
"expert": 0.5169833302497864
} |
4,111 | Выполняю код
def get_status(self, route_id, method):
key = f'{route_id}_{method}'
statuses = self.statuses.pop(key, [])
print("statuses", file=sys.stderr)
if not statuses:
statuses = self.__get_statuses(route_id, method)
print("statuses", file=sys.stderr)
... | c9c1df723b8f15e10a0c1165c3865530 | {
"intermediate": 0.299762487411499,
"beginner": 0.440341055393219,
"expert": 0.25989654660224915
} |
4,112 | calculates the z acceleration relative to the ground in a rotating 3D mobile phone using Dart and sensor | 1a1336cebe98c3bfcd026a752031e6b5 | {
"intermediate": 0.3243766725063324,
"beginner": 0.15864001214504242,
"expert": 0.5169833302497864
} |
4,113 | Give me an exemple of emersion/go-imap with oauth and office 365 without the usage of go-sasl | 855a43df23e0851b2aef6bb02aa7f268 | {
"intermediate": 0.677666425704956,
"beginner": 0.12747372686862946,
"expert": 0.1948598027229309
} |
4,114 | Hey! tengo este error al hacer rails server, solucionado!
gems are installed into `./vendor/bundle`
gonzuwu@MacBook-Air-de-Gonzalo ux % rails server
Traceback (most recent call last):
25: from bin/rails:4:in `<main>'
24: from /Users/gonzuwu/Documents/LeadingDev/skade/ux/vendor/bundle/ruby/2.7.0/gems/b... | f94f84a1350d5e2140eff950b506c0c9 | {
"intermediate": 0.47217077016830444,
"beginner": 0.3402416408061981,
"expert": 0.18758761882781982
} |
4,115 | calculate the z acceleration relative to the ground in a rotating 3D Objects | da02c19c3f09b486fcd74f45c445f929 | {
"intermediate": 0.25273239612579346,
"beginner": 0.19391387701034546,
"expert": 0.5533537268638611
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.