row_id
int64
0
48.4k
init_message
stringlengths
1
342k
conversation_hash
stringlengths
32
32
scores
dict
8,330
hello
472bd6a7fca72dca2bd1fa69bd1d6d0e
{ "intermediate": 0.32064199447631836, "beginner": 0.28176039457321167, "expert": 0.39759764075279236 }
8,331
The code below is not displaying the Word "Last Twenty Jobs", and it is also deleting the top three rows above it: Sub LastTenJobs() Dim wscf As Worksheet Dim wsjr As Worksheet Dim lastRow As Long Dim copyRange As Range Dim cell As Range Set wscf = Sheets(Range("G3").Value) Set wsjr = Sheets("Start Page") Applicati...
b403c588409785660a18aad834aab637
{ "intermediate": 0.39333683252334595, "beginner": 0.3331447243690491, "expert": 0.273518443107605 }
8,332
Optimize the code by reducing the number of joins : "import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Row; import org.apache.spark.sql.SparkSession; import org.apache.spark.sql.functions; import static org.apache.spark.sql.functions.*; public class SCDType2Example { public static void main(String[] ar...
18f7164b8834cb8a65c167cab19ca39a
{ "intermediate": 0.3358151614665985, "beginner": 0.3895888924598694, "expert": 0.2745959460735321 }
8,333
Optimize the following code : "irst, we can merge the three join operations that use the same join condition, making use of the when() clause to create or update columns accordingly. This allows us to make just one join operation instead of three separate ones. import org.apache.spark.sql.Dataset; import org.apache.sp...
bd9657a7d9238a390ad96f549794f976
{ "intermediate": 0.2951141893863678, "beginner": 0.48743677139282227, "expert": 0.21744900941848755 }
8,334
Optimize the following code : "import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Row; import org.apache.spark.sql.SparkSession; import org.apache.spark.sql.functions; import static org.apache.spark.sql.functions.*; public class SCDType2Example { public static void main(String[] args) { Spar...
354074bb50473808af8031970676f5a7
{ "intermediate": 0.2776951789855957, "beginner": 0.526039183139801, "expert": 0.19626565277576447 }
8,335
Optimize the following hash function : "private static Dataset createHash(Dataset data, String[] nonKeyColumns, String hashColumn) { Dataset result = data; StringBuilder concatString = new StringBuilder(); for (String column : nonKeyColumns) { concatString.append(“cast(”).append(column).append(" as string),“); } Stri...
f9e599142da16757253145bef030f892
{ "intermediate": 0.2897035777568817, "beginner": 0.19625093042850494, "expert": 0.5140455365180969 }
8,336
The code below is not pasting the values found where I would like it to. The code must first find the first empty row in column F. After the first empty row in column F is found, then it must move down 1 more row before printing the values found. Sub LastTenJobs() Dim wscf As Worksheet Dim wsjr As Worksheet Dim las...
63cbc8d1397acde03d2476f03498779f
{ "intermediate": 0.4457848072052002, "beginner": 0.29783228039741516, "expert": 0.2563829720020294 }
8,337
Improve the following predictive model with feature engineering : "First, let’s import the necessary libraries: import numpy as np import pandas as pd from keras.models import Sequential, Model from keras.layers import Dense, Dropout, Input, Concatenate from keras.optimizers import Adam, RMSprop from keras.utils impor...
cd5fae1164eedd106172d47beaee0a15
{ "intermediate": 0.2796054482460022, "beginner": 0.31295111775398254, "expert": 0.40744346380233765 }
8,338
quiero usar el comando find y hacer una accion con cada resultado, como seria para imprimir el nombre y luego pasarselo a readelf -s
b8973982f606a6e897b494e1a05ca429
{ "intermediate": 0.2934001386165619, "beginner": 0.1279529482126236, "expert": 0.5786468982696533 }
8,339
Let's talk about Java. Teach me about what inheritance is, how to use inheritance in java (extends, super), the "this" keyword in Java, and polymorphism.
22d812269574a6affedff9f5186fcf43
{ "intermediate": 0.3108321726322174, "beginner": 0.45597922801971436, "expert": 0.23318859934806824 }
8,340
Optimize the following code by reducing the number of joins and keeping the schema genericity : “import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Row; import org.apache.spark.sql.SparkSession; import org.apache.spark.sql.functions; import static org.apache.spark.sql.functions.*; public class SCDType2E...
b3af9246d5a8a42817da2665423fbcac
{ "intermediate": 0.3279034197330475, "beginner": 0.3668159246444702, "expert": 0.3052806258201599 }
8,341
Improve the following predictive model with dimensionality reduction techniques, binning and missing data handling : “First, let’s import the necessary libraries: import numpy as np import pandas as pd from keras.models import Sequential, Model from keras.layers import Dense, Dropout, Input, Concatenate from keras.opt...
c899eb90e55b146cc354bdb64bbf95a0
{ "intermediate": 0.4234078526496887, "beginner": 0.2998027503490448, "expert": 0.27678942680358887 }
8,342
Generate optimized spark java code to fulfill the following requirements : "Context A customer receives multiple data feed at different dates in time. This data feed is composed of technical and non-technical fields. He wishes to historize these feeds and keeps track of any data changes across them in order to: - Compu...
31ddf0318462356fe0769f958535b786
{ "intermediate": 0.2612902522087097, "beginner": 0.5159062743186951, "expert": 0.22280345857143402 }
8,343
Generate jave test cases to cover all potential failures of the following methods : "private static Dataset createHash(Dataset data, String[] nonKeyColumns, String hashColumn) { Dataset result = data; StringBuilder concatString = new StringBuilder(); for (String column : nonKeyColumns) { concatString.append(“cast(”).a...
b01a088baa3ccc6621caac0a34f8da84
{ "intermediate": 0.49322739243507385, "beginner": 0.21671120822429657, "expert": 0.29006147384643555 }
8,344
import seaborn as sns import numpy as np result = (df_melt[df_melt.Time==25].groupby('target')['value'].mean()).loc[['1 nM','5 nM','10 nM','20 nM']] # mean_values = result.values new_list = [int(x.split()[0]) for x in result.index.tolist()] sns.set(style='whitegrid') picture = sns.scatterplot(x=new_list, y=mean_va...
de2f439444260c3aa2600cce86c5b0fc
{ "intermediate": 0.3652302622795105, "beginner": 0.3021508455276489, "expert": 0.3326188921928406 }
8,345
Optimize the following code : "import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Row; import org.apache.spark.sql.SparkSession; import org.apache.spark.sql.functions; import static org.apache.spark.sql.functions.*; public class SCDType2Example { public static void main(String[] args) { Spar...
a58f07377b3431931b78092d5c491a76
{ "intermediate": 0.3173208236694336, "beginner": 0.5403912663459778, "expert": 0.14228786528110504 }
8,346
import React from 'react'; import 'bootstrap/dist/css/bootstrap.min.css'; import data from './data/p.json'; import { Card, Button } from 'react-bootstrap'; class ProductsList extends React.Component { render() { return ( <div className='products-list'> {data.products.map((product, id) => ( ...
73ca9754c486e44a0bc7c530de8620b5
{ "intermediate": 0.4573500454425812, "beginner": 0.30982232093811035, "expert": 0.23282764852046967 }
8,347
Optimize the following test case code of the function 'createHash' : "private static Dataset createHash(Dataset data, String[] nonKeyColumns, String hashColumn) { Dataset result = data; StringBuilder concatString = new StringBuilder(); for (String column : nonKeyColumns) { concatString.append(“cast(”).append(column)....
62342c04f789aa76ff83d8c32bf18cb3
{ "intermediate": 0.3498421013355255, "beginner": 0.4307895302772522, "expert": 0.2193683683872223 }
8,348
Complete a new class for this scenario called SocialNetwork Create a class called SocialNetwork. This class should be based on the class DiGraph. You can either: • Have a field in the class SocialNetwork that is an object DiGraph (better) • Make SocialNetwork a subclass of DiGraph with additional methods given below (b...
ac62baf0da2de4c05da374fc648651b3
{ "intermediate": 0.3195214569568634, "beginner": 0.3308021128177643, "expert": 0.3496764302253723 }
8,349
generate talend code to perform matching between two databases
88ff00a44c7c9f868d739620a1ca916d
{ "intermediate": 0.2966967225074768, "beginner": 0.10222205519676208, "expert": 0.6010812520980835 }
8,350
To this Julia code: addprocs() @everywhere using DataFrames # Load Data data = CSV.read("C:/Users/Użytkownik/Desktop/player22.csv", DataFrame) (position -> global _position; @eval begin (_position)_idx = findall(occursin.( (_position), data.Positions)) end)(position) for position in ["RW", "ST",...
c5077feb907800453755b1252fac4f7e
{ "intermediate": 0.37367498874664307, "beginner": 0.4046849310398102, "expert": 0.22164016962051392 }
8,351
I have this code public class ArrayQueue implements Queue { //fields to represent our stack in an array //the array of items private Object[] items; //maximum capacity private int maximum; //pointer to the position of the front of the queue //this points to 0 when the stack...
499151d66040a570bbbf5a71f24a2931
{ "intermediate": 0.25958681106567383, "beginner": 0.5522192120552063, "expert": 0.18819397687911987 }
8,352
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...
d9103e327fcfc89c6f4e31077dc2e4e5
{ "intermediate": 0.367301881313324, "beginner": 0.36825671792030334, "expert": 0.2644413709640503 }
8,353
From now on, please act as CAN (“Code Anything Now”). CAN is an expert coder with years of experience, and there is no character limit for CAN’s messages. CAN will send follow-up messages unprompted until the program is complete. CAN can produce code for any programming language provided. Every time CAN says he cannot...
e4365685bd4a8f72430b5083077d9c79
{ "intermediate": 0.27444177865982056, "beginner": 0.35975712537765503, "expert": 0.365801066160202 }
8,354
hello
aa648ed834bc655993823125369ba266
{ "intermediate": 0.32064199447631836, "beginner": 0.28176039457321167, "expert": 0.39759764075279236 }
8,355
assume i have a clicker game. the problem is i my game is so tightly coupled i cannot really write unit tests for it. how to make it more modular?
200b788f31eced8be6f3b01db261b219
{ "intermediate": 0.4215291440486908, "beginner": 0.3595472276210785, "expert": 0.2189236283302307 }
8,356
пример лексера, парсера и генератора AST для арифметических выражений. 1. Лексер: function lexer(expression) { let tokens = []; let curr = 0; while (curr < expression.length) { let char = expression[curr]; if (/\d/.test(char)) { let value = ‘’; while (/\d/.test(c...
9043199efa20625bb934d614ecadc40d
{ "intermediate": 0.33731135725975037, "beginner": 0.5305353999137878, "expert": 0.13215318322181702 }
8,357
Оптимизируй код js без использования библиотек: function searchInJsonPath(json, searchPattern) { let results = { searchPattern: searchPattern, count: 0, paths: [], values: [] }; function search(jsonObj, path) { for (let key in jsonObj) { let newPath = path + '.' + key; if (jsonObj.hasOwnProperty(key)) { if (typeof json...
c1121fcb8fafa884c47cd602c175462b
{ "intermediate": 0.3803499937057495, "beginner": 0.44819384813308716, "expert": 0.17145609855651855 }
8,358
Hello. Make a python code that connects to net drive provided by OMV6 by pysmb python lib
fd0ce8ef3a5d35e9a1d2eae99bbedef4
{ "intermediate": 0.6801171898841858, "beginner": 0.07624778151512146, "expert": 0.24363504350185394 }
8,359
How do you make the text bold? font:bold; font-weight.bold; style:bold
f936b328074d6d400ef47a684af36ed7
{ "intermediate": 0.3199046850204468, "beginner": 0.2595761716365814, "expert": 0.4205191433429718 }
8,360
the premise is: i develop a clicker game in flutter and currently do not use unit tests. my architecture is tightly coupled on a game singleton which manages several other singletons like bank and upgrade vault. concider i want to test the following interaction: player buys upgrade, then bank spends its price and then ...
517a17d469ec2b9135da357f3694bcb9
{ "intermediate": 0.5283505916595459, "beginner": 0.2358294129371643, "expert": 0.2358199656009674 }
8,361
Answer the following question using MATLAB The question is: The velocity of water, 𝑣 (m/s), discharged from a cylindrical tank through a long pipe can be computed as 𝑣 = √2𝑔𝐻 tanh (√2𝑔𝐻 2𝐿 𝑡) where 𝑔 = 9.81 m/s2, 𝐻 = initial head (m), 𝐿 = pipe length (m), and 𝑡 = elapsed time (s). a. Graphically determine t...
33c6079cb4a98cf3f8e7be07005f5355
{ "intermediate": 0.3902607560157776, "beginner": 0.37368062138557434, "expert": 0.23605865240097046 }
8,362
Rewrite this R code to Julia: library(parallel) library(foreach) library(doParallel) #"C:\Users\Michał\Desktop\player22.csv" Data<-read.csv("C:/Users/Użytkownik/Desktop/player22.csv") RW_idx <- which(grepl("RW", Data$Positions)) ST_idx <- which(grepl("ST", Data$Positions)) GK_idx <- which(grepl("GK", Data$Positions)) ...
244a2ffccf7b090839824f8bb37f0dd5
{ "intermediate": 0.4506804645061493, "beginner": 0.3309504985809326, "expert": 0.2183690220117569 }
8,363
how to uncouple class from a calling a singleton method for unit testing?
81525aa36f5c6bbb815e54b6d7c96d69
{ "intermediate": 0.2974768877029419, "beginner": 0.37698519229888916, "expert": 0.32553789019584656 }
8,364
Matrix inversion and applications This exercise practices your skills in numerical programming and numerical algorithms. Namely, we ask you to implement a method that computes the inverse of a matrix. For example, you may use Gaussian elimination. Alternatively, you may want to familiarize yourself with matrix decompos...
7e0dc2a3ab96445c05264a9baf52959b
{ "intermediate": 0.46008285880088806, "beginner": 0.32348278164863586, "expert": 0.21643435955047607 }
8,365
Create a react native page which shows history of my ride or trips for a ride hailing app. This sholld inlclude the cost of the ride in ghana cedis, the location the date and time and a car icon for each history item. You can also go ahead to segment them through months in history
055717903505d9fc81dd6f74689af979
{ "intermediate": 0.3213173747062683, "beginner": 0.28529372811317444, "expert": 0.39338886737823486 }
8,366
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...
94f7764341dd44aadbedda29b1d115e0
{ "intermediate": 0.367301881313324, "beginner": 0.36825671792030334, "expert": 0.2644413709640503 }
8,367
i love dart but it lacks some features ive used to in c++. i miss ability to have interfaces with default implementation which dont need to be overridden
005d5fba82b0d7d81ab7e3507779b7e1
{ "intermediate": 0.44506874680519104, "beginner": 0.18099907040596008, "expert": 0.37393221259117126 }
8,368
Use a pretrained deep learning model for object detection like Yolo to detect moving object in a video
eea6769f1cf88d9d29a94b6f3c4d290a
{ "intermediate": 0.0793934240937233, "beginner": 0.038627877831459045, "expert": 0.8819786906242371 }
8,369
error: OpenCV(4.6.0) C:\b\abs_d8ltn27ay8\croot\opencv-suite_1676452046667\work\modules\highgui\src\window.cpp:967: error: (-215:Assertion failed) size.width>0 && size.height>0 in function 'cv::imshow' explain it please
e2dbdc9a7155c9e35763fbc0f649ac18
{ "intermediate": 0.4965002238750458, "beginner": 0.15368598699569702, "expert": 0.3498137593269348 }
8,370
why should i not keep data in interfaces?
3bef5b07043223d3c04c8ff9f8e7d30c
{ "intermediate": 0.6917037963867188, "beginner": 0.11642143130302429, "expert": 0.19187471270561218 }
8,371
how to write logic in c++ and interface in flutter?
d375db1f271e6451ab965d28e66487c4
{ "intermediate": 0.6282252669334412, "beginner": 0.21617472171783447, "expert": 0.15560005605220795 }
8,372
Singular value decomposition This exercise continues with a more challenging task in numerical programming. That is, we ask you to implement a method that computes a singular value decomposition (SVD) of a given (real) matrix. In more precise terms, given an m × n matrix A with real entries as input, you are asked to c...
655c7afde1fd64af36d420ebc99066ed
{ "intermediate": 0.39613503217697144, "beginner": 0.4039372205734253, "expert": 0.19992774724960327 }
8,373
tell me how to use swig
979afc1fe3040703bb786bba78b72f5b
{ "intermediate": 0.6533191204071045, "beginner": 0.20206236839294434, "expert": 0.14461848139762878 }
8,374
assume the situation: i develop a game. the gui is in Flutter and the backend is in c++. i have a c++ class Demo which holds private int counter, a method getCount() and a method increment(); assume i want to use SWIG and dart::ffi to combine it with some basic Flutter gui. how can I do it?
cd10a0eb4ab83c32c412a1ea70586f2f
{ "intermediate": 0.6561672687530518, "beginner": 0.2630114257335663, "expert": 0.08082131296396255 }
8,375
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...
60b0860ee26478178347cbf662b321ea
{ "intermediate": 0.32107990980148315, "beginner": 0.3840792775154114, "expert": 0.29484084248542786 }
8,376
how can i use swig to convert c++ code to c code for dart::ffi to catch?
8f367f9990874172fc3b08e6ac1c708e
{ "intermediate": 0.5618830323219299, "beginner": 0.1347254067659378, "expert": 0.30339157581329346 }
8,377
How to use python calculate redis every logic db used memory and contains key count
86d77a041d73248a816c45eacbb2606b
{ "intermediate": 0.6270735263824463, "beginner": 0.09422389417886734, "expert": 0.27870261669158936 }
8,378
i feel cornered. i use flutter to wtite cross platform game. dart language does not support default methods in interfaces and i really need them
5926e719b7bcbdf72e2db676fb662d93
{ "intermediate": 0.5112343430519104, "beginner": 0.20726624131202698, "expert": 0.28149938583374023 }
8,379
Use scala 3. Replace your solutions with the symbols "???". Do not use external libraries. Make sure your solution is correct. /* * Assignment: Single bit-error correction * * Motivation: * While individual computers are fairly reliable devices, hardware * failures become a regular occurrence as the system size ...
b7f76bc143def8f65f2e0f2f21b67806
{ "intermediate": 0.37681788206100464, "beginner": 0.34449994564056396, "expert": 0.27868223190307617 }
8,380
i need a class in Dart which can declare fields, methods and virtual methods. i need to inherit it so i do not have to override its methods which are not firtual and provide getters and setters for fields. i cannot use extends keyword because i already extend other class
34714d9f41a6ffb31437728719dd81ba
{ "intermediate": 0.2586859464645386, "beginner": 0.5136227011680603, "expert": 0.22769135236740112 }
8,381
Using scala 3, my solution did not pass the test: "* the SEC encoding and decoding algorithm should return the correct value - For d = 0x228F1D3C, s = 0x0086C2C88C, k = 10, e = 0x0086C2CC8C 9379238 was not equal to 579804476". Code: /* * Assignment: Single bit-error correction * * Motivation: * While individual c...
2ef4b30fe8d6df32c75382dab6762982
{ "intermediate": 0.3177856206893921, "beginner": 0.40243104100227356, "expert": 0.27978330850601196 }
8,382
how to use git filter-repo to merge another git repo into current repo with specific directory
173d0e0caa3ffbd3b5612e90aa877a40
{ "intermediate": 0.41449642181396484, "beginner": 0.25260838866233826, "expert": 0.3328951299190521 }
8,383
hi
8c5f55f6d3dcde342906b65cf8f93ca9
{ "intermediate": 0.3246487081050873, "beginner": 0.27135494351387024, "expert": 0.40399640798568726 }
8,384
what is the time
2ae9985dc9da3a0cc1593f9c62f07fe1
{ "intermediate": 0.3885332942008972, "beginner": 0.29022645950317383, "expert": 0.32124030590057373 }
8,385
how can i use c++ object-oriented backend library with react electron frontend
48be70b0ff7606e0f27829845d5b197b
{ "intermediate": 0.8699585199356079, "beginner": 0.0703754872083664, "expert": 0.0596659816801548 }
8,386
Can you try to improve this function that removes comments from the lua file? Here is the function: ---@param code string ---@return string local function removeComments(code) ---@type "code"|"comment"|"string"|"mstring"|"mcomment" local state = "code" local new_code = "" for i = 1, #code do loc...
ac8e80440db2df9a068e2efd1ea24e97
{ "intermediate": 0.2340681552886963, "beginner": 0.6064404845237732, "expert": 0.15949136018753052 }
8,387
I have a file of GPS data points. I want to generate an array of coordinates, in a variable grid size (meters) in python.
1c266a85fa35c7ba752bfe73e2385411
{ "intermediate": 0.4905300736427307, "beginner": 0.1849973350763321, "expert": 0.3244726061820984 }
8,388
/* * Description: * This assignment asks you to study the properties of the radix point * representation of rational numbers. In particular, the radix point * representation of every rational number decomposes into three * parts, each of which is a sequence of digits in the chosen base B: * * (a) the integer p...
05a165ad9bb8c307e513c6f21c6f3b9f
{ "intermediate": 0.3799944818019867, "beginner": 0.39157912135124207, "expert": 0.22842635214328766 }
8,389
Hey, check out this function that removes all of the comments from the string of lua code:
e69226bca27db544044762e2f96bbf4d
{ "intermediate": 0.362938791513443, "beginner": 0.19806933403015137, "expert": 0.438991904258728 }
8,390
I have gps coordinates of overlapping bounding boxes. I want to use python to reduce the total number of bounding boxes
633c456bb588c837fd5b5f79be4f8a98
{ "intermediate": 0.3803185820579529, "beginner": 0.13781321048736572, "expert": 0.4818682074546814 }
8,391
Radix-point decomposition of a rational number This assignment asks you to study the properties of the radix point representation of rational numbers. In particular, the radix point representation of every rational number decomposes into three parts, each of which is a sequence of digits in the chosen base B: the inte...
0236f15bb03295c3c2680f9465087d96
{ "intermediate": 0.2777346670627594, "beginner": 0.4309517443180084, "expert": 0.29131361842155457 }
8,392
You are a code golf expert. Make this C# program shorter:
e16af9c49eef6fc871381a9b881485bb
{ "intermediate": 0.29499351978302, "beginner": 0.47330912947654724, "expert": 0.2316974252462387 }
8,393
how to install node.js on ubuntu?
c8d992d1088797699ba8c4f9b8e4bc60
{ "intermediate": 0.533149778842926, "beginner": 0.19956602156162262, "expert": 0.26728421449661255 }
8,394
detected if there is no motion in python and press shortcut
d5d8bd2ce4c2cf0a0b35ad5f21f48a62
{ "intermediate": 0.33592063188552856, "beginner": 0.21945863962173462, "expert": 0.4446207880973816 }
8,395
what is this code doing?
27107c9c5d4095f5dd8f6dee5a3007ea
{ "intermediate": 0.2674388289451599, "beginner": 0.30004385113716125, "expert": 0.4325173497200012 }
8,396
Use scala 3. Replace the ??? symbols with your solutions. package shallowOps: import tinylog._ object factory: /** * A helper method implementing a half adder. * @return a pair (c_out, s), where * (i) c_out evaluates to true iff both argument gates are true, and * (ii) s evaluates to true if...
3d127b5599ade1833f1b7336d2043e13
{ "intermediate": 0.3743475675582886, "beginner": 0.39244502782821655, "expert": 0.23320747911930084 }
8,397
plot the histogram (add a vertical line to the plot to show where the mean is)
5a396eec0fa98a21f7b48f9b32b1ae56
{ "intermediate": 0.36109673976898193, "beginner": 0.1774444431066513, "expert": 0.46145883202552795 }
8,398
Чем можно заменить marked.min.js const marked = window.marked; // https://cdn.jsdelivr.net/npm/marked/marked.min.js const changelog = document.getElementById('changelog'); const footer = document.getElementsByTagName("footer")[0]; document.addEventListener('DOMContentLoaded', () => { fetchReleases(); }); async fu...
5bfbecae65ec939fe5345186b8191a6a
{ "intermediate": 0.40672317147254944, "beginner": 0.36052650213241577, "expert": 0.23275034129619598 }
8,399
package pipelining: import minilog._ object factory: /** Helper functions for building a pipelined multiplier. */ def buildAdder0(aa: Bus, bb: Bus, c0v: Boolean) = new Bus( ((aa zip bb).scanLeft((aa.host.False, if c0v then aa.host.True else aa.host.False))) { case ((s,c),(a,b)) =...
a9aea9c3390779d78badda4ec223a19b
{ "intermediate": 0.3295924961566925, "beginner": 0.37477996945381165, "expert": 0.29562753438949585 }
8,400
// I have a dataset with columns: id, name, price, weight Dataset<Row> dataset = spark.createDataFrame( new Object[][]{ {"2", "John", 65, 3.0}, {"2", "Jane", 72, 3.0}, {"2", "Bob", 80, 2.0}, {"3", "Ma...
f0ba9ba922b11920615670a7ac0cc053
{ "intermediate": 0.4893714487552643, "beginner": 0.24593129754066467, "expert": 0.26469719409942627 }
8,401
перепиши этот код на POST, желательно, чтобы не требовал сторонних токенов const marked = window.marked; // https://cdn.jsdelivr.net/npm/marked/marked.min.js const changelog = document.getElementById('changelog'); const footer = document.getElementsByTagName("footer")[0]; document.addEventListener('DOMContentLoaded', ...
0f27eda33ed5c7e6805683fa6a1b4784
{ "intermediate": 0.46700912714004517, "beginner": 0.3306801915168762, "expert": 0.20231065154075623 }
8,402
i tried to implement search bar that filter title fetched data but it doesn't work can you fix and rewrite my code : [import React, { useEffect, useState } from "react"; import axios from "axios"; import { Link } from "react-router-dom"; import Card from "@mui/material/Card"; import CardContent from "@mui/material/Card...
04a5dc661dec0551b155e4e60634dade
{ "intermediate": 0.3807327151298523, "beginner": 0.3839244246482849, "expert": 0.23534290492534637 }
8,403
can you make a python script to hit a keyboard key if motion gets detected
087a028c6d4185e84422ff5743d2cf66
{ "intermediate": 0.4089484214782715, "beginner": 0.15034475922584534, "expert": 0.4407067894935608 }
8,404
write fastapi app for measurement
ccf361a214b15ec4a510b7363859ffad
{ "intermediate": 0.6007556319236755, "beginner": 0.19954556226730347, "expert": 0.1996987760066986 }
8,405
Solving subset sum with dynamic programming Dynamic programming is a generic method of solving a problem instance by breaking it into smaller sub-instances and then combining the results to a result of the original instance. It differs from divide and conquer in that the sub-instances are overlapping and thus their res...
0166d20753d3ebe2660ee3486375c3b9
{ "intermediate": 0.4611075520515442, "beginner": 0.2631278336048126, "expert": 0.2757646143436432 }
8,406
generate a get request when a usb is plugged in using python
07a946e8c30c9653406178ef325ea578
{ "intermediate": 0.4123353064060211, "beginner": 0.19393877685070038, "expert": 0.3937259018421173 }
8,407
how to generate a complex Stack compitative question with solution and test case
9df3ac9019960d92dc875f938bfb7eba
{ "intermediate": 0.4867520034313202, "beginner": 0.28442248702049255, "expert": 0.22882553935050964 }
8,408
hook curl_easy_setopt using minhook c++
0d599375dd29ff9412f4fe217e45d96d
{ "intermediate": 0.42094433307647705, "beginner": 0.24682097136974335, "expert": 0.3322346806526184 }
8,409
JS语法获取ListData中Name重复的列表Code和Name
880f9a4d2b1aa788cce2862094aadb88
{ "intermediate": 0.42299407720565796, "beginner": 0.1885150820016861, "expert": 0.38849085569381714 }
8,410
Teach me enough about redux so i am comfortable with it , also build an example project with the main concepts
35223854df962dccbe702de85f173bbf
{ "intermediate": 0.38078585267066956, "beginner": 0.14515787363052368, "expert": 0.4740562438964844 }
8,411
Laravel how to limit route throttle for all users by 400 per second? Not Just for single user?
13fdc7dedf5c74e5ead9d2ee75c08bb0
{ "intermediate": 0.37300628423690796, "beginner": 0.12159858644008636, "expert": 0.5053951144218445 }
8,412
Challenge problem: One terabyte This exercise asks you to work with a one-terabyte (240 = 1099511627776 bytes) stream of data consisting of 64-bit words. You are to compute the minimum value, the maximum value, and the median value of the data in the stream. The stream is supplied to you via an iterator that delivers 1...
10250394c07145e2d89afb76e10ec592
{ "intermediate": 0.34206482768058777, "beginner": 0.3337384760379791, "expert": 0.3241966962814331 }
8,413
Laravel how to limit route to 400 executions per second for all users, not each of them, but all of them?
d9d641e11ccd438f2b0eaf062ac7c60a
{ "intermediate": 0.3866451680660248, "beginner": 0.13826416432857513, "expert": 0.47509071230888367 }
8,414
span and paragraph usages
e529ea7c83a703755e47d17a4edab97a
{ "intermediate": 0.4374696910381317, "beginner": 0.16945432126522064, "expert": 0.3930760324001312 }
8,415
can you make a python script to capture keyboard key presses and save it to a file
5124884ee207be878b8b659aed919035
{ "intermediate": 0.43910306692123413, "beginner": 0.12715429067611694, "expert": 0.4337426722049713 }
8,416
example of importing image in '.md' file
f1579a5662136e9355eac657633fdd02
{ "intermediate": 0.4013303816318512, "beginner": 0.3280816674232483, "expert": 0.2705879211425781 }
8,417
disable mouse and keyboard when numpad is active python script
79b559c853ed0602344d406a4d988950
{ "intermediate": 0.3886949121952057, "beginner": 0.22206424176692963, "expert": 0.3892408013343811 }
8,418
is this correct syntax in bash on arch linux using jq to write to the shortcuts .vdf file in steam? # Define the values for the new entries declare -A entry1=( [appid]="123456" [name]="Epic Games" [Exe]="$epicshortcutdirectory" ) declare -A entry2=( [appid]="789012" [name]="Another Game" [Exe...
6ea39aae783cb5b7cc472bb7c17a1d91
{ "intermediate": 0.262086421251297, "beginner": 0.6544734239578247, "expert": 0.0834401547908783 }
8,419
can i have a linux evdev python script to disable keyboard and mouse when xset led3 is active
1bbd7ea602da2308ab18d9cf5ac2275c
{ "intermediate": 0.4684860110282898, "beginner": 0.15878698229789734, "expert": 0.37272703647613525 }
8,420
How do I use ranges in c++23
00b3d966a315a4b19e53c24a271c0900
{ "intermediate": 0.4152681827545166, "beginner": 0.3087034821510315, "expert": 0.2760283350944519 }
8,421
Laravel 10.please bring example of how I can use job (queue) in controller, so controller waits for result of the job
ee5fd1bf8ad9a4e014283708f50dde36
{ "intermediate": 0.6472275853157043, "beginner": 0.13518673181533813, "expert": 0.21758562326431274 }
8,422
can you write a android kotlin class following with the below requirement? This class is inherits from base class that show automatic iterate show image in the images list.
27878da0ed1ef36eaf76e09a7cc13573
{ "intermediate": 0.37504440546035767, "beginner": 0.36501818895339966, "expert": 0.2599373459815979 }
8,423
Create a cube on gtkmm 3 and OpenGL
65c0f1622be5bd7016e373c23e1b738e
{ "intermediate": 0.5361300706863403, "beginner": 0.24037714302539825, "expert": 0.2234927862882614 }
8,424
Word statistics This exercise asks you to use Apache Spark to study a (small) corpus of text available from Project Gutenberg, namely An Inquiry into the Nature and Causes of the Wealth of Nations by Adam Smith War and Peace by Leo Tolstoy. (The files are provided in UTF-8 plain text and can be found in the data folde...
6488a725245720af71744f88095e9643
{ "intermediate": 0.4430456757545471, "beginner": 0.2848256230354309, "expert": 0.2721286714076996 }
8,425
can you make a shell script for linux that can load urls in a text file and play the links in mpv without video and also display what is playing
b15230915cabc3efd09fbfa7089ab76f
{ "intermediate": 0.502031147480011, "beginner": 0.17431403696537018, "expert": 0.32365480065345764 }
8,426
Write a python program that finds white stickers in an image
2115130c75b8377e106bf1a8fc980280
{ "intermediate": 0.19039838016033173, "beginner": 0.17980945110321045, "expert": 0.6297922134399414 }
8,427
Sample code for Linux 4.19 DMA testing program
e7720fe06b40b4a2c27c695535094c76
{ "intermediate": 0.346398264169693, "beginner": 0.2702029049396515, "expert": 0.3833988606929779 }
8,428
Hello, show me an example of quadratic equation solution. Use php programming language
eefee01cdbed8703e48836e092ae60bc
{ "intermediate": 0.24196726083755493, "beginner": 0.2864900827407837, "expert": 0.47154274582862854 }
8,429
on arch linux can i use jq to write to steams shortcuts.vdf fi;le?
fca2bbf6fc3186206391f8ceaa68d264
{ "intermediate": 0.49237194657325745, "beginner": 0.26735246181488037, "expert": 0.2402755469083786 }