row_id int64 0 48.4k | init_message stringlengths 1 342k | conversation_hash stringlengths 32 32 | scores dict |
|---|---|---|---|
3,815 | c++ u_char max bits | 6d27b8e0b97714cd77d9a737b4a43000 | {
"intermediate": 0.27564674615859985,
"beginner": 0.43836572766304016,
"expert": 0.28598752617836
} |
3,816 | In Perl, last takes a label or an expr. if it takes an expr, how does that work? | 94627c4e34e5e6a030d2b0d63f089736 | {
"intermediate": 0.39561015367507935,
"beginner": 0.36539122462272644,
"expert": 0.23899860680103302
} |
3,817 | last LABEL
last EXPR
last
The last command is like the break statement in C (as used in loops); it immediately exits the loop in question. If the LABEL is omitted, the command refers to the innermost enclosing loop. The last EXPR form, available starting in Perl 5.18.0, allows a label name to be computed at run time, a... | f0187cd268f059b69e4ae5004c4e02b8 | {
"intermediate": 0.2652070224285126,
"beginner": 0.5366449952125549,
"expert": 0.1981479823589325
} |
3,818 | last LABEL
last EXPR
last
The last command is like the break statement in C (as used in loops); it immediately exits the loop in question. If the LABEL is omitted, the command refers to the innermost enclosing loop. The last EXPR form, available starting in Perl 5.18.0, allows a label name to be computed at run time, a... | c51ed2c199c7f4b081e6b3e547fa5357 | {
"intermediate": 0.261752724647522,
"beginner": 0.5478494167327881,
"expert": 0.19039791822433472
} |
3,819 | Can you use the same label name twice in the same Perl subroutine? | 055d7551c1f132f5c2b833e788f74d65 | {
"intermediate": 0.30804356932640076,
"beginner": 0.419729620218277,
"expert": 0.2722267806529999
} |
3,820 | Your task is to determine if the Spanish translation of an English sentence contains some translation errors and explain the errors, if any.
The source English sentence is delimited by triple backticks.
The Spanish translation is also delimited by triple backticks.
English sentence: | c711ecddf75bdf70c74b7646241fb1ba | {
"intermediate": 0.3618896007537842,
"beginner": 0.3315891921520233,
"expert": 0.3065212666988373
} |
3,821 | php fix bruh
Warning: Use of undefined constant name - assumed 'name' (this will throw an Error in a future version of PHP) in /storage/ssd4/325/18882325/public_html/my_websites/image_uploader/upload.php on line 12
Warning: Cannot modify header information - headers already sent by (output started at /storage/ssd4/325... | cf87c4c77ebb186436c717938aa4b32f | {
"intermediate": 0.3766988217830658,
"beginner": 0.30188530683517456,
"expert": 0.32141590118408203
} |
3,822 | Добавь Успадкування (наследование) и Шаблоны методов и классов
В этт код:
#include <iostream>
#include <fstream>
#include <exception>
#include <vector>
#include <string>
#include <cassert>
class FileException : public std::exception
{
virtual const char *what() const throw()
{
return "Помилка читання з... | 34f22f0b4ba9b30464825864604b4c17 | {
"intermediate": 0.3661386966705322,
"beginner": 0.5585511326789856,
"expert": 0.07531015574932098
} |
3,823 | how do I print out the table that I'm deleting from when I do a delete with a sql server query like this: DELETE FROM tblSomething? | 2f18034a3b5704f659a0af65cde775c1 | {
"intermediate": 0.6295741200447083,
"beginner": 0.16796858608722687,
"expert": 0.20245735347270966
} |
3,824 | The While loop gets its name from the way it works: While a condition is false, do some task. True or false? | bb1b0cdafb048329a7ce794bd793c099 | {
"intermediate": 0.1452145278453827,
"beginner": 0.49578621983528137,
"expert": 0.35899925231933594
} |
3,825 | почему не создается канвас?
import * as THREE from ‘three’;
let width = window.innerWidth;
let height = window.innerHeight;
//Scene
const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera(45, width, height);
scene.add(camera);
//Meshes
const sphereGeometry = new THREE.SphereGeometry(2, 64, 64);
... | be33d895d48b147cdf328ca5dedebf84 | {
"intermediate": 0.3990030586719513,
"beginner": 0.3928634226322174,
"expert": 0.2081335335969925
} |
3,826 | I want to perform a lab on investigating ssh and telnet communications in the client end. Guide me with all the required commands in detail on how to perform the experiment. | 1ff27007c330b40e7a6940accfb99417 | {
"intermediate": 0.3152192533016205,
"beginner": 0.23653718829154968,
"expert": 0.44824352860450745
} |
3,827 | javascript unroll 2d array | 844dda745ae9075e75cc1221c7598344 | {
"intermediate": 0.36623820662498474,
"beginner": 0.31102752685546875,
"expert": 0.32273420691490173
} |
3,828 | Can I have a different VBA code that does waht this code is supposed to do.
Unforntunately the code does not update values to column 11 when I enter a value in column1.
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Application.CalculationState = xlDone Then Exit Sub
If Target.Column = 1 Then
Application.E... | 6f0e4ff133cae380a31b392355a17945 | {
"intermediate": 0.6207972168922424,
"beginner": 0.24802716076374054,
"expert": 0.1311757117509842
} |
3,829 | why doesn't this code work on unity {public class BlockGenerator : MonoBehaviour
{
public GameObject[] blockPrefabs;
public float frequency = 0.5f;
public float amplitude = 0.5f;
void Start()
{
Terrain terrain = GetComponent<Terrain>();
float[,] heights = new float[terrain.terrainData.heightmapWidth,terrain.terrainDat... | bf6c3fa3357c9624809810391b4716f3 | {
"intermediate": 0.5129690170288086,
"beginner": 0.28006988763809204,
"expert": 0.20696111023426056
} |
3,830 | In spring boot, I have enabled h2 database. When I access the h2 database locally, I see databasechangelog table, where is that coming from and what is its purpose? | 5d2eccbc7d43639376afe523cdf194f9 | {
"intermediate": 0.4374887943267822,
"beginner": 0.22396999597549438,
"expert": 0.3385412395000458
} |
3,831 | Create a program that takes (at least) three command line arguments. The first two will be integers and the third will be a float.
On one line, separated by spaces, print the sum of the first two arguments, the product of the first and third arguments, the first argument modulo the second, and the integer quotient... | e42919a3c33eaac5f34a6a17a981b6bf | {
"intermediate": 0.3541770875453949,
"beginner": 0.335688978433609,
"expert": 0.3101339638233185
} |
3,832 | The following function:
void Menu::item::winAppendMenu(HMENU handle) {
wchar_t* buffer = NULL;
if (type == separator_type_id) {
AppendMenu(handle, MF_SEPARATOR, 0, NULL);
}
else if (type == vseparator_type_id) {
AppendMenu(handle, MF_MENUBREAK, 0, NULL);
}
else if (type == subme... | 74a0b1e9da51d03def2ef4c4b4acf7dc | {
"intermediate": 0.5187809467315674,
"beginner": 0.34197089076042175,
"expert": 0.13924814760684967
} |
3,833 | im getting strange error - im getting blank response when quering my database in room on android | 32e4d7ca03505ff024a122cdb92d713a | {
"intermediate": 0.3586679697036743,
"beginner": 0.42766010761260986,
"expert": 0.21367192268371582
} |
3,834 | powershell pull all url links from a web page | 2237f35f4f2dac2ba24fce7fa26b1f56 | {
"intermediate": 0.40354427695274353,
"beginner": 0.19540993869304657,
"expert": 0.40104570984840393
} |
3,835 | powershell pull all url links from a web page | fe709dcfa7e0e55a4338000f5f6c3c7c | {
"intermediate": 0.40354427695274353,
"beginner": 0.19540993869304657,
"expert": 0.40104570984840393
} |
3,836 | ما معني هذا الخطا No value passed for parameter 'message' | 95a84fc17d2bfb523f2f51949e417714 | {
"intermediate": 0.3250727653503418,
"beginner": 0.33828219771385193,
"expert": 0.3366449773311615
} |
3,837 | powershell command to connect to mfp and clear print queue | eb4519a216e368477776d714179e8950 | {
"intermediate": 0.5449298620223999,
"beginner": 0.14721250534057617,
"expert": 0.3078576326370239
} |
3,838 | static function sendNotification(EntityManagerInterFace $entityManager, ?string $title = null, ?string $message = null, ?string $link = null, ?array $specificUsersId = null, bool $verifySubscriptionValidity = false): ?array
{
$pushNotificationRepository = $entityManager->getRepository(PushNotification::class);
$now = n... | 706004a5a8d3b95371f1a5dd53d07756 | {
"intermediate": 0.27043163776397705,
"beginner": 0.46557387709617615,
"expert": 0.2639944851398468
} |
3,839 | make it like junior level of python programmer write this without changing the output or results, import sys
def main(args):
arg_one = int(args[1])
arg_two = int(args[2])
arg_three = float(args[3])
print(arg_one + arg_two, “{:.2f}”.format(arg_one * arg_three), arg_one % arg_two, int(arg_one / arg_three))
arg_one += ... | dae1511c70eac00fdde1dd2fc75299ab | {
"intermediate": 0.19908471405506134,
"beginner": 0.6692285537719727,
"expert": 0.1316867619752884
} |
3,840 | Create a program that takes one integer command line argument.
Ensure the argument is an integer, if not the program doesn't do anything. | da8e18ac51013179e359d07026f0588b | {
"intermediate": 0.4095665514469147,
"beginner": 0.1891845315694809,
"expert": 0.401248961687088
} |
3,841 | java code to detect all drives on the local computer, index all files , save this index on file and use it for search files to not search all files again, update the file by monitoring file changes on all drives | b2a3a8b5f91441afd03df1910a853550 | {
"intermediate": 0.588709831237793,
"beginner": 0.1178111881017685,
"expert": 0.29347899556159973
} |
3,842 | c++ char max value | 95f477b9819db9b56e540463941efa71 | {
"intermediate": 0.29868826270103455,
"beginner": 0.3784053921699524,
"expert": 0.3229062855243683
} |
3,843 | act as a python expert. | f6e4704a23cd5e451bcf17193bd11149 | {
"intermediate": 0.28574973344802856,
"beginner": 0.271436870098114,
"expert": 0.44281336665153503
} |
3,844 | Give me the code to use an encoder on Arduino. | cf6c985279d1be2fa4dfe0c0e479da98 | {
"intermediate": 0.5148411989212036,
"beginner": 0.11537504941225052,
"expert": 0.3697836995124817
} |
3,845 | java code to select 10 pixels randomly from a 32 x 32 pixel source jpg , dont alter the source jpg physically but use each of the RGB values by altering them randomly by 50% of their original values and then use these 10 RGB values to alter 10 randomly selected pixels of a 32 x 32 target-jpg also by 50% of their origin... | 7d165521b18b6c8442ca55ac813a06ae | {
"intermediate": 0.47196316719055176,
"beginner": 0.1360606700181961,
"expert": 0.39197614789009094
} |
3,846 | you are a python expert. | 89b943406ae35c6d1ed063177d08d02d | {
"intermediate": 0.25182491540908813,
"beginner": 0.26707717776298523,
"expert": 0.48109784722328186
} |
3,847 | what is the difference between this website and chat gpt? | 594bf6ebf2ff1a4c3b9f892ced9b5272 | {
"intermediate": 0.2928158938884735,
"beginner": 0.29418474435806274,
"expert": 0.4129994213581085
} |
3,848 | If I have gdb attached to a process, how can I make the process ignore the TERM signal | 306244ef2bb6d8276bb45ee0ec72e38c | {
"intermediate": 0.5229775309562683,
"beginner": 0.1518596112728119,
"expert": 0.3251628577709198
} |
3,849 | Write a web client with a socket connection to https://ad4d9241-5819-42af-9214-891ffc1b9182.id.repl.co:9000 that emits send_msg and receives new_msg | a65e7549334435d3d7899ea3e24c4399 | {
"intermediate": 0.3755383789539337,
"beginner": 0.24587443470954895,
"expert": 0.3785872757434845
} |
3,850 | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Data.OleDb;
using static System.Windows.Forms.VisualStyles.VisualStyleElement.ListView;
using... | a2a52c836ce87f2f2364b1b89179b65d | {
"intermediate": 0.4469337463378906,
"beginner": 0.36976152658462524,
"expert": 0.18330472707748413
} |
3,851 | Create a program that takes one integer command line argument.
Ensure the argument is an integer, if not the program doesn't do anything. | 8943f128c6925a76fbf3ebd412380961 | {
"intermediate": 0.4095665514469147,
"beginner": 0.1891845315694809,
"expert": 0.401248961687088
} |
3,852 | What is a good way to write a Material system for a game engine in C++? Any mesh should be able to have a material, which is either a single colour or a texture, and has a shader attached to it. | f3afd7be5a51cb61ca864cf475abc98a | {
"intermediate": 0.47288578748703003,
"beginner": 0.20288684964179993,
"expert": 0.32422736287117004
} |
3,853 | hi python professional. Create a program that has a function called factorial that takes one integer argument. Ensure the argument is an integer, which means no negative numbers are allowed. If negative numbers are entered, the program simply pass and do not print anything. Calculate the factorial of the number which i... | 24ea6792bb52fa4ecfed6e09ecb6f185 | {
"intermediate": 0.3233436942100525,
"beginner": 0.2360253781080246,
"expert": 0.4406309723854065
} |
3,854 | Write merge sort in C++ | 8686cfbdfa967442ba8f4b6faf67a834 | {
"intermediate": 0.3196406662464142,
"beginner": 0.2578427493572235,
"expert": 0.4225165843963623
} |
3,855 | nombresDeUsuarios :: RedSocial -> [String]
nombresDeUsuarios ([], _, _) = []
nombresDeUsuarios (u:us, r, q) | (snd u):(nombresDeUsuarios (us, r, q)) --Las variables r, q son irrelevantes y no son usadas
How to modify this function so it returns the list without repeated elements? | fc8e42a97d3f2b5bf6b22901dea29a21 | {
"intermediate": 0.2684512138366699,
"beginner": 0.6083526015281677,
"expert": 0.12319625169038773
} |
3,856 | In Greasemonkey-style scripts, is there a way to store data in moment (non-persistantly)? | 669e8029dc6262a210d83fecfcd43166 | {
"intermediate": 0.6154494881629944,
"beginner": 0.1250932514667511,
"expert": 0.25945723056793213
} |
3,857 | hi | 46851b140620e8e0814f386b2cf61393 | {
"intermediate": 0.3246487081050873,
"beginner": 0.27135494351387024,
"expert": 0.40399640798568726
} |
3,858 | I'm making about nation data any app name that starts with the letter 'O' | 7b8ca80b72105752e742fb0449cecd8e | {
"intermediate": 0.34433677792549133,
"beginner": 0.27989569306373596,
"expert": 0.3757675588130951
} |
3,859 | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Xml.Linq;
using System.Data.OleDb;
using System.Te... | 7e0dd363cd84d733c554a9075bbf2243 | {
"intermediate": 0.44607120752334595,
"beginner": 0.3860991597175598,
"expert": 0.167829692363739
} |
3,860 | I have a bunch of lines in a sql server script that do something like
DELETE FROM tblSomething OUTPUT @@ROWCOUNT AS 'Test'
but I'm getting weird results where sometimes it shows 50 "1"s in a record and sometimes shows "50" as a record. why is it doing that? | 04e7e64ca6aa8fd6c2dc6ea4f0735b88 | {
"intermediate": 0.5045166611671448,
"beginner": 0.3432447612285614,
"expert": 0.1522386074066162
} |
3,861 | generate daily price data for the bitcoin price from 1/1/23 to 1/30/23
the data should like this example:
date price
1/1/23 100
1/2/23 112 | 6a92a7a6b59ae8020d9069fee253fdae | {
"intermediate": 0.46325942873954773,
"beginner": 0.12652264535427094,
"expert": 0.4102179706096649
} |
3,862 | UnicodeDecodeError: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte | f8ead45549a32466662dc7b2effd3718 | {
"intermediate": 0.33375340700149536,
"beginner": 0.20704074203968048,
"expert": 0.45920589566230774
} |
3,863 | I want you to create the ultimate windows bat file for IT administrators. It should be user friendly, menu orientated, and utilize all windows systems commands in an efficient simple interface. provide all the code, with a help menu | e346890d3c10e46a1e16e7bd51aad68c | {
"intermediate": 0.40708446502685547,
"beginner": 0.3395032584667206,
"expert": 0.25341230630874634
} |
3,864 | i am using visual studio community windows form .network frmake work i created a class with feilds Name =
Address
Email
PhoneNumber
Username
Password
UserType
now i am getting input from textboxes in a form i want to create an object of that class... | bfac6edce6ace2b95e60f13927b05901 | {
"intermediate": 0.4602043032646179,
"beginner": 0.338993102312088,
"expert": 0.20080260932445526
} |
3,865 | napisz kod który w zależności od html tag wyświetla odpowiedni tekst w textbox tkinter tutaj przykład funkcji dla <em></em>
def em_points(text):
suppat = re.compile(r'<sup>\w*</sup>')
suppatiter = suppat.findall(text)
if suppatiter:
for suptag in suppatiter:
text = "".join(text.split(su... | 64a6a19d7963305638abff10a78c30c5 | {
"intermediate": 0.2443622350692749,
"beginner": 0.6046851873397827,
"expert": 0.15095257759094238
} |
3,866 | how to do a offline browsable site of https://www.hilti.ch/downloads?showAll=true&continue=true including the downloads | 13705058cac733adc02d77db6eee9b73 | {
"intermediate": 0.3457354009151459,
"beginner": 0.2390601634979248,
"expert": 0.4152044355869293
} |
3,867 | how to do a offline browsable site of https://www.hilti.ch/downloads?showAll=true&continue=true including the downloads | 5a8389009c19272236ab24a9a5bfafbd | {
"intermediate": 0.3457354009151459,
"beginner": 0.2390601634979248,
"expert": 0.4152044355869293
} |
3,868 | how to do a offline browsable site of https://www.hilti.ch/downloads?showAll=true&continue=true including the downloads | 014510269b3045362d8c8a7933ed6c4d | {
"intermediate": 0.3457354009151459,
"beginner": 0.2390601634979248,
"expert": 0.4152044355869293
} |
3,869 | how to do a offline browsable site of https://www.hilti.ch/downloads?showAll=true&continue=true including the downloads | c026b8bebb563c95f1e678c0c0764669 | {
"intermediate": 0.3457354009151459,
"beginner": 0.2390601634979248,
"expert": 0.4152044355869293
} |
3,870 | how to do a offline browsable site of https://www.hilti.ch/downloads?showAll=true&continue=true including the downloads | 196da080264e35d673b5acaeba547629 | {
"intermediate": 0.3457354009151459,
"beginner": 0.2390601634979248,
"expert": 0.4152044355869293
} |
3,871 | please fix this issue, my code gives me this error from this line
Line: cmd.ExecuteNonQuery();
Error: System.Data.OleDb.OleDbException: 'No value given for one or more required parameters.'
Full code:
using System;
using System.Linq;
using System.Data.OleDb;
using System.Windows.Forms;
using System.Drawing;
using sta... | f7be57b6f7e544cd51ef1ffb8471222c | {
"intermediate": 0.2986341416835785,
"beginner": 0.500408947467804,
"expert": 0.20095695555210114
} |
3,872 | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
contract FarmingCropNFT is ERC721, Ownable {
using SafeMath for uint256;
// Define e... | 5d70c7988996d4e81ec983f254428636 | {
"intermediate": 0.3853713572025299,
"beginner": 0.38670891523361206,
"expert": 0.22791975736618042
} |
3,873 | Write me an Excel class that will read an excel file consisting of multiple columns and rows that only includes text and numbers without using any external dependencies | be535e1f4e3ba20f259e13ba2e131764 | {
"intermediate": 0.48463863134384155,
"beginner": 0.20493046939373016,
"expert": 0.3104308843612671
} |
3,874 | What's the best way to tie a niagaracomponent/niagarasystem with an ability in UE5 using GAS? For example, I use my ability and I trigger the niagara effect. I want the damage to actually happen when the effect hits the target actor instead of doing it instantly. How do I achieve this? | 859e814e1be3270ed24cb284ab0eef51 | {
"intermediate": 0.5331124067306519,
"beginner": 0.19469818472862244,
"expert": 0.2721894383430481
} |
3,875 | I am building a 3d video game engine using Vulkan. The game will also use Bullet to handle game physics. What would be the best way to handle the model vertex information? | e6afae367dca9e7e2dd5bcae1eebfec4 | {
"intermediate": 0.5068343281745911,
"beginner": 0.17009219527244568,
"expert": 0.32307344675064087
} |
3,876 | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Data.OleDb;
using static System.Windows.Forms.VisualStyles.VisualStyleElement.ListView;
using... | e65008e2b2f684947b1c78aec36f6db1 | {
"intermediate": 0.45128700137138367,
"beginner": 0.3336457312107086,
"expert": 0.2150672823190689
} |
3,877 | You are given the results of 15 different experiments that were each designed to
measure tumor incidence in rats. The observed data, given in the file data.
final.2023.Q3.csv available on Canvas, consists of the n i = the number of rats in each
experiment i and the yi = the number of those rats that had tumors.
(a) Out... | 2302bf43ba676b2554fe52779bc19f21 | {
"intermediate": 0.32693156599998474,
"beginner": 0.29797956347465515,
"expert": 0.3750888705253601
} |
3,878 | create a website that would allow for easy editing of JSON data in the following format.
{"entries":{"0":{"uid":0,"key":["Raihan"],"keysecondary":[],"comment":"","content":"Raihan is a young man with beautiful teal eyes and black hair tied up with an undercut. Raihan is a male, has brown skin, and is 6’4\" tall.\nLikes... | 29ceb942552af1f9a9a37c14b6ea3032 | {
"intermediate": 0.3320307433605194,
"beginner": 0.43416157364845276,
"expert": 0.23380766808986664
} |
3,879 | Write a grammar G for the language L consisiting of strings of 0’s and 1’s that are the binary
representation of odd integers greater that 4. For example 011 L, 0101L, 101L, 0110 L.
Draw parse trees for the strings 1011 and 1101 | 83ea7d48bd907fdd8f06d5ce575024f5 | {
"intermediate": 0.3922809064388275,
"beginner": 0.33398035168647766,
"expert": 0.2737388014793396
} |
3,880 | How do I calculate distortion energy of a molecule in Gaussian? | f3033aa0fe108f509fc3d7af8e7e258d | {
"intermediate": 0.3309350311756134,
"beginner": 0.19683189690113068,
"expert": 0.47223302721977234
} |
3,881 | modify the following script to make it capable of editing the following format of JSON data.
<script>
const selectFormat = document.getElementById("selectFormat")
const spanFormatName = document.getElementById("spanFormatName")
const checkboxQuotes = document.getElementById("checkboxQuotes")
const oneL... | 27afa0fbc46a24400c472f0bba491081 | {
"intermediate": 0.3529629111289978,
"beginner": 0.5101471543312073,
"expert": 0.13688990473747253
} |
3,882 | "FarmingCropNFT" could not deploy due to insufficient funds
* Account: 0x828111760872EAcB8B658d17ef87e8F2C2005d32
* Balance: 1122044167146832797 wei
* Message: insufficient funds for gas * price + value
* Try:
+ Using an adequately funded account
+ If you are using a local Geth node, verify t... | 37883ef8b209fdb51e6a409ac70afbda | {
"intermediate": 0.3447735607624054,
"beginner": 0.37432435154914856,
"expert": 0.28090208768844604
} |
3,883 | What is wrong with this code
using System;
using System.Collections.Generic;
using System.IO;
using System.IO.Packaging;
using System.Linq;
using System.Xml;
using System.Xml.Linq;
class ExcelReader
{
private MemoryStream _memoryStream;
private List<List<object>> _data;
public ExcelReader(MemoryStream mem... | 7d54fa2fe5384a31a90ac7e228528b4a | {
"intermediate": 0.42150044441223145,
"beginner": 0.5104750990867615,
"expert": 0.06802444905042648
} |
3,884 | Write a AstroJS app that connects to the Studio Ghibli API. | 8d4ba4268417df07255f20160605e1cc | {
"intermediate": 0.7248612642288208,
"beginner": 0.10714530199766159,
"expert": 0.167993426322937
} |
3,885 | Perform as if you were a big data analytics engineer and write a hadoop java program to run on cloudera hadoop environment.
This program performs sentiment analysis on a given text input and returns two output files one with the negative words and the other with the positive ones you can also use a dataset or ignore ... | 66ed8c08b422415a9c347c1ac79a077b | {
"intermediate": 0.5800239443778992,
"beginner": 0.22233548760414124,
"expert": 0.1976405382156372
} |
3,886 | '''
import requests
import json
import datetime
import streamlit as st
from itertools import zip_longest
import os
import seaborn as sns
import matplotlib.pyplot as plt
import pandas as pd
import japanize_matplotlib
def basic_info():
config = dict()
config["access_token"] = st.secrets["access_token"]
conf... | c46fd5bbfd590334f724056fb8cbf1ba | {
"intermediate": 0.33554038405418396,
"beginner": 0.38297271728515625,
"expert": 0.2814869284629822
} |
3,888 | function [Top_gazelle_fit,Top_gazelle_pos,Convergence_curve]=GOA2_Laplace(SearchAgents_no,Max_iter,lb,ub,dim,fobj, mu, sigma)
% Inputs:
% SearchAgents_no: number of search agents
% Max_iter: maximum number of iterations
% lb: lower bound of the search space
% ub: upper bound of the search space
% dim: dimension of the... | db75d63b5af15de8090599510f6d45fd | {
"intermediate": 0.4074850380420685,
"beginner": 0.33542415499687195,
"expert": 0.25709083676338196
} |
3,889 | '''
import requests
import json
import datetime
import streamlit as st
from itertools import zip_longest
import os
import seaborn as sns
import matplotlib.pyplot as plt
import pandas as pd
import japanize_matplotlib
def basic_info():
config = dict()
config["access_token"] = st.secrets["access_token"]
conf... | a8402ab48916204acd23ed807046df8d | {
"intermediate": 0.33554038405418396,
"beginner": 0.38297271728515625,
"expert": 0.2814869284629822
} |
3,890 | This is aarch64 assembly language code.
.section .bss
n16: .skip 4
// compute next highest multiple of 16 that is bigger or equal to n
adr x1, n
ldr w1, [x1]
sbfiz x1, x2, #2, #20
add x1, x1, #0xf
and x1, x1, #0xfffffffffffffff0
adr x2, n16
str w1, [x2]
It's not storing value on n16, what's the issue? | 7035c195c7865b342dc64301d9d9a9f8 | {
"intermediate": 0.29658475518226624,
"beginner": 0.45765945315361023,
"expert": 0.24575573205947876
} |
3,891 | im creating a website for students and teachers, made in react with a backend in vs c#, the student account and teacher account have different privileges and access to certain parts of the website, what would be better to handle their login, to make separate logins for students and teachers, or to make them log in the ... | 0e0697d3890d5d968d3f0512a39b21c3 | {
"intermediate": 0.624177873134613,
"beginner": 0.17480884492397308,
"expert": 0.20101328194141388
} |
3,892 | could you please make me a MarkDown cheatsheet? | 97857f0ffbf0c3355dd20268dd0ab45a | {
"intermediate": 0.24629703164100647,
"beginner": 0.44198206067085266,
"expert": 0.31172093749046326
} |
3,893 | c++ how to use n dimentional array | c986daf5609d604bf97f8989506bee36 | {
"intermediate": 0.4049648344516754,
"beginner": 0.2613747715950012,
"expert": 0.33366042375564575
} |
3,894 | function [Top_gazelle_fit,Top_gazelle_pos,Convergence_curve]=GOA2(SearchAgents_no,Max_iter,lb,ub,dim,fobj)
Top_gazelle_pos=zeros(1,dim);
Top_gazelle_fit=inf;
Convergence_curve=zeros(1,Max_iter);
stepsize=zeros(SearchAgents_no,dim);
fitness=inf(SearchAgents_no,1);
gazelle=initialization(SearchAgents_no,dim,ub,lb);... | a606cbe585f2122171a609cb9c9ad836 | {
"intermediate": 0.34565678238868713,
"beginner": 0.2886227071285248,
"expert": 0.36572057008743286
} |
3,895 | Page
4
of 6
The Developer and Assessment Guidelines must be read and used in conjunction with this document when
designing and developing the assessment tool. Use the Assessment Development Checklist to ensure all
aspects have been completed. Develop the assessor version first and then resave as the student version and... | 5c23e1906b87abc29e8427f122cba431 | {
"intermediate": 0.4120897054672241,
"beginner": 0.40952903032302856,
"expert": 0.17838117480278015
} |
3,896 | '''
import requests
import json
import datetime
import streamlit as st
from itertools import zip_longest
import os
import seaborn as sns
import matplotlib.pyplot as plt
import pandas as pd
import japanize_matplotlib
def basic_info():
config = dict()
config["access_token"] = st.secrets["access_token"]
conf... | 1fbe4b8a900076cbf414f8f3fc9d8a99 | {
"intermediate": 0.33554038405418396,
"beginner": 0.38297271728515625,
"expert": 0.2814869284629822
} |
3,897 | function [z] = levy(n,m,beta)
num = gamma(1+beta)*sin(pi*beta/2); % used for Numerator
den = gamma((1+beta)/2)*beta*2^((beta-1)/2); % used for Denominator
sigma_u = (num/den)^(1/beta);% Standard deviation
u = random('Normal',0,sigma_u,n,m);
v = random('Normal',0,1,n,m);
z =u.... | 2a160c99a2cfb450699944355387e86a | {
"intermediate": 0.2778685390949249,
"beginner": 0.43522197008132935,
"expert": 0.2869094908237457
} |
3,898 | visual studio code discord extension that shows what file your editing and also says stop stalking :3 | 7cf9a5132325108747e1ed8411865d23 | {
"intermediate": 0.3361544609069824,
"beginner": 0.30565300583839417,
"expert": 0.3581925630569458
} |
3,899 | What would be the most efficient way to store ['3ef0', '3ef8', '3efg', '3efo', 'bef0', 'bef8', 'befg', 'befo', 'mel1', 'mel7', 'melh', 'meln', 'sel1', 'sel7', 'selh', 'seln'] for c++ | 33235e71ff78ae705a364641afb17a25 | {
"intermediate": 0.41718748211860657,
"beginner": 0.2670140266418457,
"expert": 0.3157985508441925
} |
3,900 | draw schema diagram in typedb studio with screenshot helping | e756a1b8fd5b43df5bdf6fc822624593 | {
"intermediate": 0.4394477605819702,
"beginner": 0.2562836706638336,
"expert": 0.304268479347229
} |
3,901 | hey | aae825fb221fde8a15e45e5f723c8ebd | {
"intermediate": 0.33180856704711914,
"beginner": 0.2916048467159271,
"expert": 0.3765866458415985
} |
3,902 | how to check if there is a folder in python? and if no, create one | 414f385c7f9366bad57ccef3328ad192 | {
"intermediate": 0.5674967765808105,
"beginner": 0.1443716436624527,
"expert": 0.28813159465789795
} |
3,903 | '''
import requests
import json
import datetime
import streamlit as st
from itertools import zip_longest
import os
import seaborn as sns
import matplotlib.pyplot as plt
import pandas as pd
import japanize_matplotlib
def basic_info():
config = dict()
config["access_token"] = st.secrets["access_token"]
conf... | a030b8a976ca94914118eca3f39cf362 | {
"intermediate": 0.33554038405418396,
"beginner": 0.38297271728515625,
"expert": 0.2814869284629822
} |
3,904 | The following line of code in a C++ project causes a compiler warning:
safe_strncpy(szBuffer,szBuffer+8,26);
szBuffer is of type "char *".
safe_strncpy is defined by the following:
#define safe_strncpy(a,b,n) do { strncpy((a),(b),(size_t)((n)-1)); (a)[(size_t)((n)-1)] = 0; } while (0)
The compiler warning is about ... | 44b21d3af7e6d761eaf18780b562cc53 | {
"intermediate": 0.5217545032501221,
"beginner": 0.2238215208053589,
"expert": 0.25442397594451904
} |
3,905 | javascript sort integer arary | 8d6b4c14abc47cf716970333165a244c | {
"intermediate": 0.32880866527557373,
"beginner": 0.29331856966018677,
"expert": 0.3778727650642395
} |
3,906 | write a c++ function to convert each array in a 2d array of integers into a hashmaps with the values of the arrays as keys and and array of the indexes of the keys in the array as the value of each key | c0753ab94ebe3431503d10db5b945d50 | {
"intermediate": 0.39141538739204407,
"beginner": 0.15223677456378937,
"expert": 0.456347793340683
} |
3,907 | write a c++ function to convert each array in a 2d array of integers into a hashmaps with the values of the arrays as keys and set of the indexes of the keys in the array as the value of each key | d69452acd3a87c3b6ca862da0f49ffcc | {
"intermediate": 0.39722055196762085,
"beginner": 0.1389162242412567,
"expert": 0.46386316418647766
} |
3,908 | write a c++ function to convert each array in a 2d array of integers into a hashmaps with the values of the arrays as keys and set of the indexes of the keys in the array as the value of each key. for example, convert [[1,2,5,3],[9,3,3,9]] into [{1:{0}, 2:{1}, 3: {3}, 5: {2}},{3: {1,2},9:{0,3}}] | d19aa3dea450efeb620a60868c41a4cc | {
"intermediate": 0.36503490805625916,
"beginner": 0.1840224266052246,
"expert": 0.450942724943161
} |
3,909 | исправить код
код:
import pandas as pd
import json
from pprint import pprint
with open('recipes.json') as f:
data = json.load(f)
all_ingredients=[]
for recipe in data:
for ingredient in recipe['ingredients']:
all_ingredients.append(ingredient)
print(all_ingredients) # Выводим список всех ингредиент... | c7e05faf0a5b361fd718130f7958edf6 | {
"intermediate": 0.4422905445098877,
"beginner": 0.3262077271938324,
"expert": 0.23150168359279633
} |
3,910 | hey | ac47389d9bc3f1a97eb87686e02e8cc1 | {
"intermediate": 0.33180856704711914,
"beginner": 0.2916048467159271,
"expert": 0.3765866458415985
} |
3,911 | Исправь пожалуйста ошибки в коде | b90858dae24756655937ab0f05231b17 | {
"intermediate": 0.2987670600414276,
"beginner": 0.2584679126739502,
"expert": 0.4427649974822998
} |
3,912 | how add on object function errors with errors list in python? | 3654c5f640a1f8e91e3a1861e873e50a | {
"intermediate": 0.4752807021141052,
"beginner": 0.2611198425292969,
"expert": 0.2635994255542755
} |
3,913 | % 匹配器输出端信号
output = conv(r1, x_);
subplot(4,1,4);
t3_1 = -1:1/2e9:0.25e-6;
t3_2 = 0.25e-6:1/2e9:0.5e-6;
t3_3 = 0.5e-6:1/2e9:0.75e-6;
t3_4 = 0.75e-6:1/2e9:1e-6;
plot(t3_1, output(1:numel(t3_1)));
hold on;
plot(t3_2, output(numel(t3_1)+1:numel(t3_1)+numel(t3_2)));
plot(t3_3, output(numel(t3_1)+numel(t3_2)+1:numel(t3_1)+n... | 4f8ec7409906504b6ac9c70686b04e88 | {
"intermediate": 0.293379545211792,
"beginner": 0.32078057527542114,
"expert": 0.3858398199081421
} |
3,914 | generate Go code that:
- checks if the phone number is in international Romanian format
- if it is in national format then reformat it as international romanian format | 66840a118b92923725f27f26ed4730ac | {
"intermediate": 0.46525582671165466,
"beginner": 0.13556678593158722,
"expert": 0.3991774022579193
} |
3,915 | write me code racing game in c++ programming | 39faa5096292ead2dde351f2c6db229a | {
"intermediate": 0.25286757946014404,
"beginner": 0.5190203785896301,
"expert": 0.2281121015548706
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.