row_id int64 0 48.4k | init_message stringlengths 1 342k | conversation_hash stringlengths 32 32 | scores dict |
|---|---|---|---|
6,526 | can you provide me with an example of an advanced Python code that can perform
arbitrage between Uniswap V2, V3, SushiSwap, Curve running on the polygon network using Aave’s v3 flash loans and sample python script
taht uses strtegys like tringlulr abritradge that uses real librarays | af60b38f849e6b55cb97bed5183f5ae9 | {
"intermediate": 0.5197280049324036,
"beginner": 0.07427211105823517,
"expert": 0.4059998691082001
} |
6,527 | в этом коде точки (points) квадратные, а нужно сделать их круглыми
код:
import * as THREE from 'three';
import { GLTFLoader } from 'three/examples/jsm/loaders/GLTFLoader';
import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls'
const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCa... | 97f3639950efc31c501c47f4a3752942 | {
"intermediate": 0.2750551402568817,
"beginner": 0.44718295335769653,
"expert": 0.2777618169784546
} |
6,528 | Definition relation (X Y : Type) := X -> Y -> Prop.
Definition reflexive {X: Type} (R: relation X X) := forall a : X, R a a.
Definition transitive {X: Type} (R: relation X X) := forall a b c : X, (R a b) -> (R b c) -> (R a c).
Definition symmetric {X: Type} (R: relation X X) := forall a b : X, (R a b) -> (R b a).
Defin... | b93e61de0e97138f1dbb20849af3e3e8 | {
"intermediate": 0.4081598222255707,
"beginner": 0.28298306465148926,
"expert": 0.30885714292526245
} |
6,529 | я пытаюсь установить на windows msys2 библиотеку gtk, но у меня вылазит ошибка: error: command (/mingw64/bin/glib-compile-schemas.exe /mingw64/bin/glib-compile-schemas.exe /mingw64/share/glib-2.0/schemas ) failed to execute correctly | ea29a79755d5d24449addb9723798dbe | {
"intermediate": 0.4525436758995056,
"beginner": 0.305783212184906,
"expert": 0.24167314171791077
} |
6,530 | disable antd Form.Item css classes in react | fc88223befb3d73ab976455eb9818b66 | {
"intermediate": 0.3123246729373932,
"beginner": 0.44033175706863403,
"expert": 0.24734358489513397
} |
6,531 | как в этом коде сделать Points круглыми? (сейчас они квадратные)
код:
import * as THREE from 'three';
import { GLTFLoader } from 'three/examples/jsm/loaders/GLTFLoader';
import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls'
const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCame... | fb1d13048e78af231790e8d2c00f0bcc | {
"intermediate": 0.31579819321632385,
"beginner": 0.4433801472187042,
"expert": 0.24082162976264954
} |
6,532 | https://www.kaggle.com/datasets/mohammadamireshraghi/blood-cell-cancer-all-4class -> i have data source from this url. I want to determine if a cell is healthy or a cancer cell. I will use 5 different deep learning architectures these are ->VGG
ResNet, Vgg, Inception Networks, MobileNet, DenseNet. I want to compare ev... | 27e5c38f434f2901e5fca61d991c7c45 | {
"intermediate": 0.0747450515627861,
"beginner": 0.23040388524532318,
"expert": 0.6948510408401489
} |
6,533 | Generate a code in python that checks errors in xml file | 82fdbc6a8193dc6d7882c88fe918fbdb | {
"intermediate": 0.5653223395347595,
"beginner": 0.15665774047374725,
"expert": 0.2780199646949768
} |
6,534 | Fixpoint sum_n_quartic (n : nat) : nat :=
match n with
O => 0
| S p => n*n*n*n + sum_n_quartic p
end.
Lemma prob4 : forall n : nat, sum_n_quartic n * 30 + n*(n+1)*(2*n+1) =
n*(n+1)*(2*n+1)*(3*n*n + 3*n).
Proof.
Abort. | 3b13214efc53b934d04d61c22f00943f | {
"intermediate": 0.4819844961166382,
"beginner": 0.31674209237098694,
"expert": 0.20127342641353607
} |
6,535 | <main className="page">
<Navigation {...{ aboutref, skillref, myworkref, blogref, contactref }} />
{scrolled && !isKeyboardOpen && (
<div className="page__upper" onClick={() => scrollToRef(aboutref)}>
<BsFillCaretUpFill className="icons" />
</div>
)}
<section>
<... | 6789f8b2b30a8b7f24ab0a7a5b5ac56d | {
"intermediate": 0.39257699251174927,
"beginner": 0.3717036545276642,
"expert": 0.23571935296058655
} |
6,536 | const App = () => {
return <Homepage />;
};
export default App; | c34a0502bf5531f22815d989fc53ba77 | {
"intermediate": 0.39079129695892334,
"beginner": 0.3632733225822449,
"expert": 0.2459353506565094
} |
6,537 | I want to do the following project which is in the field of operational research. I intend to solve the problem using the “local solver” algorithm as the heuristics framework and using the python language.
Gimme a full momolithic code for simulating the problem. Remember that you must provide me with a single code whic... | 84c73f5981b060041e0897611fdeb12e | {
"intermediate": 0.2638418972492218,
"beginner": 0.32911229133605957,
"expert": 0.40704578161239624
} |
6,538 | const App = () => {
return <Homepage />;
};
export default App;
write test in jest | c9b2b58e6d91f506447089599cbb831a | {
"intermediate": 0.39288198947906494,
"beginner": 0.4408904016017914,
"expert": 0.1662275642156601
} |
6,539 | Let us inductively define predicates for divisibility by three, one predicate for
each possible remainder.
Inductive div3 : nat -> Prop :=
| div0 : div3 0
| divS : forall n : nat, div3_2 n -> div3 (S n)
with div3_2 : nat -> Prop :=
| div2 : div3_2 2
| div2S : forall n : nat, div3_1 n -> div3_2 (S n)
with div3_1 : nat -... | 65c7e7f3dca2b2684b4a5bf26ea8962f | {
"intermediate": 0.40364351868629456,
"beginner": 0.25506266951560974,
"expert": 0.3412938416004181
} |
6,540 | const App = () => {
return <Homepage />;
};
export default App;
write test in jest not enzyme | aec11e09718932f51595d89a8b633695 | {
"intermediate": 0.3849034905433655,
"beginner": 0.4232872724533081,
"expert": 0.19180920720100403
} |
6,541 | this is my code:
def find_and_click_button_csgoroll(team_1, team_2, button_string):
button_string_options = [button_string.lower(), button_string.replace('.', '').lower()]
csgoroll_logo = cv2.imread("csgoroll_logo.png", cv2.IMREAD_UNCHANGED)
csgoroll_logo.astype(np.uint8)
screenshot = take_screenshot(cs... | 07ec28945415756f6e8a5972e568bd73 | {
"intermediate": 0.29945358633995056,
"beginner": 0.5226234197616577,
"expert": 0.17792296409606934
} |
6,542 | adapt this code to make properre gpt chat using endpoints as "https://yuntian-deng-chatgpt.hf.space/run/predict" and "wss://yuntian-deng-chatgpt.hf.space/queue/join": let chat = [];
function initChat() {
const chatContainer = document.createElement("div");
chatContainer.setAttribute("id", "chat");
document.body.... | 1327f294bc907f1684090eed14221bfc | {
"intermediate": 0.4082699716091156,
"beginner": 0.32120415568351746,
"expert": 0.27052584290504456
} |
6,543 | Make a prediction for the Super Bowl winner in 2024 and explain why. | 121f05aa9de1e8429edf0d6b5cd18dc5 | {
"intermediate": 0.2843743860721588,
"beginner": 0.310322105884552,
"expert": 0.4053035080432892
} |
6,544 | hi | ed461dc7c81b196f7ef7decc7c17ee54 | {
"intermediate": 0.3246487081050873,
"beginner": 0.27135494351387024,
"expert": 0.40399640798568726
} |
6,545 | generate for me professional front end code for learning management system | 26cf055e67b162369bbd60a0542797a0 | {
"intermediate": 0.18767490983009338,
"beginner": 0.1785781979560852,
"expert": 0.6337468028068542
} |
6,546 | jest ReferenceError: IntersectionObserver is not | 8705f33d8c3a32051a4d594cc9ba773e | {
"intermediate": 0.3177582025527954,
"beginner": 0.4547864496707916,
"expert": 0.22745530307292938
} |
6,547 | consider the following question:
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 the head needed to achieve �... | da4205454a0348d28dbffe39544f95d4 | {
"intermediate": 0.26153701543807983,
"beginner": 0.23957766592502594,
"expert": 0.49888530373573303
} |
6,548 | try fix these errors that shows in “codepen.io” console.: ““chatbot response:” // [object Object]
{
“detail”: [
{
“loc”: [
“body”,
“data”
],
“msg”: “field required”,
“type”: “value_error.missing”
}
]
function initChat() {
const chatContainer = document.createElement(“div”);
chatContainer.setAttribute(“id”, “chat”);
d... | 4e135e74c3c43bfc9456774e5f57d7dd | {
"intermediate": 0.31565678119659424,
"beginner": 0.43281033635139465,
"expert": 0.2515329122543335
} |
6,549 | "apt install libssl-dev
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package libssl-dev"
What am i doying wrong? How to install libssl-dev on kali | 5c240f6090352246d8077f228617c0be | {
"intermediate": 0.6819372773170471,
"beginner": 0.11535988003015518,
"expert": 0.2027028501033783
} |
6,550 | const Modal = () => {
const state = useAppSelector((state) => state.modal.isOpen);
const stateData = useAppSelector((state) => state.data);
const dispatch = useAppDispatch();
const downloadFile = async () => {
try {
const response = await axios({
url: stateData.cv,
method: "GET",
... | 6ae40ef38d2899b1d87ad9352a3f1ad7 | {
"intermediate": 0.3674923777580261,
"beginner": 0.40668463706970215,
"expert": 0.22582297027111053
} |
6,551 | fix up my java code so that the button "Payer" so that when clicked it will open the window "Receipt" only show me the parts where you edited import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import javax.swing.JLabel;
import java.awt.Font;
import ... | 18c69ce5d5eb6d853e9e9b8f6ad0d995 | {
"intermediate": 0.30822351574897766,
"beginner": 0.38713857531547546,
"expert": 0.3046379089355469
} |
6,552 | what is this? how this gpt chat works?: "function Cr(e,t){return{subscribe:ze(e,t).subscribe}}function ze(e,t=I){let r;const o=new Set;function n(a){if(ve(e,a)&&(e=a,r)){const c=!ae.length;for(const l of o)l[1](),ae.push(l,e);if(c){for(let l=0;l<ae.length;l+=2)ae[l][0](ae[l+1]);ae.length=0}}}function s(a){n(a(e))}funct... | c37922de23efc466003e03ed1f6875ca | {
"intermediate": 0.3983505964279175,
"beginner": 0.4288579523563385,
"expert": 0.17279142141342163
} |
6,553 | consider the following question:
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 the head needed to achieve �... | 3ef8a2934615223f642050eb6aba470e | {
"intermediate": 0.3236420452594757,
"beginner": 0.41643303632736206,
"expert": 0.2599249482154846
} |
6,554 | maybe you can do some actually simple functioning chat for some third-party api html code that using gradio and these backends?: "wss://yuntian-deng-chatgpt.hf.space/queue/join" and "https://yuntian-deng-chatgpt.hf.space/run/predict" | 3e1b6e5070bf7d5e34fa5feed7d15ec3 | {
"intermediate": 0.6685652136802673,
"beginner": 0.12514348328113556,
"expert": 0.20629136264324188
} |
6,555 | can do some actually simple functioning chat for some third-party api html code that using gradio and these backends?: “wss://yuntian-deng-chatgpt.hf.space/queue/join” and “https://yuntian-deng-chatgpt.hf.space/run/predict” | f8be5b8850060dde8b366e57cb9d2037 | {
"intermediate": 0.6051230430603027,
"beginner": 0.13453565537929535,
"expert": 0.2603412866592407
} |
6,556 | do some actually simple functioning chat for some third-party api html code that using gradio and these backends?: “wss://yuntian-deng-chatgpt.hf.space/queue/join” and “https://yuntian-deng-chatgpt.hf.space/run/predict” the problem here that gradio uses python, python uses gradio ... etc, etc... need to make chat with ... | 190030c6482ee2a4e3e1c20070702ab4 | {
"intermediate": 0.7670663595199585,
"beginner": 0.10743923485279083,
"expert": 0.1254943609237671
} |
6,557 | i have a variable set to empty string in cmake, how do i check if this variable has non-empty value or not | 8c1c7f254c8d6f3d3447104012fafd11 | {
"intermediate": 0.4682519733905792,
"beginner": 0.32974010705947876,
"expert": 0.20200787484645844
} |
6,558 | Unresolved attribute reference 'expend' for class 'parameterized' | 253bfb9d3f91218ac25d916d3a9ae14e | {
"intermediate": 0.31127309799194336,
"beginner": 0.49099212884902954,
"expert": 0.1977347880601883
} |
6,559 | consider the following question:
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 the head needed to achieve ... | 98219267cb70101767c86b9e6486de17 | {
"intermediate": 0.21178700029850006,
"beginner": 0.1063508540391922,
"expert": 0.6818621754646301
} |
6,560 | In R software, how to extract the first 3 characters of a variable? | 6f07d5d98062ab149be057e0938c560f | {
"intermediate": 0.21179282665252686,
"beginner": 0.46900129318237305,
"expert": 0.3192059099674225
} |
6,561 | maybe there's a way to make a working python web emulator through which you can use a gradio and simply build gpt chat? | a7a76e561d60b6078d2cd3950a288a26 | {
"intermediate": 0.579919159412384,
"beginner": 0.11591427773237228,
"expert": 0.3041665852069855
} |
6,562 | In R software data.table, i want to find the first record of each subjects, and then retain the value for all the remaining records of this subject. This process should be repeated for each subject. How to achieve that in data.table? | ddd0bed304d4486f6f1c455c9203c42d | {
"intermediate": 0.39204588532447815,
"beginner": 0.1510380059480667,
"expert": 0.45691612362861633
} |
6,563 | write me a java code: The application must contain two windows
1
The first (main) window must allow to enter the order of a customer thanks to
Radiobuttons
Buttons
comboBoxes
The window must also contain labels that display the price of each menu
Example of an order
2 Small pizzas with 6 toppings + 1 Large pizz... | bff0b39534f9703a6a5838cb10a34c29 | {
"intermediate": 0.5352488160133362,
"beginner": 0.2616691589355469,
"expert": 0.20308206975460052
} |
6,564 | Cannot read property '$options' of undefined | a1a2764e47a28ca8b057fdc37393baef | {
"intermediate": 0.36233216524124146,
"beginner": 0.3383772671222687,
"expert": 0.2992905378341675
} |
6,565 | shell printf space is not right in console | d7bd7621b24b92dea46f445e9b9c5455 | {
"intermediate": 0.11379291862249374,
"beginner": 0.7805544137954712,
"expert": 0.10565266758203506
} |
6,566 | rewrite fprintf which output by printf | fd7002215de11b9812f2f0e50747a59f | {
"intermediate": 0.3487749397754669,
"beginner": 0.4235837459564209,
"expert": 0.2276412695646286
} |
6,567 | python length comparison in codegolf (shorted possible source code) | dac72447576ed70cf72fac357878bc5a | {
"intermediate": 0.30466580390930176,
"beginner": 0.3859279155731201,
"expert": 0.30940622091293335
} |
6,568 | In R software, when using read.xlsx, error is reported as "Error in .jcall("RJavaTools", "Ljava/lang/Object;", "invokeMethod", cl, : java.lang.OutOfMemoryError: Java heap space", how to solve this? | 4e216acd7564ee9cbbbedcb9bbe0b834 | {
"intermediate": 0.636060893535614,
"beginner": 0.20050394535064697,
"expert": 0.1634352058172226
} |
6,569 | Here C code for Bidirectional-streams Over Synchronous HTTP | 28a49b8361636a7baa609afb44fa44ce | {
"intermediate": 0.36755800247192383,
"beginner": 0.23683683574199677,
"expert": 0.395605206489563
} |
6,570 | i want the logo png to show instead of svg sign
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="icon" href="{{ url_for('static', filename='images/icon.ico') }}">
<title>MindMate - Mental health chatbot</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">... | 52af8a3e9958497d3cb2ce4f3f376391 | {
"intermediate": 0.38279736042022705,
"beginner": 0.4464643597602844,
"expert": 0.1707383245229721
} |
6,571 | Can you write the line of code for the game Pac- Man? | 45cbfc2b285f796475b66f14c52e2b75 | {
"intermediate": 0.3022555112838745,
"beginner": 0.47153183817863464,
"expert": 0.22621259093284607
} |
6,572 | i need a report html based for endpoint security and network security controls. choose sans top 10 controls. give in table format with reports and evidence for auditors. create a aws lambda python script to generate these report using simulated data . make it aws lambda function | 0efd12a4b22e83197eb65da000b69e82 | {
"intermediate": 0.27007371187210083,
"beginner": 0.5267061591148376,
"expert": 0.20322005450725555
} |
6,573 | C:/Users/lpoti/Documents/DS_21/audio_yes_no/waves_yesno 2 | afff87ecb7f302d6d17e898a00d5da9b | {
"intermediate": 0.28887706995010376,
"beginner": 0.42601650953292847,
"expert": 0.2851063907146454
} |
6,574 | there are lots of open courses online, i need you to provide me information about computer science open courses, which are published by famouse unitversities, and are considered great courses by learners. tell me about some of these great cs courses. list them. I need specific course number. | 6fc04512c56a8657658f8d7eb74754a1 | {
"intermediate": 0.29827597737312317,
"beginner": 0.13678477704524994,
"expert": 0.5649392604827881
} |
6,575 | import librosa
import librosa.display
import matplotlib.pyplot as plt
import numpy as np
# Load the audio file
file_path = "C:/Users/lpoti/Documents/DS_21/audio_yes_no/waves_yesno 2/0_1_0_1_1_1_0_0.wav"
audio_data, sample_rate = librosa.load(file_path)
# Generate the spectrogram
spectrogram = librosa.stft(audio_data)... | 6e6b7a1e815b709ba83e3d62aa1381b4 | {
"intermediate": 0.4656519293785095,
"beginner": 0.26257893443107605,
"expert": 0.2717691957950592
} |
6,576 | import streamlit as st
from streamlit_webrtc import webrtc_streamer, VideoProcessorBase, RTCConfiguration
import av
import threading
RTC_CONFIGURATION = RTCConfiguration(
{"iceServers": [{"urls": ["stun:stun.l.google.com:19302"]}]}
)
st.set_page_config(page_title="Streamlit WebRTC Demo", page_icon="🤖")
task_list... | 175634ac4fd0f53e103e660041e387b2 | {
"intermediate": 0.31415513157844543,
"beginner": 0.5566285252571106,
"expert": 0.12921632826328278
} |
6,577 | at line 6: TypeError: this.points[0] is undefined
My apologies, it looks like we need to make one more small update to the update() method to check if a platform has any points before trying to draw it. Here’s the updated method: class Platform {
constructor(points) {
this.points = points;
// Find the minimu... | 8da846efd398a7619f1fb8c05ee31417 | {
"intermediate": 0.3467256426811218,
"beginner": 0.4182605445384979,
"expert": 0.23501379787921906
} |
6,578 | write a simple c# code that get 3 arguments from the user via the cli the first parameter should be a path to text file the second parameter should be path to json file the 3rd parameter have to be the string "encrypt" or the string 'decrypt', if the parsing of the cli args is failed then the print the following string... | 4574f241e59ed24216386ecfe14438cc | {
"intermediate": 0.41365954279899597,
"beginner": 0.31441831588745117,
"expert": 0.27192211151123047
} |
6,579 | # chat-gpt-ppt
Use ChatGPT to generate PPT automatically, all in one single file.
## Showcase
1. Some topics for presentation named `topic.txt`: | 3b75f43e0811de2d52b2e672619f6740 | {
"intermediate": 0.31895822286605835,
"beginner": 0.3182919919490814,
"expert": 0.36274972558021545
} |
6,580 | analyze why platform is invisible.: class Platform {
constructor(points) {
this.points = points;
// Find the minimum and maximum x and y in the platform
this.minX = this.points[0] ? this.points[0].x : 0;
this.maxX = this.points[0] ? this.points[0].x : 0;
this.minY = this.points[0] ? this.points[0... | 45cb748cf5f8d99c7329b907a6481c08 | {
"intermediate": 0.3405612111091614,
"beginner": 0.4704563319683075,
"expert": 0.18898244202136993
} |
6,581 | Теперь у вас есть функция make_dataset(), которая получает список аудио сигналов, список меток и список сегментов речи для каждого аудио сигнала. Для каждого сегмента речи функция извлекает короткие преобразования Фурье (STFT), преобразует их в децибелы и добавляет их в массив признаков X вместе с соответствующими метк... | 4db766a2d41e884464150fd7fb7293d4 | {
"intermediate": 0.3257707953453064,
"beginner": 0.450870543718338,
"expert": 0.2233586609363556
} |
6,582 | hi, would you please give solution for this loop_exception_exercise. #Using the If-elif-else Conditional Statements.
#Let's create a grading system for this using conditional statements
#using range - 90 -A
#80-89 B 70 - 79 C 60 - 69 D 0 - 59 Fail
score = int(input("Enter score: "))
if score > 89:
print("Gr... | 65f2e8d7d53bbf9496e9e0ee0dc10da9 | {
"intermediate": 0.31451618671417236,
"beginner": 0.4534660875797272,
"expert": 0.2320176362991333
} |
6,583 | calculate the average exception time from its raised date format in yyyy-mm-dd and done date format which is in dd/mm/yyyy format for common key | 97ed035ae5292af46b12065c9c106981 | {
"intermediate": 0.42728692293167114,
"beginner": 0.2060239464044571,
"expert": 0.3666890561580658
} |
6,584 | analyze why platform is invisible.: class Platform {
constructor(points) {
this.points = points;
// Find the minimum and maximum x and y in the platform
this.minX = this.points[0] ? this.points[0].x : 0;
this.maxX = this.points[0] ? this.points[0].x : 0;
this.minY = this.points[0] ? this.points[0... | 3e12e3b3d64302526440489cf21a317c | {
"intermediate": 0.3941703736782074,
"beginner": 0.4182080328464508,
"expert": 0.187621608376503
} |
6,585 | AttributeError: 'WebDriver' object has no attribute 'find_els' | b6aa5ea2702cfa667a0d480932589acc | {
"intermediate": 0.5267659425735474,
"beginner": 0.18567036092281342,
"expert": 0.28756365180015564
} |
6,586 | Http Header Injection prevention in web.config file asp.net | c5d23bc5a09aa52c69484911418bf65b | {
"intermediate": 0.309779554605484,
"beginner": 0.24406519532203674,
"expert": 0.44615527987480164
} |
6,587 | in google collab am working on a worskshop for Brightness Corrections and Color Balance am using this image https://pns2019.github.io/images/Lenna.png in not very good conditions (so that there are obvious problems with lighting). Apply operations to correct the image. | 74318714d8ef48bbbb4f160dd854a812 | {
"intermediate": 0.28340837359428406,
"beginner": 0.14238733053207397,
"expert": 0.5742043256759644
} |
6,588 | Fivem Scripting lua
I've created a ped but the ped is frozen in place until I run into them or attack them do you have any ideas? | 929c6f0e9bb0f430a948094e3c67d982 | {
"intermediate": 0.34014061093330383,
"beginner": 0.37093934416770935,
"expert": 0.2889200747013092
} |
6,589 | do circular shape: createRandomPlatform() {
const x = this.canvas.width;
const y = Math.random() * this.canvas.height;
const w = 200 + Math.random() * 500;
const h = 10;
this.platforms.push(new Platform(x, y, w, h));
} | 071a298c7bab6b44f60d5157c5de702e | {
"intermediate": 0.3693723976612091,
"beginner": 0.2553446292877197,
"expert": 0.37528300285339355
} |
6,590 | Cross-Site Request Forgery referer asp.net prevention | 5368c5831e45dd0cab0c58f18da7ce88 | {
"intermediate": 0.2722058892250061,
"beginner": 0.3879633843898773,
"expert": 0.3398306965827942
} |
6,591 | I have a postfix dovecot roundcube mailserver.
I am able to send mails. But it does not receive mails.
The follwing is from the file mail.log:
May 16 08:04:13 Ubuntu-1604-xenial-64-minimal postfix/cleanup[1599]: DD0D01000A2: message-id=<<PRESIDIO_ANONYMIZED_EMAIL_ADDRESS>>
May 16 08:04:13 Ubuntu-1604-xenial-64-minimal... | dd47f02e5c5e9665258a13d19015e457 | {
"intermediate": 0.33827874064445496,
"beginner": 0.4220482110977173,
"expert": 0.23967306315898895
} |
6,592 | i have a grid and now i want to column filtering adn serach global filtering | d4207a897db91da869384117211eabb7 | {
"intermediate": 0.3645816743373871,
"beginner": 0.15864989161491394,
"expert": 0.476768434047699
} |
6,593 | # Databricks notebook source
# MAGIC %run ./pg_Connect
# COMMAND ----------
dbutils.widgets.text("Extract_id","","")
e_id=dbutils.widgets.get("Extract_id")
print("Extract_id is : ",e_id)
run_id = dbutils.jobs.taskValues.get(taskKey="Register_Run",key="run_id",debugValue="123")
print("run_id is : ",run_id)
res = e... | 5d92d8ff65467f9bbbe92047d99c35fc | {
"intermediate": 0.3994692862033844,
"beginner": 0.43226808309555054,
"expert": 0.16826269030570984
} |
6,594 | cmake 3.0 , change parent scope variable in side a function | 0183cb5152ccbcf4d4ffc8d6c054ade8 | {
"intermediate": 0.35830503702163696,
"beginner": 0.4137217402458191,
"expert": 0.22797322273254395
} |
6,595 | I have a SQL table as source on Azure Data Factory. I want to apply a filter on it based on two columns ‘A’ and ‘B’. I want to fetch all postions where entries in ‘A’ are 123 and ‘B’ are ‘abc’. How shall the expression be written in Filter on? | e9c90aa277dbe0e4b16328aa21ec3ce5 | {
"intermediate": 0.6231321692466736,
"beginner": 0.1494855135679245,
"expert": 0.22738227248191833
} |
6,596 | file upload restriction vulnerabilities prevention in asp.net | b7066a4ea276f9c6f75ec08a183aa951 | {
"intermediate": 0.2557201385498047,
"beginner": 0.2754693627357483,
"expert": 0.4688105583190918
} |
6,597 | torch check cuda is avialable | 6eb3700ed1eb44dbf5c0c8a70b1ca17a | {
"intermediate": 0.3826530873775482,
"beginner": 0.2681295573711395,
"expert": 0.34921738505363464
} |
6,598 | import os
from glob import glob
import librosa
import numpy as np
def load_dataset(directory: str):
"""
:param directory: Путь к директории с аудио
:return:
X - Список аудио сигналов
labels - Список меток (Например для файла '0_0_0_1_0_1_1_0.wav': [0, 0, 0, 1, 0, 1, 1, 0])
sr - ча... | 0fd23c8860a58cf1c77e4de4ab535ea0 | {
"intermediate": 0.32316118478775024,
"beginner": 0.5165646076202393,
"expert": 0.1602742075920105
} |
6,599 | Consider the following project which is operational research problem. first, write the mathematical model defining:
1.the decision variables,
2.the constraints to be satisfied for a solution to be considered as valid.
3.the objective functions to be minimized or maximized.
second, gimme the python code of the model.
... | 59fffcaf26fdc1ec75a70beeb3e12552 | {
"intermediate": 0.3668872117996216,
"beginner": 0.36251136660575867,
"expert": 0.27060145139694214
} |
6,600 | Toys table has columns id ,name,price,categoryId, create a view that the categoryIdeqauls '001' and contains id and name,and add contraint that user can update the toys of this view only its icategoryId='001' | c3660ac6263f81c5d60a57308d5e1916 | {
"intermediate": 0.3673346936702728,
"beginner": 0.24353815615177155,
"expert": 0.3891272246837616
} |
6,601 | add border-radius:50%; style to this: createRandomPlatform() {
const x = Math.random() * this.canvas.width;
const y = Math.random() * this.canvas.height;
const r = 5 + Math.random() * 10;
this.ctx.beginPath();
this.ctx.arc(x, y, r, 0, 2 * Math.PI);
this.ctx.fill();
this.platforms.push(new Platform(x - r, y - r, 2 * r, ... | 8888a21b4deb5603f57939a82787cb00 | {
"intermediate": 0.36850985884666443,
"beginner": 0.34715861082077026,
"expert": 0.2843315601348877
} |
6,602 | hi | 8d2e59e34bff0e4922a76d23c29556ac | {
"intermediate": 0.3246487081050873,
"beginner": 0.27135494351387024,
"expert": 0.40399640798568726
} |
6,603 | hi | d159ac982007f88646571f89c4afe58b | {
"intermediate": 0.3246487081050873,
"beginner": 0.27135494351387024,
"expert": 0.40399640798568726
} |
6,604 | Hello, I want to extra all zz.rar files which in several folders in dirve c to its local folder in windows, what is th easiest way? | 375bc6b90a7961f360d084bc39096eae | {
"intermediate": 0.44340354204177856,
"beginner": 0.23411571979522705,
"expert": 0.32248079776763916
} |
6,605 | Chapter 8. Basics with Git
Futilisoft has begun work on a new product. This product calculates the probability (as an integer percentage) of winning the Powerball for any given set of numbers.
The company has assigned two developers to work on this new project, Harry, located in Birmingham, England, and Sally, locate... | 5c93205dc415f4489b04db7508198451 | {
"intermediate": 0.3837416172027588,
"beginner": 0.4013601839542389,
"expert": 0.21489819884300232
} |
6,606 | 'NoneType' object has no attribute 'split'报错怎么解决 | 1c26a6042c8fd5f121d24089b3f5acf6 | {
"intermediate": 0.3393300473690033,
"beginner": 0.35279762744903564,
"expert": 0.30787229537963867
} |
6,607 | How to create an excel sheet that can switch between volume and value with a click of a button | c54a1f8d8a7ad8943325fe8ee2704fec | {
"intermediate": 0.39170128107070923,
"beginner": 0.2167440503835678,
"expert": 0.39155468344688416
} |
6,608 | I want you to write the model of the following problem based on yhe localsover python library, which is the python API of www.localsolver.com.
here is the problem:
VEHICLE LOADING PROBLEM
ABSTRACT
Supply chain demands are reaching new heights, pushing companies to find new ways to boost efficiency. Loading and unload... | 3fbbdba47d487e8e2de8fab5a5fe7d68 | {
"intermediate": 0.3795623779296875,
"beginner": 0.3401607871055603,
"expert": 0.2802767753601074
} |
6,609 | I have this redux store:
export const store = configureStore({
reducer: {
user: userReducer,
offices: officesReducer,
currentOffice: currentOfficeReducer,
dateRange: dateRangeReducer
},
middleware: (getDefaultMiddleware) =>
getDefaultMiddleware({
serializableCheck: false
})
});
Wit... | f0f213fcf479b1af6df012312c7fbc4c | {
"intermediate": 0.7406727075576782,
"beginner": 0.09430819004774094,
"expert": 0.16501908004283905
} |
6,610 | write this in python
#include <stdio.h>
#include <stdlib.h>
int calculate_result(int white_balls[5], int power_ball)
{
return 0;
}
int main(int argc, char** argv)
{
if (argc != 7)
{
fprintf(stderr, "Usage: %s power_ball (5 white balls)\n", argv[0]);
return -1;
}
int power_ball = ... | d7f58faeff1cb094317961b07afc91e1 | {
"intermediate": 0.3306586444377899,
"beginner": 0.5173454284667969,
"expert": 0.15199588239192963
} |
6,611 | convert this script to single line | 704d7b4ee6b7f32bc8d3655d9061e5e9 | {
"intermediate": 0.3048596680164337,
"beginner": 0.3422360122203827,
"expert": 0.3529043197631836
} |
6,612 | find . -type f -exec md5sum {} + | sort | awk ‘BEGIN{lasthash=“”; lastfile=“”} $1==lasthash{if($2!=lastfile) print lastfile “\n” $2; print $0 “\n”} {lasthash=$1; lastfile=$2}’ | sort | uniq -d | xargs -I {} basename {} | 0c723c3c32516ddeeb2a4784f9dca8ac | {
"intermediate": 0.23671986162662506,
"beginner": 0.5779597163200378,
"expert": 0.1853204369544983
} |
6,613 | Show that the radius r of the mth dark Newton’s ring, as viewed from directly above (Fig. 18), is given by r = root(m*lambda*R) where R is the radius of curvature of the curved glass surface and lambda is the wavelength of light used. Assume that the thickness of the air gap is much less than R at all points and that [... | 317d6bba23ae4e0b29519fd2decd8de3 | {
"intermediate": 0.41435566544532776,
"beginner": 0.2678647041320801,
"expert": 0.31777969002723694
} |
6,614 | whats wrong with following | e841143a91aeb4fa93856103a37724d4 | {
"intermediate": 0.4021557569503784,
"beginner": 0.332813024520874,
"expert": 0.26503121852874756
} |
6,615 | How to remove duplicate elements from a python list without changing the order? | c6ea4d5ef6ac06fcd4311220eeed6925 | {
"intermediate": 0.31700894236564636,
"beginner": 0.12016019970178604,
"expert": 0.5628308057785034
} |
6,616 | How to remove duplicate elements from a python list containing string in 1 line without changing the order? | 565e1a1147fedea09b7c33ce81ed8388 | {
"intermediate": 0.3534991443157196,
"beginner": 0.09764313697814941,
"expert": 0.5488576889038086
} |
6,617 | #include "types.h"
#include "stat.h"
#include "user.h"
#include "fcntl.h"
int main() {
char buf[512];
int fd,i;
int num = 0;//the number of disk blocks
fd = open("test_betafile",O_CREATE|O_WRONLY);// open file
if(fd<0) {
printf(1,"error occur in opening file\n");
exit();
}
... | 4a3f4edb8ee65104f0299d337c17ca98 | {
"intermediate": 0.3040124773979187,
"beginner": 0.5275576710700989,
"expert": 0.16842983663082123
} |
6,618 | how to remove files using xargs that have space in filenames | 87a0b31a7dda92a5af04462ab27c5942 | {
"intermediate": 0.4171574115753174,
"beginner": 0.2931768298149109,
"expert": 0.28966572880744934
} |
6,619 | call service in main spring boot | 8de94c6afde7db2a88e7ad2fddd2c006 | {
"intermediate": 0.2743213176727295,
"beginner": 0.3058708608150482,
"expert": 0.41980788111686707
} |
6,620 | %{
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct StatementList;
struct Statement;
struct Declaration;
struct Loop;
struct Condition;
struct Expression;
struct Comparator;
struct SymbolTableEntry;
struct SymbolTable;
typedef struct StatementList {
struct Statement** sta... | 764b4c1a9ded7a619bfcaa2658097455 | {
"intermediate": 0.2536455988883972,
"beginner": 0.5607708096504211,
"expert": 0.18558362126350403
} |
6,621 | %{
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct StatementList;
struct Statement;
struct Declaration;
struct Loop;
struct Condition;
struct Expression;
struct Comparator;
struct SymbolTableEntry;
struct SymbolTable;
typedef struct StatementList {
struct Statement** sta... | 0b7533aae01e54a1f3c274439f45aaae | {
"intermediate": 0.2536455988883972,
"beginner": 0.5607708096504211,
"expert": 0.18558362126350403
} |
6,622 | So I have this code:
"
# Mutation 2
position_vectors_list <- list(RW_idx, ST_idx, GK_idx, CM_idx, LW_idx,
CDM_idx, LM_idx, CF_idx, CB_idx, CAM_idx,
LB_idx, RB_idx, RM_idx, LWB_idx, RWB_idx)
# Generate random numbers for each DataFrame row
n_rows <- 100
rando... | a1a6b15b369cb6266a7f2c213c0d2d91 | {
"intermediate": 0.35575076937675476,
"beginner": 0.39719241857528687,
"expert": 0.247056782245636
} |
6,623 | what are some ideas you can give me to code this in C#: Write a program called Scores.cs
that will ask the user for the name of this file and will calculate
the average of each student. Store the averages in a dictionary, where the key is the student's
name and the value is the average. Store the list of scores for eac... | b4b406cfa699f923c86a36fdaafd42e9 | {
"intermediate": 0.5077716112136841,
"beginner": 0.1939621865749359,
"expert": 0.29826614260673523
} |
6,624 | error: integer out of range: ‘$3’
269 | printf("Addition: %d + %d\n", $1, $3);
| ^~
parser.y:271.21-22: error: integer out of range: ‘$3’
271 | return $1 + $3;
| ^~ | 1f39064af49ffaf0be662c6554ec7b9d | {
"intermediate": 0.3019256889820099,
"beginner": 0.4944829046726227,
"expert": 0.20359139144420624
} |
6,625 | can I write this lines different: string.Join("",studentScores) | 7507332db8175334baddd8227ef2f25c | {
"intermediate": 0.36889874935150146,
"beginner": 0.3370460569858551,
"expert": 0.29405516386032104
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.