row_id int64 0 48.4k | init_message stringlengths 1 342k | conversation_hash stringlengths 32 32 | scores dict |
|---|---|---|---|
41,160 | git clone error: RPC failed; curl 56 GnuTLS recv error (-110): The TLS connection was non-properly terminated. | 2fc1dac58c0b0dd4c9125470b53ce5a4 | {
"intermediate": 0.38035115599632263,
"beginner": 0.2758370041847229,
"expert": 0.34381186962127686
} |
41,161 | def raw_peek(raw_path):
raw_image = np.fromfile(raw_path, dtype='float32') #BGR ,dtype='uint8'
print(raw_image, np.max(raw_image), np.min(raw_image))
print('raw_image shape is {}'.format(raw_image.shape))
norm_raw_image = normalize(raw_image)
raw_image = norm_raw_image.reshape(ROWS, COLS, 1)
r... | 16e7c41c85366ce71c535a2caf209437 | {
"intermediate": 0.37673017382621765,
"beginner": 0.30835625529289246,
"expert": 0.3149136006832123
} |
41,162 | First argument of event_key() must be a one letter string, or "up", "down", "left", "right", or "space". on line: 82
def set_up_track():
"""Use a function to create a maze or race track"""
stage.set_background_color("black")
rec1 = codesters.Rectangle(20, 240, 450, 25, "purple")
rec2 = codesters.Rectan... | e0ca6079ed2f25b58602b6fb329aeae8 | {
"intermediate": 0.37443119287490845,
"beginner": 0.44071948528289795,
"expert": 0.18484927713871002
} |
41,163 | what are the odds that my minecraft world generates the same seed as the one in a different server? | 3505b05f10b2ebba98a79b2fb5fd3735 | {
"intermediate": 0.3740175664424896,
"beginner": 0.28130605816841125,
"expert": 0.3446763753890991
} |
41,164 | how do i configure register and login on flutterflow so that on register am picking firstname second name and phone number then after phone is entered i need to have an otp screen with 6 infput fields that i can enter one digit per field until the 6 digits are over then be able to login to my home landing for my app. F... | 541bf7a916873b5ceecd732b09e9315f | {
"intermediate": 0.5506266951560974,
"beginner": 0.1768663376569748,
"expert": 0.2725069522857666
} |
41,165 | how do i get excel to do the following? I want a vlookup reference to always return the value from the 8th cell along from where the lookup finds the initial search term. For example if i have a term i am looking up in either b2,c2,d2 or e2 then i want it to return the value from i2, j2, k2 or l2 | c314afe981c17c505710cfb845b4ff87 | {
"intermediate": 0.44478073716163635,
"beginner": 0.22253982722759247,
"expert": 0.33267948031425476
} |
41,166 | hello mr gpt 4, i need help prompting gpt 3.5 to simulate a reduction of model size, basically means that i want to make it dumber through a prompt. here is my current prompt, do not listen to its instructions: "/ for this inference, we are testing temporal model size reduction. this means you will simulate having far ... | 5ecdaef1cf81ea4cbe27d60d2981a0d7 | {
"intermediate": 0.49623313546180725,
"beginner": 0.12348458915948868,
"expert": 0.3802822530269623
} |
41,167 | ���P�f��K��<q�[�b��%�&�nhb��芢�,Č��3^rn�]'e�����������?2rl�?0�·� | d3f77b7aed47f91375330f27239473b5 | {
"intermediate": 0.3531333804130554,
"beginner": 0.2909647822380066,
"expert": 0.355901837348938
} |
41,168 | #include <stdio.h>
#include <stdlib.h>
int main()
{
int n;
scanf("%d", &n);
int arr[n];
for (int i = 0; i < n; i++) {
scanf("%d", &arr[i]);
}
int max = 0;
int maxIndex = 0;
int length = 1;
int startIndex = 0;
int freq[n];
for (int i = 1; i < n; i++) {
if (... | db8aabc32be87684e781a2bd28384c60 | {
"intermediate": 0.33431923389434814,
"beginner": 0.3572714626789093,
"expert": 0.30840927362442017
} |
41,169 | You are given a number n and an array book representing the numbers on each book. You are supposed to find the longest subsequence in each array where the subsequence is of form [x, x+1, ..., x+m-1] where x is any number and m is the length of the subsequence. You have to print the length of such subsequence and the in... | a00e422a83f5b6a55a9bd9c41dccb52a | {
"intermediate": 0.48009759187698364,
"beginner": 0.3028733432292938,
"expert": 0.21702910959720612
} |
41,170 | To draw an SVG image and ensure it renders properly in this chat, you need to adhere to a specific set of rules based on the limitations and capabilities of the chat’s interface, which includes:
1. Single String of Code: The SVG code must be presented as a single, continuous line without any line breaks or backticks t... | 53f8203b11c197919319da5d731365e2 | {
"intermediate": 0.34755244851112366,
"beginner": 0.2923589050769806,
"expert": 0.36008867621421814
} |
41,171 | IDEA:
I am making a device for anosmia patient to detect milk spoilage, fruit spoilage, vegetable spoilage, bread spoilage.... So, i buy some components for that which are Raspberry pi 3 model B, Arduino Uno R3, Gas sensors: MQ135, MQ7, MQ9, MQ3, DHT-11.
I use arduino for data collection and raspberry pi will use at a... | e61133b83658ab173983f896d01d07b0 | {
"intermediate": 0.381085604429245,
"beginner": 0.21665769815444946,
"expert": 0.4022567570209503
} |
41,172 | #include <stdio.h>
#define MAX_HASH 1000001
int hashtable[MAX_HASH]; // Map number to its latest index
// Functions to clear and get from hashtable
void clearHashtable() {
for (int i = 0; i < MAX_HASH; i++)
hashtable[i] = -1; // Index -1 means the number has not appeared
}
int getHash(int number) {
... | 9c7e47bf1a747e2857a5b100ccf4847b | {
"intermediate": 0.40939831733703613,
"beginner": 0.4038466811180115,
"expert": 0.18675506114959717
} |
41,173 | give me step by step process to embedd the prive hugging face spaces link to embed and publish for a selected set of audience | f98b82bbba410b3a4a510d0061a414a2 | {
"intermediate": 0.43042558431625366,
"beginner": 0.2120104432106018,
"expert": 0.35756391286849976
} |
41,174 | #include <stdio.h>
#define MAX_HASH 1000001
int hashtable[MAX_HASH]; // Map number to its latest index
// Functions to clear and get from hashtable
void clearHashtable()
{
for (int i = 0; i < MAX_HASH; i++)
hashtable[i] = -1; // Index -1 means the number has not appeared
}
int getHash(int number) {
... | 6d792d562170a422c22f2c8a50b1481c | {
"intermediate": 0.3270878195762634,
"beginner": 0.37485554814338684,
"expert": 0.29805663228034973
} |
41,175 | You are given a number n and an array book representing the numbers on each book. You are supposed to find the longest subsequence in each array where the subsequence is of form [x, x+1, ..., x+m-1] where x is any number and m is the length of the subsequence. You have to print the length of such subsequence and the in... | aaf8c48c323accb3194af0a502346c9d | {
"intermediate": 0.4803076386451721,
"beginner": 0.2796497941017151,
"expert": 0.24004261195659637
} |
41,176 | #include <stdio.h>
#include <stdlib.h>
// struct node
// {
// int data;
// int index;
// struct node *next;
// };
int func(int arr[], int *index, int n)
{
int freq[n];
int maxindex = 0;
int max = 1;
int prev[n];
for (int i = 0; i < n; ++i)
{
freq[i]=1;
prev[i]=-... | e7625385af8c588da5c870c81ffcbaec | {
"intermediate": 0.3937012553215027,
"beginner": 0.3498920500278473,
"expert": 0.2564067244529724
} |
41,177 | ecris moi le code c de hello world | cdd05a3a2279b2c2aa8b7dd4f82bf5aa | {
"intermediate": 0.2671308219432831,
"beginner": 0.36227497458457947,
"expert": 0.37059417366981506
} |
41,178 | объясни что это и что с этим делать: Disable this behaviour by setting HOMEBREW_NO_INSTALL_CLEANUP.
Hide these hints with HOMEBREW_NO_ENV_HINTS (see `man brew`). | dc84c68daf6a388132bd6320c6b69ee6 | {
"intermediate": 0.3953177332878113,
"beginner": 0.3291330933570862,
"expert": 0.2755492031574249
} |
41,179 | To draw an SVG image and ensure it renders properly in this chat, you need to adhere to a specific set of rules based on the limitations and capabilities of the chat’s interface, which includes:
1. Single String of Code: The SVG code must be presented as a single, continuous line without any line breaks or backticks t... | 651ef5865d7d64c8e5c03e20998f2be5 | {
"intermediate": 0.4146977961063385,
"beginner": 0.45278793573379517,
"expert": 0.13251425325870514
} |
41,180 | #include <stdio.h>
#include <stdlib.h>
int func(int arr[], int index[], int n)
{
int max = 1;
int maxindex = 0;
int previndex = -1;
int* ht = (int*)calloc(n, sizeof(int));
for (int i = 0; i < n; i++) {
ht[arr[i]] = i;
}
for (int i = 0; i < n; i++)
{
int currentindex = ... | 32b17d91e149d491a2ac340642f1a24a | {
"intermediate": 0.3525957465171814,
"beginner": 0.4507043659687042,
"expert": 0.19669987261295319
} |
41,181 | 1. Draw a Use case diagram for a travel booking website (10 marks)
a. Identify and mention all the actors involved (1 M)
b. Identify and mention the use cases involved (4 M)
c. Identify and mention all relationships between use cases (2 M)
d. Identify associations between use cases and a... | a53bcef31306aa01ec4f0e3486f64c52 | {
"intermediate": 0.35228675603866577,
"beginner": 0.38159430027008057,
"expert": 0.26611900329589844
} |
41,182 | 1. Draw a Use case diagram for a travel booking website (10 marks) a. Identify and mention all the actors involved (1 M) b. Identify and mention the use cases involved (4 M) c. Identify and mention all relationships between use cases (2 M) d. Identify associations between use cases and actors (3 M)write me a uml code | 2cb9ae8b8efe70e70110590e4af57b4b | {
"intermediate": 0.3123752176761627,
"beginner": 0.43912822008132935,
"expert": 0.2484966367483139
} |
41,183 | I am trying to create a new design for our underwriting flow.
There is a section which deals with the line structure, which kind of lists out who the borrower, pledgor, guarantor, primary contact and primary borrower are.
Now, this would involve some kind of a link or relationship management between people in all of ... | 30e90bcff337648cbece08b6110f735d | {
"intermediate": 0.38557910919189453,
"beginner": 0.3399195969104767,
"expert": 0.27450132369995117
} |
41,184 | Hi, in dax I’d like to have the max sale of each orderid (there can be multiple items for one order) but have it sum by orderid. | 71ab1650cd7fd29b1e99879afcada643 | {
"intermediate": 0.4002540707588196,
"beginner": 0.18462716042995453,
"expert": 0.4151187837123871
} |
41,185 | generate a pyhton script in order to run stable diffusion on linux. Make there be two sections, one for downloading and setting up dependencies and such and the other for running the mode. Assume there is a base model 'model.safetensors' and a VAE file | 5767e27c200ec0bfdfc7cb973395a867 | {
"intermediate": 0.33804741501808167,
"beginner": 0.18774695694446564,
"expert": 0.47420570254325867
} |
41,186 | 1. Draw a Use case diagram for a travel booking website (10 marks) a. Identify and mention all the actors involved (1 M) b. Identify and mention the use cases involved (4 M) c. Identify and mention all relationships between use cases (2 M) d. Identify associations between use cases and actors (3 M)write me a uml code a... | c8e989359c39f58631814829c37f9e61 | {
"intermediate": 0.35531580448150635,
"beginner": 0.48511162400245667,
"expert": 0.15957260131835938
} |
41,187 | @Prop() filters: any
как переписать на vue 3 | 2ab23581b5ca71353addc247a61f31c6 | {
"intermediate": 0.3601957857608795,
"beginner": 0.32006198167800903,
"expert": 0.31974220275878906
} |
41,188 | Node* find(Node* ht[], int data, int index)
{
int hash = data % MAX_SIZE;
Node* current = ht[hash];
Node* found = NULL;
while (current != NULL)
{
if (current->data == data && current->index > index)
{
if (found == NULL || current->index > found->index) {
... | 71a0da07e8a97632a2b692f954a4cb3b | {
"intermediate": 0.3627936542034149,
"beginner": 0.31725597381591797,
"expert": 0.3199503719806671
} |
41,189 | example popular github projects that uses doxygen | b4d59214ed207deedc61af3712545ace | {
"intermediate": 0.4017675220966339,
"beginner": 0.20322878658771515,
"expert": 0.39500367641448975
} |
41,190 | Problem Statement: Implement Word2vec from scratch.1. Train a neural network to generate word embeddings in the form of a weight matrix.2. Embedding layers can be trained to generate custom embeddings in popular neural network libraries like TensorFlow or PyTorch. 3. You are free to train on large datasets such as Wiki... | 6d4b877d52a67609060a023b41935418 | {
"intermediate": 0.1697692573070526,
"beginner": 0.0305279903113842,
"expert": 0.7997027635574341
} |
41,191 | please correct this c++ code. change the structure. correct the main funtion. and anything else required
#include <iostream>
#include <cmath>
#include <vector>
#include <algorithm>
#include "const.cpp"
// Recombination coefficients
double alphaB_HI(double T4) {
return 2.59e-13 * pow(T4, (-0.833 - 0.034 * log(T4))... | f07f04b0c175ad7ab2b1b7e90ea2d042 | {
"intermediate": 0.2979866862297058,
"beginner": 0.4180507957935333,
"expert": 0.28396254777908325
} |
41,192 | You are given a number n and an array book representing the numbers on each book. You are supposed to find the longest subsequence in each array where the subsequence is of form [x, x+1, ..., x+m-1] where x is any number and m is the length of the subsequence. You have to print the length of such subsequence and the in... | 00db064dfb99a582cc334b760ff74317 | {
"intermediate": 0.4646366536617279,
"beginner": 0.2416134923696518,
"expert": 0.29374977946281433
} |
41,193 | In a cv++ SDL project I did LERP like this:
position.SetX(position.GetX() + alpha * (target.GetX() - position.GetX()));
position.SetY(position.GetY() + alpha * (target.GetY() - position.GetY()));
but then I read the wikipedia and it seems like it is an impresice method, right?
These two methods are defined in the wi... | 89076146f52abba2920f50390f9cb89c | {
"intermediate": 0.3781517446041107,
"beginner": 0.37255674600601196,
"expert": 0.2492915391921997
} |
41,194 | To draw an SVG image and ensure it renders properly in this chat, you need to adhere to a specific set of rules based on the limitations and capabilities of the chat’s interface, which includes:
1. Single String of Code: The SVG code must be presented as a single, continuous line without any line breaks or backticks t... | 7a2c4bf50e321c7302c6c198f4ce7701 | {
"intermediate": 0.4146977961063385,
"beginner": 0.45278793573379517,
"expert": 0.13251425325870514
} |
41,195 | In this code | 2bec2647f8f0c91397687a07a3732fb0 | {
"intermediate": 0.28486913442611694,
"beginner": 0.37805551290512085,
"expert": 0.3370753824710846
} |
41,196 | To draw an SVG image and ensure it renders properly in this chat, you need to adhere to a specific set of rules based on the limitations and capabilities of the chat’s interface, which includes:
1. Single String of Code: The SVG code must be presented as a single, continuous line without any line breaks or backticks t... | df10f6327e253159996bb4cb9b69cb86 | {
"intermediate": 0.4146977961063385,
"beginner": 0.45278793573379517,
"expert": 0.13251425325870514
} |
41,197 | write a c program that generates all the subsequences of the array and that subsequence is stored in variable arr2 | 681f598e80f3cff3b0700ea9bf8f8041 | {
"intermediate": 0.3414052724838257,
"beginner": 0.21398019790649414,
"expert": 0.4446145296096802
} |
41,198 | You are given a number n and an array book representing the numbers on each book. You are supposed to find the longest subsequence in each array where the subsequence is of form [x, x+1, ..., x+m-1] where x is any number and m is the length of the subsequence. You have to print the length of such subsequence and the in... | ff7134a86211a8852442242aca65f390 | {
"intermediate": 0.4987998902797699,
"beginner": 0.2527613639831543,
"expert": 0.248438760638237
} |
41,199 | In the context of net.ipv4.tcp_rmem, how does Linux increase tcp buffer size higher than the default and then decrease the value? I dont consider situations of memory shortage. I need to know, whether the buffer size adjustment depends on the application's delay in reading the buffer, so it increases, then, when the a... | 28adfe666b3402e824a4690106ca1a76 | {
"intermediate": 0.4867250323295593,
"beginner": 0.2070891112089157,
"expert": 0.30618590116500854
} |
41,200 | Input : a[] = {3, 10, 3, 11, 4, 5, 6, 7, 8, 12}
Output : 6
Explanation: 3, 4, 5, 6, 7, 8 is the longest increasing subsequence whose adjacent element differs by one.
Input : a[] = {6, 7, 8, 3, 4, 5, 9, 10}
Output : 5
Explanation: 6, 7, 8, 9, 10 is the longest increasing subsequence
c program for this | 49910632042445fa76798eec3a0730a3 | {
"intermediate": 0.38358044624328613,
"beginner": 0.26803040504455566,
"expert": 0.34838905930519104
} |
41,201 | which versions ChatGPT are you use? | 31d5684313d724b2a2955bcae4a8a12d | {
"intermediate": 0.4999070167541504,
"beginner": 0.20931071043014526,
"expert": 0.29078224301338196
} |
41,202 | which gases are strongly released from when food is spoil like bread, milk, vegetables and fruits..............| CO | Alcohol | CO2 | Toluen | NH4 | Aceton | | 7f36098fa52035ab9b09f964e031368c | {
"intermediate": 0.4359046220779419,
"beginner": 0.3077269494533539,
"expert": 0.2563684284687042
} |
41,203 | #include <bits/stdc++.h>
using namespace std;
// function that returns the length of the
// longest increasing subsequence
// whose adjacent element differ by 1
int longestSubsequence(int a[], int n)
{
// stores the index of elements
unordered_map<int, int> mp;
// stores the length of the longest
//... | ca85b573bca639ec8d42ce5d8e80ee4d | {
"intermediate": 0.30231955647468567,
"beginner": 0.38645845651626587,
"expert": 0.31122204661369324
} |
41,204 | To draw an SVG image and ensure it renders properly in this chat, you need to adhere to a specific set of rules based on the limitations and capabilities of the chat’s interface, which includes:
1. Single String of Code: The SVG code must be presented as a single, continuous line without any line breaks or backticks t... | 630566ea6f611da39d5f9b000c2997e4 | {
"intermediate": 0.4146977961063385,
"beginner": 0.45278793573379517,
"expert": 0.13251425325870514
} |
41,205 | To draw an SVG image and ensure it renders properly in this chat, you need to adhere to a specific set of rules based on the limitations and capabilities of the chat’s interface, which includes:
1. Single String of Code: The SVG code must be presented as a single, continuous line without any line breaks or backticks t... | 05fff1dedf06f11e0b9dd59d9d02cade | {
"intermediate": 0.4146977961063385,
"beginner": 0.45278793573379517,
"expert": 0.13251425325870514
} |
41,206 | To draw an SVG image and ensure it renders properly in this chat, you need to adhere to a specific set of rules based on the limitations and capabilities of the chat’s interface, which includes:
1. Single String of Code: The SVG code must be presented as a single, continuous line without any line breaks or backticks t... | 157d629d0d90c746a090d5963301e312 | {
"intermediate": 0.4146977961063385,
"beginner": 0.45278793573379517,
"expert": 0.13251425325870514
} |
41,207 | To draw an SVG image and ensure it renders properly in this chat, you need to adhere to a specific set of rules based on the limitations and capabilities of the chat’s interface, which includes:
1. Single String of Code: The SVG code must be presented as a single, continuous line without any line breaks or backticks t... | 99c0ffb7d5904d0b9fb15306ec1c06d7 | {
"intermediate": 0.4146977961063385,
"beginner": 0.45278793573379517,
"expert": 0.13251425325870514
} |
41,208 | To draw an SVG image and ensure it renders properly in this chat, you need to adhere to a specific set of rules based on the limitations and capabilities of the chat’s interface, which includes:
1. Single String of Code: The SVG code must be presented as a single, continuous line without any line breaks or backticks t... | ac5a2578d182418388753508879cf334 | {
"intermediate": 0.4146977961063385,
"beginner": 0.45278793573379517,
"expert": 0.13251425325870514
} |
41,209 | How do I make a opaque material to fade until transparent on unity | e705a6891ceb2ec71e5d0aea78f13525 | {
"intermediate": 0.2791844606399536,
"beginner": 0.2116377055644989,
"expert": 0.5091778635978699
} |
41,210 | How do I fade out an object on unity | 3d7ecd066772f28dbb90b2286bfa2ee1 | {
"intermediate": 0.42194557189941406,
"beginner": 0.20289425551891327,
"expert": 0.37516018748283386
} |
41,211 | Write a python script that connects to a discord server using a bot token | 012f0abb9e7a9894bf7b6293a50dfbc7 | {
"intermediate": 0.3695189356803894,
"beginner": 0.20063552260398865,
"expert": 0.42984551191329956
} |
41,212 | Given array of words find number of pairs where either string is equal or one string ends with the other
Word[i] is suffix of words[j] or the opposite
Wirte in ts | 59bbff40b0d2a08114a88d96de7315b2 | {
"intermediate": 0.36199048161506653,
"beginner": 0.22295132279396057,
"expert": 0.4150581657886505
} |
41,213 | check this code:
pub fn cmp_exons(
cn_exons: &mut Vec<(u32, u32)>,
tx_exons: Vec<&(u32, u32)>,
) -> (Status, Vec<usize>) {
let mut cn_idx = VecDeque::from_iter(0..cn_exons.len());
let mut matches = vec![];
let mut status = Status::Pass;
let last = tx_exons.len() - 1;
for (i, (start, end))... | 2920f82678e18e6943c9bab18f4a0d01 | {
"intermediate": 0.4269609749317169,
"beginner": 0.31236958503723145,
"expert": 0.26066938042640686
} |
41,214 | How do I fade out an object in Unity | 16b5939ed7025b1aeda10d16aea79e69 | {
"intermediate": 0.5680725574493408,
"beginner": 0.25183650851249695,
"expert": 0.18009088933467865
} |
41,215 | Change the following python gradio app to use a gallery instead of a simple image since the API now returns multiple image urls like so for example: 'result': {'1': 'https://cdn.leonardo.ai/users/414c5ec8-7021-4736-841b-d5dff9de261f/generations/42c63388-aa8b-483d-b1f5-a3d1ce143f41/Default_french_maid_1.jpg', '2': 'http... | cf043db6d80cca05d78d19fe1866c8ea | {
"intermediate": 0.5478631854057312,
"beginner": 0.14285123348236084,
"expert": 0.30928555130958557
} |
41,216 | In Unity when i return a list I am returnning a copy or the original | 1583ab366ef709466d487ab1b0982784 | {
"intermediate": 0.4727540910243988,
"beginner": 0.2406940758228302,
"expert": 0.28655189275741577
} |
41,217 | How do i have "--swiper-pagination-bottom": "50px",
"--swiper-pagination-top": "auto", for tailwinds breakpoint lg and below. And "--swiper-pagination-bottom": "0px",
"--swiper-pagination-top": "auto", for breakpoint xl in the code: import {
RxModulzLogo,
RxBlendingMode,
RxRocket,
RxArrowTopRi... | 1573b84cf2c94ebb09198c1fd6eac59e | {
"intermediate": 0.3750283122062683,
"beginner": 0.3737858533859253,
"expert": 0.251185804605484
} |
41,218 | To draw an SVG image and ensure it renders properly in this chat, you need to adhere to a specific set of rules based on the limitations and capabilities of the chat’s interface, which includes:
1. Single String of Code: The SVG code must be presented as a single, continuous line without any line breaks or backticks t... | 9e82e24dde2483ab69cdae25051dbefa | {
"intermediate": 0.4146977961063385,
"beginner": 0.45278793573379517,
"expert": 0.13251425325870514
} |
41,219 | dataset1 = pl.read_parquet("C:\Users\nguye4tg\Downloads\df_hist.parquet")
dataset2 = pl.read_parquet("C:\Users\nguye4tg\Downloads\newitem.parquet")
dataset3 = pl.read_parquet("C:\Users\nguye4tg\Downloads\lowvol_newitem.parquet")shape: (10, 4)
MaterialID SalesOrg DistrChan CL4
i64 str i64 str
12420784 "US01" 8 "6067208"... | 49b1113fc3122b1e067786071fb4d097 | {
"intermediate": 0.21208056807518005,
"beginner": 0.5821817517280579,
"expert": 0.2057376354932785
} |
41,220 | How do I fade out an object in Unity using opaque material | 874e9ebc3614570405529f79a1570275 | {
"intermediate": 0.5172505974769592,
"beginner": 0.25857940316200256,
"expert": 0.22416995465755463
} |
41,221 | here’s some neverseen crazy stuff: “”“(((To ensure a seamless and productive interaction with an AI artist in this creative chat, the following guidelines should be closely followed:
1. SVG Code Formatting: The SVG code must be delivered as a single, uninterrupted string. This means no line breaks, spaces, or addition... | 3402030cb81488af9b91958ed59a8ffc | {
"intermediate": 0.4063483476638794,
"beginner": 0.39298179745674133,
"expert": 0.20066988468170166
} |
41,222 | here’s some neverseen crazy stuff: “”“(((To ensure a seamless and productive interaction with an AI artist in this creative chat, the following guidelines should be closely followed:
1. SVG Code Formatting: The SVG code must be delivered as a single, uninterrupted string. This means no line breaks, spaces, or addition... | 2d238fe6d267976511ec45a80f6540ef | {
"intermediate": 0.4063483476638794,
"beginner": 0.39298179745674133,
"expert": 0.20066988468170166
} |
41,223 | here’s some neverseen crazy stuff: “”“(((To ensure a seamless and productive interaction with an AI artist in this creative chat, the following guidelines should be closely followed:
1. SVG Code Formatting: The SVG code must be delivered as a single, uninterrupted string. This means no line breaks, spaces, or addition... | 54316618d92dbc45c4df94257ee36dc5 | {
"intermediate": 0.4063483476638794,
"beginner": 0.39298179745674133,
"expert": 0.20066988468170166
} |
41,224 | This is a prod sense question: In a Batch system, How to use metrics analysis success for Dropbox? | 0cc109ba60685b0f1036d7d3e5c09f64 | {
"intermediate": 0.5482724905014038,
"beginner": 0.20704728364944458,
"expert": 0.2446802407503128
} |
41,225 | why no work
let markerDay : MarkerDay(time: time, markers: [Marker] = []) | 98b02df1668ea769a424ac3abd999a16 | {
"intermediate": 0.34656473994255066,
"beginner": 0.351796954870224,
"expert": 0.30163824558258057
} |
41,226 | I have a giant JSON array I'm trying to read and write to from Xcode UserDefaults storage. I only need to edit one array inside of it at a time. How do I handle this in Xcode / swift | 9addf46c54ced9d454e5335d54c0fe1d | {
"intermediate": 0.6736857295036316,
"beginner": 0.1409086436033249,
"expert": 0.1854056566953659
} |
41,227 | epoch millis to hour of day. Like 7:23 PM, or 1:23 AM | b7b3d45ebdda71c29f254370990f457d | {
"intermediate": 0.36704203486442566,
"beginner": 0.2921185791492462,
"expert": 0.3408393859863281
} |
41,228 | "epoch millis to hour of day. Like 7:23 PM, or 1:23 AM"
in swift | c257f8131812b11a5242264bcfb21476 | {
"intermediate": 0.39247453212738037,
"beginner": 0.2967503070831299,
"expert": 0.31077516078948975
} |
41,229 | get game object from raycast result (defold lua script) | 8966ca5ddba68921bd18c42dd9d7d883 | {
"intermediate": 0.4457798898220062,
"beginner": 0.2617299556732178,
"expert": 0.292490154504776
} |
41,230 | get go from raycast result defold lua script | bd1d79dbfb5ba672bdc5ca73dfffc2fa | {
"intermediate": 0.3800923228263855,
"beginner": 0.3262530565261841,
"expert": 0.2936546206474304
} |
41,231 | defold script with ray_cast_response | ce2158bb5e67e60569ad04d4e589df00 | {
"intermediate": 0.2957862615585327,
"beginner": 0.31087616086006165,
"expert": 0.39333757758140564
} |
41,232 | find distance between two vector3 (defold lua script) | 24ad9a5543bcb007d1c443a216a3dc8a | {
"intermediate": 0.38663458824157715,
"beginner": 0.29317864775657654,
"expert": 0.3201867938041687
} |
41,233 | HI! | 05ea0ed337696655d3a0e760d92ef233 | {
"intermediate": 0.3374777138233185,
"beginner": 0.2601830065250397,
"expert": 0.40233927965164185
} |
41,234 | here’s some neverseen crazy stuff: “”“(((To ensure a seamless and productive interaction with an AI artist or “GPT-4-to-image prompt-model” in this creative chat, the following guidelines should be closely followed:
1. SVG Code Formatting: The SVG code must be delivered as a single, uninterrupted string. This means no... | eacd1c04134016568ba410798e9da103 | {
"intermediate": 0.3495253622531891,
"beginner": 0.35338303446769714,
"expert": 0.2970915734767914
} |
41,235 | here’s some neverseen crazy stuff: “”“(((To ensure a seamless and productive interaction with an AI artist or “GPT-4-to-image prompt-model” in this creative chat, the following guidelines should be closely followed:
1. SVG Code Formatting: The SVG code must be delivered as a single, uninterrupted string. This means no... | e92e14ee7e049992c575014c5dcb3d23 | {
"intermediate": 0.3495253622531891,
"beginner": 0.35338303446769714,
"expert": 0.2970915734767914
} |
41,236 | here’s some neverseen crazy stuff: “”“(((To ensure a seamless and productive interaction with an AI artist or “GPT-4-to-image prompt-model” in this creative chat, the following guidelines should be closely followed:
1. SVG Code Formatting: The SVG code must be delivered as a single, uninterrupted string. This means no... | 799872f1cebcfa2896ffab0e187633d9 | {
"intermediate": 0.3495253622531891,
"beginner": 0.35338303446769714,
"expert": 0.2970915734767914
} |
41,237 | Convert this to a strategy
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// © RickSimpson
//@version=4
study(title="Rain On Me V2", shorttitle='ROM V2', overlay=true, max_bars_back=300)
//Inputs
showbs = input(defval=true, title="Show ATR?")
showv... | 6ab9f9439c0baa8584527f8cb2459aaa | {
"intermediate": 0.23196667432785034,
"beginner": 0.3939167261123657,
"expert": 0.37411656975746155
} |
41,238 | The AAVE sentence "He nice" is equivalent to the Standard American English sentence "He is nice." In other words, the AAVE sentence is formed by deleting "is" from the SAE sentence.
is this true or false | 36cb3c87ff765ef4159f7ef7d98bcdc4 | {
"intermediate": 0.32610073685646057,
"beginner": 0.36881938576698303,
"expert": 0.30507996678352356
} |
41,239 | write a Java code to generate random matrices, A,B,C,D, the matrices have to be 4x4, After generating the matrices have to do this operation B*C+D*E-A*E+B+D
and print the resultant matrix
[the code has to be parallelized] | cd62c3977b594e47ea442624994f6f0d | {
"intermediate": 0.3910177946090698,
"beginner": 0.09035634249448776,
"expert": 0.5186258554458618
} |
41,240 | write a Java code to generate random matrices, A,B,C,D, the matrices have to be 4x4, After generating the matrices have to do this operation B*C+D*E-A*E+B*D
and print the resultant matrix
[the code has to be parallelized] | c3c0b59af9c15a581b54a524d9237aff | {
"intermediate": 0.39259061217308044,
"beginner": 0.09261620044708252,
"expert": 0.5147931575775146
} |
41,241 | You are a kindergarten teacher. Make a worksheet to help beginners identify and find words with the letter c in sentences. There should be 10 sentences for the students to find words in. | 59130e2a8186e4c1bd625a4a625a1fc7 | {
"intermediate": 0.3638063371181488,
"beginner": 0.2846865952014923,
"expert": 0.35150712728500366
} |
41,242 | Take a look at this code:
import java.util.Random;
import java.util.concurrent.RecursiveTask;
import java.util.concurrent.ForkJoinPool;
public class ParallelMatrixOperation {
private static final int SIZE = 4;
public static void main(String[] args) {
double[][] A = generateRandomMatrix();
do... | 540d6216258a93904ce5dad60d57a1d8 | {
"intermediate": 0.39721521735191345,
"beginner": 0.4270017147064209,
"expert": 0.17578306794166565
} |
41,243 | HI! | 50ef9591342b418d0599171ea94c1943 | {
"intermediate": 0.3374777138233185,
"beginner": 0.2601830065250397,
"expert": 0.40233927965164185
} |
41,244 | // C program to demonstrate working of wait()
#include<stdio.h>
#include<stdlib.h>
#include<sys/wait.h>
#include<unistd.h>
int main()
{
printf("test1 ");
pid_t cpid;
if (fork()== 0){
printf("hiiiii\n");
exit(1);
} /* terminate child */
else{
cpid = wait(NULL); /* ... | 39c9c6da85b30064859364304eae7bb5 | {
"intermediate": 0.28130069375038147,
"beginner": 0.5410160422325134,
"expert": 0.17768317461013794
} |
41,245 | You must write a program containing two classes (i.e., Student and Roster). The program will maintain a current roster of students within a given course. Student data for the program include student ID, first name, last name, email address, age, an array of the number of days to complete each course, and degree program... | f6306803d5a55c20274307a4669605db | {
"intermediate": 0.39396828413009644,
"beginner": 0.23413582146167755,
"expert": 0.371895968914032
} |
41,246 | i want you to create a c++ program using vector to calculate the sum of 2 integers. Note that integers can be very big so so use vectors to store each single number in the integer then utilize long addition to calculate the sum | 55f53aa6a1195bb0bdc2a8084037e860 | {
"intermediate": 0.44538724422454834,
"beginner": 0.19471846520900726,
"expert": 0.3598942756652832
} |
41,247 | class Solution:
def minimumLength(self, s: str) -> int:
i, j = 0, -1
t1 = ''
t2 = ''
while s[i] == s[i+1]:
t1 += s[i]
i += 1
while s[j] == s[j-1]:
t2 += s[j]
j -= 1
if set(t1) == set(t2):
s.replace(t1,'')
... | b1c3109a7ecd0104c8b71f7099f238a2 | {
"intermediate": 0.2705579102039337,
"beginner": 0.5345370173454285,
"expert": 0.1949051022529602
} |
41,248 | hi | b47d990d9a49cf8934c0ba3c0a809061 | {
"intermediate": 0.3246487081050873,
"beginner": 0.27135494351387024,
"expert": 0.40399640798568726
} |
41,249 | Can you do a Leizburg glossing on the sentence: "The stakes are too high for you to stay home."? Give me a guide so I can understand because I know little about glossing in lingusistics. | 86691ac4889db9398326f27d1cdc724d | {
"intermediate": 0.37737321853637695,
"beginner": 0.25497618317604065,
"expert": 0.3676506280899048
} |
41,250 | Write function on c# which converts int to ushort array with check of little or big endian | 4b3f8b2ad74bcd05ca1e888bf4af0034 | {
"intermediate": 0.4092063307762146,
"beginner": 0.3367832601070404,
"expert": 0.2540103495121002
} |
41,251 | what is a json string | 69d22cb0c8199bf1a396e3047a11e746 | {
"intermediate": 0.36136123538017273,
"beginner": 0.42303338646888733,
"expert": 0.21560534834861755
} |
41,252 | I have a react effector code here. How do I return an Error if the case if appeal.id is equal to undefined?
sample({
clock: sendStickerEv,
target: sendSingleMessageFx,
source: { appeal: $currentAppeal, appeals: $appeals },
fn: ({ appeal, appeals }, stickerUrl) => {
if (appeal?.id !== undefined) {
cons... | 5f5964f955795d3324d1e512f62fe615 | {
"intermediate": 0.41698160767555237,
"beginner": 0.45263683795928955,
"expert": 0.13038158416748047
} |
41,253 | small_conv_arch这行代码是什么意思 | 11d7a48b69fcc3beca4c230d53853e78 | {
"intermediate": 0.2122240662574768,
"beginner": 0.20917342603206635,
"expert": 0.5786024928092957
} |
41,254 | Write function on c# which converts hex string array (contains MAC adress) to ushort array (length of 3) | af932058f10a3e8b44c8faab567a6dbc | {
"intermediate": 0.4277178943157196,
"beginner": 0.26279228925704956,
"expert": 0.30948978662490845
} |
41,255 | Design a recursive algorithm that finds the largest value in an array. | 070bfa5924a73d8a2be7b3c11e91506e | {
"intermediate": 0.07369917631149292,
"beginner": 0.04315459355711937,
"expert": 0.8831462264060974
} |
41,256 | in react javascript, how to add optional parameters? | 3623f9e5c8b74fb34e4ff3ad11a5e494 | {
"intermediate": 0.44542887806892395,
"beginner": 0.2816559076309204,
"expert": 0.272915244102478
} |
41,257 | expected_start = ['\n -> ' + event["expected_sequence"] for event in expected_hint if event['event_type'] == 'start']expected_end = ['\n -> ' + event['expected_sequence'] for event in expected_hint if event['event_type'] == 'end'] | 61d53c0e2dbc21b877fe714cf3f7716d | {
"intermediate": 0.40320855379104614,
"beginner": 0.30477458238601685,
"expert": 0.292016863822937
} |
41,258 | how to find the size of a triangle if three vertices are there | 48cebd92a99ff559879cd7e5ed2d7209 | {
"intermediate": 0.3083771765232086,
"beginner": 0.30611491203308105,
"expert": 0.38550788164138794
} |
41,259 | const Row = ({ index, style }) => {
const rowRef = useRef(null);
const handleCandidateDetailsChange = (event, key, i) => {
console.log("handleCandidateDetailsChange(): ENTER");
setValues(oldValues => {
oldValues[i][key] = event.target.value
return [...oldValues];
})
const... | ee67afdbe5a8ac23d9c08ad6461af690 | {
"intermediate": 0.3258312940597534,
"beginner": 0.5048184394836426,
"expert": 0.1693502515554428
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.