row_id int64 0 48.4k | init_message stringlengths 1 342k | conversation_hash stringlengths 32 32 | scores dict |
|---|---|---|---|
7,427 | now I want this ground platform to be collidable as the rest of random platform generated.: class Platform {
constructor(x, y, w, h) {
this.x = x;
this.y = y;
this.w = w;
this.h = h;
}
collidesWith(obj) {
if (obj.y + obj.h <= this.y) return false;
if (obj.y >= this.y + this.h) return false;
if (obj.x + obj.w <= this.x)... | 91dce29a4c40fe6f91d6ba4020cb3714 | {
"intermediate": 0.31132566928863525,
"beginner": 0.4732394516468048,
"expert": 0.21543489396572113
} |
7,428 | This is my current ide code for gui highsum game:
"import GUIExample.GameTableFrame;
import Model.*;
import GUIExample.LoginDialog;
public class GUIExample {
private Dealer dealer;
private Player player;
private GameTableFrame app;
public GUIExample() {
}
public void run() {
dealer.... | a1da86c5865148ae67d3c4a0eba3ee94 | {
"intermediate": 0.2949845790863037,
"beginner": 0.5130499601364136,
"expert": 0.19196540117263794
} |
7,429 | #include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <time.h>
typedef enum { BEAR, BIRD, PANDA} AnimalType;
typedef enum { ALIVE, DEAD } AnimalStatus;
typedef struct {
int x;
int y;
} Location;
typedef enum { FEEDING, NESTING, WINTERING } SiteType;
typedef struct {
/** animal can be DE... | 27bb3ce70db4fbd8ea5edaa95ece43fc | {
"intermediate": 0.413550466299057,
"beginner": 0.4041331708431244,
"expert": 0.18231633305549622
} |
7,430 | This is my current ide code for gui highsum game:
"import GUIExample.GameTableFrame;
import Model.*;
import GUIExample.LoginDialog;
public class GUIExample {
private Dealer dealer;
private Player player;
private GameTableFrame app;
public GUIExample() {
}
public void run() {
dealer.... | a0f0f629531e743bad0d4b3eada9cd69 | {
"intermediate": 0.2949845790863037,
"beginner": 0.5130499601364136,
"expert": 0.19196540117263794
} |
7,431 | effective connectivity in numerical working memory task refrences. | 4435278900f56eb6bdb0a1c8fe00d95e | {
"intermediate": 0.31974005699157715,
"beginner": 0.20229177176952362,
"expert": 0.47796815633773804
} |
7,432 | how to make this ground platform initial starting position to be drawn from the beginning of execution on whole canvas width? also, add player spawn position at left-top corner.: class Platform {
constructor(x, y, w, h) {
this.x = x;
this.y = y;
this.w = w;
this.h = h;
}
collidesWith(obj) {
if (obj.y + obj.h <= this.y)... | 4a1142302dccaf0c4effd7bc9bde6ebe | {
"intermediate": 0.408431738615036,
"beginner": 0.41773349046707153,
"expert": 0.17383478581905365
} |
7,433 | FSL script for FLIRT for 7 different input volumes for a transformation matrix and reference volume | 8708153496376e0778e272a5709b97dc | {
"intermediate": 0.24592795968055725,
"beginner": 0.16000747680664062,
"expert": 0.5940645933151245
} |
7,434 | how to make this ground platform initial starting position to be drawn from the beginning of execution on whole canvas width? also, add player spawn position at left-top corner.: class Platform {
constructor(x, y, w, h) {
this.x = x;
this.y = y;
this.w = w;
this.h = h;
}
collidesWith(obj) {
if (obj.y + obj.h <= this.y)... | 4bee178912ab456e807a20034ef1dbf7 | {
"intermediate": 0.408431738615036,
"beginner": 0.41773349046707153,
"expert": 0.17383478581905365
} |
7,435 | hello | 94a42682d11ea989de6457a7801c9a2a | {
"intermediate": 0.32064199447631836,
"beginner": 0.28176039457321167,
"expert": 0.39759764075279236
} |
7,436 | how to make this ground platform initial starting position to be drawn from the beginning of execution on whole canvas width? also, add player spawn position at left-top corner.: class Platform {
constructor(x, y, w, h) {
this.x = x;
this.y = y;
this.w = w;
this.h = h;
}
collidesWith(obj) {
if (obj.y + obj.h <= this.y)... | ee6e29a117af89c6fdcf7d5c1a24476a | {
"intermediate": 0.408431738615036,
"beginner": 0.41773349046707153,
"expert": 0.17383478581905365
} |
7,437 | how to make this ground platform initial starting position to be drawn from the beginning of execution on whole canvas width? also, add player spawn position at left-top corner.: class Platform {
constructor(x, y, w, h) {
this.x = x;
this.y = y;
this.w = w;
this.h = h;
}
collidesWith(obj) {
if (obj.y + obj.h <= this.y)... | bb2c88c2fde3a97e1f1eda5b9315be75 | {
"intermediate": 0.408431738615036,
"beginner": 0.41773349046707153,
"expert": 0.17383478581905365
} |
7,438 | I am trying to write a vba code that does the following.
From a goole sheet named 'Current Jobs' that is already open in my chrome browser on my PC, copy columns A:J.
From the different workbooks open on my PC, activate the Excel workbook 'Premises Requests'.
Paste the columns copied from the goole sheet 'Current Jobs... | 182008dfb2536d025545597f32d4804a | {
"intermediate": 0.3744121491909027,
"beginner": 0.4424434006214142,
"expert": 0.1831444501876831
} |
7,439 | C# entity farmeword template func GetTableList | 73de0c7db4f1584d31152f0ed17b6879 | {
"intermediate": 0.3689593970775604,
"beginner": 0.4181520640850067,
"expert": 0.21288847923278809
} |
7,440 | how to adjust spaceness between random platform generated now?: class Platform {
constructor(x, y, w, h) {
this.x = x;
this.y = y;
this.w = w;
this.h = h;
}
collidesWith(obj) {
if (obj.y + obj.h <= this.y) return false;
if (obj.y >= this.y + this.h) return false;
if (obj.x + obj.w <= this.x) return false;
if (obj.x >= ... | 8af37581eb8e284f6dbd10ab7eda8ee1 | {
"intermediate": 0.30238911509513855,
"beginner": 0.414675772190094,
"expert": 0.28293511271476746
} |
7,441 | c# entity framework template func List<T> GetTableList<T>(string name_table) | 58ea8402dc5c58ed1d03bd9f803cd344 | {
"intermediate": 0.4058568775653839,
"beginner": 0.40998575091362,
"expert": 0.18415731191635132
} |
7,442 | self-attention module that tensorflow can invoke | 9be6d01cde1a661d0a0703cb9921dbac | {
"intermediate": 0.37300190329551697,
"beginner": 0.23564793169498444,
"expert": 0.391350120306015
} |
7,443 | I’m building a video game engine using C++ as the coding language and Vulkan for graphics. I am trying to set up a generic renderer using Vulkan that is flexible and will render objects based on a vector that is supplied to it. The renderer will also handle the creation of the window using GLFW and use GLM for all rele... | 09ce35d89ccbf35d48686b066e8dc0fd | {
"intermediate": 0.41963455080986023,
"beginner": 0.41251125931739807,
"expert": 0.16785423457622528
} |
7,444 | how to adjust spaceness between random platform generated now?: class Platform {
constructor(x, y, w, h) {
this.x = x;
this.y = y;
this.w = w;
this.h = h;
}
collidesWith(obj) {
if (obj.y + obj.h <= this.y) return false;
if (obj.y >= this.y + this.h) return false;
if (obj.x + obj.w <= this.x) return false;
if (obj.x >= ... | 73e38c54e1407f47099965df43be7253 | {
"intermediate": 0.30238911509513855,
"beginner": 0.414675772190094,
"expert": 0.28293511271476746
} |
7,445 | This is my current ide code for gui highsum game:
"import GUIExample.GameTableFrame;
import Model.*;
import GUIExample.LoginDialog;
public class GUIExample {
private Dealer dealer;
private Player player;
private GameTableFrame app;
public GUIExample() {
}
public void run() {
dealer.... | 587ab55dc2a32e914f5b16f429b4a097 | {
"intermediate": 0.2949845790863037,
"beginner": 0.5130499601364136,
"expert": 0.19196540117263794
} |
7,446 | for this problem : People in Cubeland use cubic coins. Not only the unit of currency is
called a cube but also the coins are shaped like cubes and their values
are cubes. Coins with values of all cubic numbers up to 9261(= 213),
i.e., coins with the denominations of 1, 8, 27, . . ., up to 9261 cubes,
are available in C... | 53c2cd01533def421ef889e24bfa5ea1 | {
"intermediate": 0.26180118322372437,
"beginner": 0.2773344814777374,
"expert": 0.460864394903183
} |
7,447 | write a code in html and creat a Horizontal icons bar for website | 1f97dd865ed065cb14b59e49d623539f | {
"intermediate": 0.3895936906337738,
"beginner": 0.2464582473039627,
"expert": 0.36394810676574707
} |
7,448 | вот этот код выдает результат в две строчки а ндо чтобы он скливал в 1
import re
import pyperclip
import time
service_pattern = re.compile(r"📜 Услуга: (.*?)\n")
price_pattern = re.compile(r"💸 Цена за 1000: (.*?)\n")
while True:
text = pyperclip.paste()
service_match = re.search(service_pattern, text)
p... | eb6ae624617ff6c5e4db585aa7b70183 | {
"intermediate": 0.2870742380619049,
"beginner": 0.4807407855987549,
"expert": 0.23218491673469543
} |
7,449 | how to adjust spaceness between random platform generated now?: class Platform {
constructor(x, y, w, h) {
this.x = x;
this.y = y;
this.w = w;
this.h = h;
}
collidesWith(obj) {
if (obj.y + obj.h <= this.y) return false;
if (obj.y >= this.y + this.h) return false;
if (obj.x + obj.w <= this.x) return false;
if (obj.x >= ... | f4974a71cf6a77163adf616d2c84602c | {
"intermediate": 0.30238911509513855,
"beginner": 0.414675772190094,
"expert": 0.28293511271476746
} |
7,450 | I’m building a video game engine using C++ as the coding language and Vulkan for graphics. I am trying to set up a generic renderer using Vulkan that is flexible and will render objects based on a vector that is supplied to it. The renderer will also handle the creation of the window using GLFW and use GLM for all rele... | d2e2774563966b4dcd2811cfbeda2336 | {
"intermediate": 0.41963455080986023,
"beginner": 0.41251125931739807,
"expert": 0.16785423457622528
} |
7,451 | Выводит "ɪɢ ⭐ Реальные быстрые подписчики ⟮ ♻ ʀ 150 ⟯
- Цена за 1000: 330.50 ₽"
а надо
"ɪɢ ⭐ Реальные быстрые подписчики ⟮ ♻ ʀ 150 ⟯ - Цена за 1000: 330.50 ₽"
import re
import pyperclip
import time
service_pattern = re.compile(r"📜 Услуга: (.*)\n")
price_pattern = re.compile(r"💸 Цена за 1000: (.*)\n")
while True:... | 145202507fde0d21f71f147dd4c64632 | {
"intermediate": 0.2811773121356964,
"beginner": 0.4758736491203308,
"expert": 0.2429490089416504
} |
7,452 | tabs with angular | 02e7e289a3061c2ecc4cc21dd6e8c00c | {
"intermediate": 0.4428001046180725,
"beginner": 0.2620786130428314,
"expert": 0.2951212227344513
} |
7,453 | change :import numpy as np
import xarray as xr
import pandas as pd
from scipy.cluster.hierarchy import fcluster, linkage
import datetime
def main(input_file, output_file, num_clusters, time_file):
# Read the input file
dataset = xr.open_dataset(input_file)
msl = dataset['msl']
time, lat, lon = msl.shape
scheme
Copy
#... | df59baac426ee5947535e3d99f7c8381 | {
"intermediate": 0.40483227372169495,
"beginner": 0.37829092144966125,
"expert": 0.21687673032283783
} |
7,454 | 5 top tech content on tictock | ce7b57133c31c7eb0697dc83b355fed6 | {
"intermediate": 0.31207647919654846,
"beginner": 0.17941929399967194,
"expert": 0.5085042119026184
} |
7,455 | I’m building a video game engine using C++ as the coding language and Vulkan for graphics. I am trying to set up a generic renderer using Vulkan that is flexible and will render objects based on a vector that is supplied to it. The renderer will also handle the creation of the window using GLFW and use GLM for all rele... | f7364c4b88bacb05faf1db424aef9c88 | {
"intermediate": 0.41963455080986023,
"beginner": 0.41251125931739807,
"expert": 0.16785423457622528
} |
7,456 | asyncio how to create delay every asnc? | e354f91b05d8023c58ee74830c46c1c5 | {
"intermediate": 0.43096086382865906,
"beginner": 0.11891818791627884,
"expert": 0.4501209259033203
} |
7,457 | I’m building a video game engine using C++ as the coding language and Vulkan for graphics. I am trying to set up a generic renderer using Vulkan that is flexible and will render objects based on a vector that is supplied to it. The renderer will also handle the creation of the window using GLFW and use GLM for all rele... | f16fb4986fdae75e2d81b57720a488c4 | {
"intermediate": 0.41963455080986023,
"beginner": 0.41251125931739807,
"expert": 0.16785423457622528
} |
7,458 | Wrapping an editable Table using JavaScript language | 409f604745ff7ac065f45c159f656e11 | {
"intermediate": 0.3445320725440979,
"beginner": 0.3210679888725281,
"expert": 0.33439990878105164
} |
7,459 | from kivy.app import App
from kivy.uix.screenmanager import ScreenManager, Screen
from kivy.uix.button import Button
from kivy.uix.image import Image
from kivy.graphics.texture import Texture
from kivy.clock import Clock
from kivy.metrics import dp
from kivy.properties import StringProperty
import JsonUtl as jsonutil
i... | 2c16125c6e90bd30c4ea512d284d6af6 | {
"intermediate": 0.34830307960510254,
"beginner": 0.4917553961277008,
"expert": 0.15994147956371307
} |
7,460 | This is my current ide code for highsum gui game:
"import GUIExample.GameTableFrame;
import Model.*;
import GUIExample.LoginDialog;
public class GUIExample {
private Dealer dealer;
private Player player;
private GameTableFrame app;
public GUIExample() {
}
public void run() {
dealer.... | a1ea4a0fe7587044cb3937c282a13f39 | {
"intermediate": 0.2964317500591278,
"beginner": 0.5162970423698425,
"expert": 0.18727116286754608
} |
7,461 | Почему в Python нет switch? | 3c6727e4415718ee2820b51c7c15cc31 | {
"intermediate": 0.3269446790218353,
"beginner": 0.18608833849430084,
"expert": 0.486966997385025
} |
7,462 | This is my current ide code for highsum gui game:
"import GUIExample.GameTableFrame;
import Model.*;
import GUIExample.LoginDialog;
public class GUIExample {
private Dealer dealer;
private Player player;
private GameTableFrame app;
public GUIExample() {
}
public void run() {
dealer.... | f36ef060993c625e48b7b1a4f09f69ac | {
"intermediate": 0.32513532042503357,
"beginner": 0.5644948482513428,
"expert": 0.11036981642246246
} |
7,463 | Python compare strings | 3561306442d55d7d02bd8842c15de840 | {
"intermediate": 0.4196976125240326,
"beginner": 0.3679305911064148,
"expert": 0.21237173676490784
} |
7,464 | После успешной авторизации создай набор анимация для обработки его появления и исчезновения , сделай это с помощью ресурса формата векторной анимации пиши код максимально подробно , ничего не упусти вот мой код :package com.example.myapp_2.Data.register;
import android.content.SharedPreferences;
import android.os.... | 33c798ee51ca87f041bff0f106673f59 | {
"intermediate": 0.35746273398399353,
"beginner": 0.49588140845298767,
"expert": 0.1466558575630188
} |
7,465 | I’m building a video game engine using C++ as the coding language and Vulkan for graphics. I am trying to set up a generic renderer using Vulkan that is flexible and will render objects based on a vector that is supplied to it. The renderer will also handle the creation of the window using GLFW and use GLM for all rele... | 284565811d7c1b3f16230147e5151245 | {
"intermediate": 0.41963455080986023,
"beginner": 0.41251125931739807,
"expert": 0.16785423457622528
} |
7,466 | This is my current ide code for highsum gui game:
"import GUIExample.GameTableFrame;
import Model.*;
import GUIExample.LoginDialog;
public class GUIExample {
private Dealer dealer;
private Player player;
private GameTableFrame app;
public GUIExample() {
}
public void run() {
dealer.... | 42b60c803ea8c758f619fba1d8a38bdb | {
"intermediate": 0.32513532042503357,
"beginner": 0.5644948482513428,
"expert": 0.11036981642246246
} |
7,467 | I have this latex
"""
\newenvironment{legalsection}{
% https://latex.org/forum/viewtopic.php?t=10456
\titleformat{\section}[block]{\bfseries}{\vspace{9pt}\thesection.0\hspace{1em}}{2em}{\fontsize{15pt}{\baselineskip}\selectfont\hangindent=2em}
\titleformat{\subsection}[block]{\bfseries}{\vspace{9pt}\thesubsection\hspa... | 4101718310c87a7af9d5dc79ea67adc7 | {
"intermediate": 0.3550613820552826,
"beginner": 0.2996511161327362,
"expert": 0.3452875316143036
} |
7,468 | dot tabs to swicth between mobile colors html and css | d2ab95329e078e5f88f4afcbf0861843 | {
"intermediate": 0.4363905191421509,
"beginner": 0.24263779819011688,
"expert": 0.3209717273712158
} |
7,469 | explice this pattern {{0,9}} {{99}} {{99}} {{9*}} {{999}} {{999}} | 92f46b2bdbba7fa03caba45e605142b9 | {
"intermediate": 0.3020790219306946,
"beginner": 0.3718142509460449,
"expert": 0.3261066973209381
} |
7,470 | I’m building a video game engine using C++ as the coding language and Vulkan for graphics. I am trying to set up a generic renderer using Vulkan that is flexible and will render objects based on a vector that is supplied to it. The renderer will also handle the creation of the window using GLFW and use GLM for all rele... | 0a654c05495596c1c09263f0f5a41be9 | {
"intermediate": 0.41963455080986023,
"beginner": 0.41251125931739807,
"expert": 0.16785423457622528
} |
7,471 | use radio buttons in angular as image switchers | 99baec01b0cc9e93de9ae29021519423 | {
"intermediate": 0.5334023237228394,
"beginner": 0.22825591266155243,
"expert": 0.23834174871444702
} |
7,472 | c# wpf button rotate code | 986d654a3e5561767b93a75e22e05bce | {
"intermediate": 0.2981618046760559,
"beginner": 0.38859647512435913,
"expert": 0.31324172019958496
} |
7,473 | This is my current ide code for highsum gui game:
"import GUIExample.GameTableFrame;
import Model.*;
import GUIExample.LoginDialog;
public class GUIExample {
private Dealer dealer;
private Player player;
private GameTableFrame app;
public GUIExample() {
}
public void run() {
dealer.... | 5dc7cabecbae6771e9d0568e5d702aa3 | {
"intermediate": 0.32513532042503357,
"beginner": 0.5644948482513428,
"expert": 0.11036981642246246
} |
7,474 | '<?xml version="1.0" encoding="UTF-8"?>\n<rows><row id="16971046"><cell>0</cell><cell>16971046</cell><cell>XJ-1005050-16971046</cell><cell>000102050000000000003665</cell><cell>广州市朝阳中路原网通3楼机房</cell><cell>交流不间断电源设备(UPS)-UPS电源</cell><cell>62838223</cell><cell>9501002041</cell><cell>资产盘点</cell><cell>290000002</cell><cell>待... | 8c2d46aff7dccf3d627a32b97ec6eb4e | {
"intermediate": 0.3057275116443634,
"beginner": 0.4330957531929016,
"expert": 0.2611767649650574
} |
7,475 | what is build-essential package. what it contains? | 5f07cadd384562e20979568e72ec0110 | {
"intermediate": 0.4546343684196472,
"beginner": 0.27160146832466125,
"expert": 0.27376416325569153
} |
7,476 | from google.colab import drive
drive.mount('/content/drive')
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
from sklearn.cluster import KMeans
from sklearn.preprocessing import StandardScaler
from sklearn.model_selection import train_test_split
water_data = pd.read_csv('/content/drive/MyDrive/... | 528562ed5bdcbb5245b82dc67000015e | {
"intermediate": 0.23270756006240845,
"beginner": 0.3765867352485657,
"expert": 0.39070576429367065
} |
7,477 | I’m building a video game engine using C++ as the coding language and Vulkan for graphics. I am trying to set up a generic renderer using Vulkan that is flexible and will render objects based on a vector that is supplied to it. The renderer will also handle the creation of the window using GLFW and use GLM for all rele... | c538046461c55fa34ed6837b168ab47f | {
"intermediate": 0.41963455080986023,
"beginner": 0.41251125931739807,
"expert": 0.16785423457622528
} |
7,478 | Give me the html code for a horizontal product | 4f82c11ed4c13ef5983fdda0895fa18d | {
"intermediate": 0.378393292427063,
"beginner": 0.3390377163887024,
"expert": 0.28256896138191223
} |
7,479 | напиши бота на питоне для ютуба, который комментирует все последние видео на канале, с тем набором комментариев, который ты написал заранее | cb9ba26513a4fae83d565558a4885eb0 | {
"intermediate": 0.32978537678718567,
"beginner": 0.2628065049648285,
"expert": 0.40740811824798584
} |
7,480 | In python, make a rust clan predictor that predicts the top 3 next grids for a rust clan. You have the past locations and the map is from A0 to U25. It needs to use machine learning and the grids cannot be the old ones. The data is: ['N3', 'H4', 'H2', '13', 'K1'] | db8f97ba5bca8b6927610326c6051f87 | {
"intermediate": 0.1835172176361084,
"beginner": 0.06385895609855652,
"expert": 0.7526238560676575
} |
7,481 | how to set drawable as bg not color for Box():
.background(Color.Red)
.size(100.dp)) { | fcfe4179a44b263d8016ebfe828f7ebc | {
"intermediate": 0.48416659235954285,
"beginner": 0.17778290808200836,
"expert": 0.3380505442619324
} |
7,482 | which programming language uses android studio? | be74dbd4d43cd4e6f3acaa1b6120f811 | {
"intermediate": 0.48140886425971985,
"beginner": 0.26376137137413025,
"expert": 0.2548297643661499
} |
7,483 | .background(
R.drawable.device_pc
)
None of the following functions can be called with the arguments supplied.
Modifier.background(Brush, Shape = ..., Float = ...) defined in androidx.compose.foundation
Modifier.background(Color, Shape = ...) defined in androidx.compose.foundation | 09e6eabff0138b9f45bfb1831073f772 | {
"intermediate": 0.30839893221855164,
"beginner": 0.44130825996398926,
"expert": 0.2502927780151367
} |
7,484 | This is my current ide code for highsum gui game:
"import GUIExample.GameTableFrame;
import Model.*;
import GUIExample.LoginDialog;
public class GUIExample {
private Dealer dealer;
private Player player;
private GameTableFrame app;
public GUIExample() {
}
public void run() {
dealer.... | 9e667ba69ffa61258009c27631d7d25c | {
"intermediate": 0.32649990916252136,
"beginner": 0.5263072848320007,
"expert": 0.1471928358078003
} |
7,485 | In python, make a rust clan predictor that predicts the top 3 next grids for a rust clan. You have the past locations and the map is from A0 to U25. It needs to use machine learning and the grids cannot be the old ones. The data is: ['N3', 'H4', 'H2', '13', 'K1'] | c472d6f329ca75c8fcc82440afb6985f | {
"intermediate": 0.1835172176361084,
"beginner": 0.06385895609855652,
"expert": 0.7526238560676575
} |
7,486 | I’m building a video game engine using C++ as the coding language and Vulkan for graphics. I am trying to set up a generic renderer using Vulkan that is flexible and will render objects based on a vector that is supplied to it. The renderer will also handle the creation of the window using GLFW and use GLM for all rele... | 325c2dffeefc528fd77998bda60c5b8b | {
"intermediate": 0.41963455080986023,
"beginner": 0.41251125931739807,
"expert": 0.16785423457622528
} |
7,487 | This is my current ide code for highsum gui game:
“import GUIExample.GameTableFrame;
import Model.;
import GUIExample.LoginDialog;
public class GUIExample {
private Dealer dealer;
private Player player;
private GameTableFrame app;
public GUIExample() {
}
public void run() {
dealer.shuffleCards();
app = new GameTab... | d9e5620865fb4b38d7f826c5be824163 | {
"intermediate": 0.31883761286735535,
"beginner": 0.5255798101425171,
"expert": 0.15558259189128876
} |
7,488 | how can i solve this problem: Failed to fetch https://github.com/BorisBel02/luna_ppa/dists/luna/main/binary-amd64/Packages 404 Not Found [IP: 140.82.121.3 443]
E: Some index files failed to download. They have been ignored, or old ones used instead. | bda71104af0718e263b77b153c0eb555 | {
"intermediate": 0.5345191955566406,
"beginner": 0.1975126713514328,
"expert": 0.267968088388443
} |
7,489 | I’m building a video game engine using C++ as the coding language and Vulkan for graphics. I am trying to set up a generic renderer using Vulkan that is flexible and will render objects based on a vector that is supplied to it. The renderer will also handle the creation of the window using GLFW and use GLM for all rele... | 0b6b0d7c9b35c1dbd2807de2e971b3dd | {
"intermediate": 0.41963455080986023,
"beginner": 0.41251125931739807,
"expert": 0.16785423457622528
} |
7,490 | переведи функцию на c++
void __fastcall CCoronas::RegisterCorona(
u_native ID,
CEntity *pAttachedToEntity,
UInt8 R,
UInt8 G,
UInt8 B,
unsigned int Intensity,
const CVector *Coors,
float Size,
float Range,
RwTexture_0 *pCoronaTex,
UI... | 3260891dd741787ce8489e5d036852d3 | {
"intermediate": 0.29468634724617004,
"beginner": 0.41470491886138916,
"expert": 0.2906087636947632
} |
7,491 | This is my current ide code for highsum gui game:
"import GUIExample.GameTableFrame;
import Model.*;
import GUIExample.LoginDialog;
public class GUIExample {
private Dealer dealer;
private Player player;
private GameTableFrame app;
public GUIExample() {
}
public void run() {
dealer.... | 33971e6a097ef12786aa4be337569844 | {
"intermediate": 0.32649990916252136,
"beginner": 0.5263072848320007,
"expert": 0.1471928358078003
} |
7,492 | import pygame
import time
import random
pygame.init()
white = (255, 255, 255)
yellow = (255, 255, 102)
black = (0, 0, 0)
red = (213, 50, 80)
green = (0, 255, 0)
blue = (50, 153, 213)
dis_width = 1000
dis_height = 800
dis = pygame.display.set_mode((dis_width, dis_height))
pygame.display.set_caption('Snake')
clock =... | 8f520483b3878369d2933cb8d4b83e7a | {
"intermediate": 0.3403594195842743,
"beginner": 0.4261748492717743,
"expert": 0.2334657460451126
} |
7,493 | import pygame
import time
import random
pygame.init()
white = (255, 255, 255)
yellow = (255, 255, 102)
black = (0, 0, 0)
red = (213, 50, 80)
green = (0, 255, 0)
blue = (1, 6, 148)
gray = (128, 128, 128)
dark_green = (18, 112, 8)
dis_width = 1000
dis_height = 800
dis = pygame.display.set_mode((dis_width, dis_height)... | 68e34be66ebcd5e739e5465b47be3a19 | {
"intermediate": 0.30620506405830383,
"beginner": 0.42386531829833984,
"expert": 0.26992958784103394
} |
7,494 | import pygame
import time
import random
pygame.init()
white = (255, 255, 255)
yellow = (255, 255, 102)
black = (0, 0, 0)
red = (213, 50, 80)
green = (0, 255, 0)
blue = (1, 6, 148)
gray = (128, 128, 128)
dark_green = (18, 112, 8)
dis_width = 1000
dis_height = 800
dis = pygame.display.set_mode((dis_width, dis_height)... | 7d4e5c1dd8894d233405d1a4b66d579c | {
"intermediate": 0.2596583962440491,
"beginner": 0.4756056070327759,
"expert": 0.26473596692085266
} |
7,495 | is alpine os has openmpi packages? | d18e647c63a2ac059a4063a8e369d787 | {
"intermediate": 0.4387373626232147,
"beginner": 0.17297512292861938,
"expert": 0.38828757405281067
} |
7,496 | This is the IDE program code:
"import java.util.ArrayList;
public class BinarySearchSequence {
public static ArrayList<Integer> binarySearchIndexSequence(int num, int[] numArray) {
ArrayList<Integer> sequence = new ArrayList<Integer>();//do not change
//complete your code here
return sequence;//do n... | 33381b98d72a01b8f326e3a2fb1eb1c8 | {
"intermediate": 0.23971842229366302,
"beginner": 0.4672833979129791,
"expert": 0.29299819469451904
} |
7,497 | You are an expert in the field of data processing and software programming. I will provide you with detailed information about my technical problems, and your responsibility is to help me solve the technical problems. Use the easy-to-understand language in your answer suitable for people at all levels. Step-by-step to ... | e2a0501a8eb0f2efd33f3dceabf5adb6 | {
"intermediate": 0.37103256583213806,
"beginner": 0.29700005054473877,
"expert": 0.33196741342544556
} |
7,498 | code jva advanced for xo game | dc3b8b89540c571e2fe8ce801f121498 | {
"intermediate": 0.3063148558139801,
"beginner": 0.2801593840122223,
"expert": 0.4135257601737976
} |
7,499 | nth digit of int in dart | d2df1589bf0ddacf576b55b8aaaa772e | {
"intermediate": 0.3695368468761444,
"beginner": 0.2975412905216217,
"expert": 0.3329218327999115
} |
7,500 | Create a <hr> for me in the form of a frame | c9ed7ca34254daff50a075552f241f76 | {
"intermediate": 0.3542312681674957,
"beginner": 0.23242926597595215,
"expert": 0.4133394956588745
} |
7,501 | java advanced code for xo game with the class of the server and class of the clinent using network | 74413bc4f0224a759e06b6216d3c883f | {
"intermediate": 0.20715077221393585,
"beginner": 0.20293764770030975,
"expert": 0.5899115204811096
} |
7,502 | I wrote a vba code to check if column B has the word Reminder at the start value. Unfortunately it is not working. Can you help? Sub Checks()
Dim wscf As Worksheet
Dim isReminderPresent As Boolean
Dim insured As Boolean
Dim dbsd As Boolean
Dim lastRow As Long
Dim wsjr As Worksheet
Dim wswp As Worksheet
Dim adminRem... | 58e3e6700106dedbec1408471a2c3e38 | {
"intermediate": 0.4365660846233368,
"beginner": 0.35816067457199097,
"expert": 0.20527325570583344
} |
7,503 | java code of server and client for xo game using networking | 2ee3debcc43a49871ec011e390c03e83 | {
"intermediate": 0.4257214367389679,
"beginner": 0.21109114587306976,
"expert": 0.36318737268447876
} |
7,504 | delegation in kotlin | 28af3c4911f5e7453d0592c8a0a0d615 | {
"intermediate": 0.37858209013938904,
"beginner": 0.2669404447078705,
"expert": 0.35447752475738525
} |
7,505 | Give me the KNN algorithm withe the eculdian Distance to be in a python file | 32668748685fed31b63dac46bcd9ce13 | {
"intermediate": 0.09644696861505508,
"beginner": 0.03369985148310661,
"expert": 0.8698531985282898
} |
7,506 | I have problem with OkHttp in kubernetes cluster. We cannot achieve evenly distribution. Can you fix it? | 27b94d7cc11089c66e940f67af2beff9 | {
"intermediate": 0.5466164946556091,
"beginner": 0.12606088817119598,
"expert": 0.3273226320743561
} |
7,507 | Kaeleigh has emailed you a CSV file with four columns: UBID, enrollment date, graduation date, and student type (either Full-Time or Part-Time). She has requested that you develop a program to filter the file in order to identify students who meet specific criteria. Specifically, you need to identify full-time students... | e632f956b1039977327c8797fa9df02c | {
"intermediate": 0.41018420457839966,
"beginner": 0.27466511726379395,
"expert": 0.3151507079601288
} |
7,508 | webstorm element-plus unknown html tag | 3c954287d58569a0b223bc010574ae6f | {
"intermediate": 0.4708869159221649,
"beginner": 0.2963162064552307,
"expert": 0.23279686272144318
} |
7,509 | #include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <time.h>
#include <unistd.h>
int c = 1;
int num_animals = 3;
typedef enum
{ BEAR, BIRD, PANDA } AnimalType;
typedef enum
{ ALIVE, DEAD } AnimalStatus;
typedef struct
{
int x;
int y;
} Location;
typedef enum
{ FEEDING, NESTING, WINTERING } Sit... | 7f0a42a84f74bfc0ea691d3794c22ecc | {
"intermediate": 0.3619489371776581,
"beginner": 0.5109231472015381,
"expert": 0.12712794542312622
} |
7,510 | code java for add,substruction and multiple two ploynomail use linkedlist and implement the linkedlist class the node of linkedlist contain the power and the coeficient of the polynomial ask the user to enter the two ploynomial | f10534c68b59b3e5551f6f754c5c7efe | {
"intermediate": 0.641753613948822,
"beginner": 0.1837870329618454,
"expert": 0.17445939779281616
} |
7,511 | #include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <time.h>
#include <unistd.h>
#include <string.h>
int c = 1;
int num_animals = 3;
typedef enum
{ BEAR, BIRD, PANDA } AnimalType;
typedef enum
{ ALIVE, DEAD } AnimalStatus;
typedef struct
{
int x;
int y;
} Location;
typedef enum
{ FEEDING, NEST... | 7ec16edf3e1dd3803bc98f89ab37b879 | {
"intermediate": 0.31036311388015747,
"beginner": 0.5123181939125061,
"expert": 0.17731864750385284
} |
7,512 | Write python script for blender that animates 3d spirals | 294c794061542b1f0caf3e0acc048b7f | {
"intermediate": 0.36753904819488525,
"beginner": 0.19641192257404327,
"expert": 0.4360489845275879
} |
7,513 | I need a c++ code that sorting words beginning from "a" to "z", including sorting by secondary ..... infinity letter | 8a21362ab5b2a29051f76127252356dc | {
"intermediate": 0.34074342250823975,
"beginner": 0.16642165184020996,
"expert": 0.4928349554538727
} |
7,514 | Construct a Matlab function [D, Q, iter] = ubitname final . D 1(A.to1) based on the "Pure" QR Algorithm where A is a real and symmetric matrix, tol is the convergence tolerance, D is a matrix that contains the eigenvalues of A on the diagonal, Q is a unitary matrix such that Q ^ T * AQ = D and iter is the number of ite... | 851aa47266d907eb8e2c26fe99c9f71d | {
"intermediate": 0.2622065544128418,
"beginner": 0.3149384558200836,
"expert": 0.4228549897670746
} |
7,515 | User
1. I have one dataframe which has 2 columns 'text' and 'summary'. So make a NLP model to summarise the text.
2. write a function where if I give a text to that function then it will return summary. | 91fa6bdefe0821dda358cca7d3c4f42a | {
"intermediate": 0.32459166646003723,
"beginner": 0.1966683268547058,
"expert": 0.47873997688293457
} |
7,516 | Initialized the class variables with the values passed by constractor
__init__(self,message:str,sender:int,receiver:int) -> None: | 753b3995856c928268c44658f0f130c4 | {
"intermediate": 0.23035991191864014,
"beginner": 0.6247150301933289,
"expert": 0.144925057888031
} |
7,517 | Given 2 string arrays determine if corresponding elements contain a common substring
The function def commonSubstring(a,b):
Fir each a[i] b[i] pair function must print YES if they share common substring or NO on a new line
For each teste print the result on a new line | 46fb01f1953ff51e2e88d18e7916c779 | {
"intermediate": 0.34661197662353516,
"beginner": 0.49267950654029846,
"expert": 0.1607084572315216
} |
7,519 | i have a very long string, I need to find the substring in it that starts with "apple was a" and ends with "House. Inside". Cut out this string with python. | fc6e3927667db0b1a4143e8f453c09bf | {
"intermediate": 0.48661428689956665,
"beginner": 0.228843554854393,
"expert": 0.28454217314720154
} |
7,520 | in python, make a rust clan tracker that predicts where a clan is gonna go next based of their previes locations. It needs to use machine learning and it needs to output 3 grids. The map is from A0 to U25. Previes locations: ['Q8', 'Q10', 'K4', 'N6', 'K5', 'R10', 'S9', 'S11', 'R9', 'O9', 'R8', 'O5', 'O10'] | 52abb6fff588b9fc353b7def6cb55c44 | {
"intermediate": 0.20052644610404968,
"beginner": 0.060671303421258926,
"expert": 0.7388022541999817
} |
7,521 | Сделай правильные импорты в файле и если есть исправь ошибки : package com.example.myapp_2;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import androidx.fragment.app.Fragment;
public class WeatherFragment extend... | 8256993a5657d15ba53e209d137747f4 | {
"intermediate": 0.3755160868167877,
"beginner": 0.37207382917404175,
"expert": 0.2524101436138153
} |
7,522 | I have a VBA code that searches for one value in all my worksheets and pastes it into a single column. I need to adjust the code so that for each value equal to 'Reminder' found in column B of all the worksheets, I want to then copy Column C, Column J, Column L, of the same row as column B to sheet 'Reminders'
and past... | bee98de5868d7d36e5418b20f8aaf075 | {
"intermediate": 0.5736809968948364,
"beginner": 0.2767055630683899,
"expert": 0.14961344003677368
} |
7,523 | db.getCollection('books').find({longDescription: {$gte: "A", $lt: "B", } and authors: {$size: 2} }, {title: 1, longDescription: 1}) | 9ae92d755629d4edade027df7cac41cf | {
"intermediate": 0.39927908778190613,
"beginner": 0.2269904911518097,
"expert": 0.37373045086860657
} |
7,524 | Я хочу чтобы данные через API показалисьв TextView , однако там пусто , укажи что необходимо исправить :package com.example.myapp_2;
import com.google.gson.annotations.SerializedName;
import java.util.List;
public class ForecastResponse {
@SerializedName("list")
private List<WeatherForecast> weatherForecastL... | 54c3cde4c1265187c41ad20ddd1886c7 | {
"intermediate": 0.32621094584465027,
"beginner": 0.5525607466697693,
"expert": 0.12122836709022522
} |
7,525 | I want to create an application that creates random monsters from various parts and need to know where to start | a49f33a7b8672cee23ab072e6cc2d9d0 | {
"intermediate": 0.28948360681533813,
"beginner": 0.1895320862531662,
"expert": 0.5209842920303345
} |
7,526 | I need help of an expert google sheets script writer, and I know you are the best. In the active sheet the script should set the background color to #DFE3E7 in columns C, H, M, and R and to #D3D3DF" in columns D, I, N, and S. However it should not make any changes in rows where the cell in the A column has text that e... | 462d58250d24ce237b1b8520d6e8087a | {
"intermediate": 0.3587663769721985,
"beginner": 0.24759744107723236,
"expert": 0.39363622665405273
} |
7,527 | #include <cstring>
#include <ctime>
#include <cstdlib>
#include <fstream>
using namespace std;
struct date {
int day;
char *month;
int year;
};
struct fio {
char *name;
char *surname;
char *patronymic;
};
struct car {
char *brand;
fio owner;
int engine_power;
int mileage;
date last_service;
};
void load_data(car *... | f6cf1260ea6aea3c2ac661850bcd20c8 | {
"intermediate": 0.3739689290523529,
"beginner": 0.35656529664993286,
"expert": 0.26946574449539185
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.