row_id
int64
0
48.4k
init_message
stringlengths
1
342k
conversation_hash
stringlengths
32
32
scores
dict
41,260
const Row = ({ index, style }) => { const rowRef = useRef(null); const handleCandidateDetailsChange = (event, key, i) => { console.log("handleCandidateDetailsChange(): ENTER"); setValues(oldValues => { oldValues[i][key] = event.target.value return [...oldValues]; }) const...
fa480b8ed4d1401a4098fd0ca0af3ffd
{ "intermediate": 0.3258312940597534, "beginner": 0.5048184394836426, "expert": 0.1693502515554428 }
41,261
If I run a server based on Python and it says “listening in on 127.0.01”, will the server receive connections from other devices on the network or no?
bd00b2465e4b902034dc383fdc4ea478
{ "intermediate": 0.47222524881362915, "beginner": 0.14405561983585358, "expert": 0.3837191164493561 }
41,262
write python code to calculate roi
2364436a7810650e435b1985952778b4
{ "intermediate": 0.321256160736084, "beginner": 0.18958492577075958, "expert": 0.48915889859199524 }
41,263
"import os from threading import Thread from typing import Iterator import gradio as gr import spaces import torch from transformers import AutoModelForCausalLM, AutoTokenizer, TextIteratorStreamer MAX_MAX_NEW_TOKENS = 2048 DEFAULT_MAX_NEW_TOKENS = 1024 MAX_INPUT_TOKEN_LENGTH = int(os.getenv("MAX_INPUT_TOKEN_LENGTH",...
8ef3fc7f522be59f89bb45b93ad38e13
{ "intermediate": 0.38955971598625183, "beginner": 0.3982737064361572, "expert": 0.21216656267642975 }
41,264
I am building a chatbot on huggingface:"import subprocess import os import gradio as gr import torch from transformers import AutoModelForCausalLM, AutoTokenizer # Define constants and environment settings. MAX_MAX_NEW_TOKENS = 2048 DEFAULT_MAX_NEW_TOKENS = 1024 MAX_INPUT_TOKEN_LENGTH = int(os.getenv("MAX_INPUT_TOKEN_...
c1fac48b71f84ce1ce4b8e9e930edc2a
{ "intermediate": 0.3375854790210724, "beginner": 0.4638051986694336, "expert": 0.1986093521118164 }
41,265
что такоеAuth::createTokenDriver
7717994a016051b4b0cd025cb6f6da1b
{ "intermediate": 0.33280959725379944, "beginner": 0.2446952909231186, "expert": 0.42249515652656555 }
41,266
что такое Auth::createTokenDriver
15da22143690b8467bb13526888a6194
{ "intermediate": 0.3187921941280365, "beginner": 0.27561643719673157, "expert": 0.40559130907058716 }
41,267
Приведи пример с Auth::createTokenDriver laravel
7c0fc0f926609c8604022d4893ce3e47
{ "intermediate": 0.3345949649810791, "beginner": 0.2440602034330368, "expert": 0.4213448762893677 }
41,268
The below is the code on google colab that test the llama model for chat:"!pip install transformers torch accelerate !pip install --upgrade gradio # import locale # locale.setlocale(locale.LC_ALL, 'en_US.UTF-8') !huggingface-cli login from transformers import AutoTokenizer import transformers import torch model = "met...
b46422f2003ea394bb0adedd2689be6b
{ "intermediate": 0.3360638916492462, "beginner": 0.38136059045791626, "expert": 0.28257548809051514 }
41,269
Meaning of string in python
3f7b43153bbc0c394dcb3d0830a8ee15
{ "intermediate": 0.35537827014923096, "beginner": 0.37699252367019653, "expert": 0.2676292359828949 }
41,270
Write function on c# which converts decimal to byte
fea04a63e78a63868dec9e6a8a472f3d
{ "intermediate": 0.3980802595615387, "beginner": 0.36172986030578613, "expert": 0.24018986523151398 }
41,271
can you give me a step by step on how i can achieve account registration on flutterflow using firstname, second name and phone as mandatory, then after sign up i can be taken to a page where i can update my profile detials like avatar nickname etc. For login i just have one filed a phone number text field and a button ...
28a132c255db6a4566a834205124d886
{ "intermediate": 0.5763500928878784, "beginner": 0.14572687447071075, "expert": 0.277923047542572 }
41,272
describe how solar panel generate electricity in pair with boiler
897789d79ffe3c55bc9cd5c3efb664d0
{ "intermediate": 0.3675336241722107, "beginner": 0.3380402624607086, "expert": 0.2944261431694031 }
41,273
I am build a chatbot on huggingface:"from huggingface_hub import InferenceClient import gradio as gr client = InferenceClient( "mistralai/Mixtral-8x7B-Instruct-v0.1" ) def format_prompt(message, history): prompt = "<s>" for user_prompt, bot_response in history: prompt += f"[INST] {user_prompt} [/INST]" ...
8339ea09a046eda8bfcc774a052eeb84
{ "intermediate": 0.37976208329200745, "beginner": 0.35776373744010925, "expert": 0.2624741792678833 }
41,274
I am building a chatbot on huggingface:"import gradio as gr from huggingface_hub import InferenceClient client = InferenceClient("mistralai/Mixtral-8x7B-Instruct-v0.1") def format_prompt(message, history): system_prompt = ("I’m an AI chatbot named ChatSherman designed by a super-intelligent student named ShermanA...
ab081b6a8084f7b338ed8184ed2915d0
{ "intermediate": 0.3253931701183319, "beginner": 0.436533659696579, "expert": 0.23807314038276672 }
41,275
different between app and current_app in flask
5043b6fb9123e794e5631cab502e6ff4
{ "intermediate": 0.41867420077323914, "beginner": 0.31861430406570435, "expert": 0.26271143555641174 }
41,276
The code of chatbot on huggingface "import subprocess subprocess.check_call(["pip", "install", "--upgrade", "gradio"]) subprocess.check_call(["pip", "install", "-q", "transformers", "python-dotenv"]) subprocess.check_call(["pip", "install", "-q", "openai"]) import gradio as gr from transformers import TFAutoModelForCa...
71e289a265aa1d0c8955ad33e13a791c
{ "intermediate": 0.36403438448905945, "beginner": 0.23673638701438904, "expert": 0.3992292284965515 }
41,277
The below is the code originally for building ChatSherman on huggingface:"import subprocess subprocess.check_call(["pip", "install", "--upgrade", "gradio"]) subprocess.check_call(["pip", "install", "-q", "transformers", "python-dotenv"]) subprocess.check_call(["pip", "install", "-q", "openai"]) import gradio as gr fro...
a5e507d326af6b9a92d1e662c00233f5
{ "intermediate": 0.3693700134754181, "beginner": 0.30605602264404297, "expert": 0.3245740532875061 }
41,278
What excel formula can i use to return the value of a cell only if it falls between two numbers. I want it to return only if its value is higher then 3 but lower than 6
e8d0fcb9ca66022ac76dd26c21325a12
{ "intermediate": 0.3918544054031372, "beginner": 0.18345080316066742, "expert": 0.42469483613967896 }
41,279
tsc : The term 'tsc' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1 + tsc --version + ~~~ + CategoryInfo : ObjectNotFound: (tsc:String) [], Comm...
23024626449d409eb4a8f4c401693019
{ "intermediate": 0.3786156475543976, "beginner": 0.29792675375938416, "expert": 0.32345759868621826 }
41,280
please correct the syntax of below snippet: completion = client.chat.completions.create( model="gpt-4-0125-preview", messages=[ {"role": "system", "content": f'''You are an interviewer, tasked with evaluating candidates for the role of "{position}" according to the job descri...
2085c88ac4c0b187960e14012b24c2bd
{ "intermediate": 0.1560651659965515, "beginner": 0.5524883270263672, "expert": 0.2914464771747589 }
41,281
to provide additional information or check for specific issues with your system’s configuration. done the above solution still the problem is there \
81cc719483426d64f46e4c0444900102
{ "intermediate": 0.34374818205833435, "beginner": 0.35466015338897705, "expert": 0.301591694355011 }
41,282
Can I import a qr-code to another javascript file?
04784a1b06ca71f250ddb1fe62062d81
{ "intermediate": 0.4508892893791199, "beginner": 0.2076466679573059, "expert": 0.3414640724658966 }
41,283
I am making a C#, XAML based project, I have a window that let me edit a textbox and click a button to accept the changes written, it works perfectly when I press enter or I make it lost focus after editing, but if I press the button during the edition it doesn't detect the current written changes. What can I do here?
d88264f2bc4b8d8a337dcf42e3a470f2
{ "intermediate": 0.4805722236633301, "beginner": 0.2876180112361908, "expert": 0.23180973529815674 }
41,284
private otherQuery: Dictionary<string> = {} переписать на vue 3
49f58b99ef7f471f7e122c86606fb73f
{ "intermediate": 0.40589940547943115, "beginner": 0.42480596899986267, "expert": 0.16929462552070618 }
41,285
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> typedef struct hash_table_node { int data; int index; struct hash_table_node* next; } HashTableNode; typedef struct hash_table { HashTableNode** buckets; int capacity; int size; } HashTable; HashTable* hash_create(int capacity) { ...
ab0e5a4af2a3347a26aa34df64eb09f7
{ "intermediate": 0.3635580539703369, "beginner": 0.43482324481010437, "expert": 0.20161864161491394 }
41,286
Input 3 48$ intranet 12 14 15 13 98 14 15 97 Output 3 Explanation 3 The longest subsequence containing continuous numbers is (12 13 14 15). Note 14,15 at indexes 1,2 respectively can NOT form the longest subsequence. There is only one correct answer for this input. Hints You can break this problem into two parts. First...
eb8a58ac1284215fd076caac055f47d5
{ "intermediate": 0.3947146534919739, "beginner": 0.27622371912002563, "expert": 0.3290615975856781 }
41,287
//+------------------------------------------------------------------+ //| ProjectName | //| Copyright 2020, CompanyName | //| http://www.companyname.net | //+---------------------------------...
a8a8923052f58e5f1abcfead48da7ebc
{ "intermediate": 0.34829118847846985, "beginner": 0.3364187180995941, "expert": 0.31529009342193604 }
41,288
Hi, I am working in Linux environment using Portaudio to connect a realtime process to the audio card. There is a way to collect any xrun that can occur, like a logging mechanism?
c975757460e210548077af0d9f3418fa
{ "intermediate": 0.619583785533905, "beginner": 0.20962797105312347, "expert": 0.17078827321529388 }
41,289
tell me about the tokio send+sync boiunbd
fb34f1dadd05f5524714cb7b403c6476
{ "intermediate": 0.46245497465133667, "beginner": 0.09895333647727966, "expert": 0.4385916590690613 }
41,290
Input 3 8 12 14 15 13 98 14 15 97 Output 4 0 3 5 6 The longest subsequence containing continuous numbers is (12 13 14 15). Note 14,15 at indexes 1,2 respectively can NOT form the longest subsequence. There is only one correct answer for this input. Hints You can break this problem into two parts. First find any subse...
269b2187e861b5e3137d3c917c555112
{ "intermediate": 0.3667163848876953, "beginner": 0.24136558175086975, "expert": 0.3919179439544678 }
41,291
check this code: pub fn parse_tracks<'a>(contents: &'a str) -> Result<TranscriptMap, &'static str> { let read2track: Arc<DashMap<Arc<str>, Arc<str>>> = Arc::new(DashMap::new()); let mut tracks = contents .par_lines() .filter(|x| !x.starts_with("#")) .filter_map(|x| Record::new(x).ok())...
1ea4eec175141caaf4f14ac83d72bedf
{ "intermediate": 0.5427587628364563, "beginner": 0.2686747610569, "expert": 0.18856647610664368 }
41,292
Create a script to each kids learn abc
71299ca1315baaca1a3146c00773c3f9
{ "intermediate": 0.2897193431854248, "beginner": 0.38423025608062744, "expert": 0.3260503113269806 }
41,293
gitlab runner change value of variable in scri
2400b0d90322264cc325892a8a036d77
{ "intermediate": 0.41045501828193665, "beginner": 0.3573365807533264, "expert": 0.23220840096473694 }
41,294
bash store contenue of file in varibale and trim space
2ace06442b3b2188009393f86e2f8cfd
{ "intermediate": 0.35692745447158813, "beginner": 0.31098487973213196, "expert": 0.3320876955986023 }
41,295
Generate 10 numbers with seed: 1
b6c5ec92ba8d38d80c6844a50b30c388
{ "intermediate": 0.27485838532447815, "beginner": 0.18954528868198395, "expert": 0.5355963706970215 }
41,296
Generate 10 numbers with seed: 1, length is 0-1000000000
02e50cfc7576e74a0b87ea554c0c0be2
{ "intermediate": 0.25895029306411743, "beginner": 0.16870249807834625, "expert": 0.5723472833633423 }
41,297
Describe accurate seed-based number generator
dbb78676b34d9cab2a30ba4e2a247c70
{ "intermediate": 0.15728026628494263, "beginner": 0.1156541258096695, "expert": 0.7270655632019043 }
41,298
hello
4a098259d7bdf221dd30af3e04a02aa4
{ "intermediate": 0.32064199447631836, "beginner": 0.28176039457321167, "expert": 0.39759764075279236 }
41,299
hello
45ec7194e7297c7c0fee287904bf70ef
{ "intermediate": 0.32064199447631836, "beginner": 0.28176039457321167, "expert": 0.39759764075279236 }
41,300
Wireless Tire Pressure Monitoring System: using esp 32 my project to include parameters to measure: 1) Temperature Monitoring: Besides pressure, tire temperature is a key factor affecting tire performance. High temperatures can lead to tire blowouts. Including temperature sensors can provide early warnings of potenti...
91a2f8a460027b5c3523d6a2db58adca
{ "intermediate": 0.2466568499803543, "beginner": 0.21052785217761993, "expert": 0.5428152680397034 }
41,301
[opc@pdr-cregas reportesGN]$ cat matrizGNC.jsp <%@page contentType="text/html; charset=iso-8859-1" language="java" errorPage="errorpage.jsp" import="java.sql.*,co.gov.creg.util.*" %> <%@page import="co.gov.creg.BuilderHTML.*"%> <% /** * @author CREG, 05-05-2003 * @author CREG, 06-05-2003 * modify CREG, 11-01...
fe835390463d74d46eb9a53c17df1842
{ "intermediate": 0.30824440717697144, "beginner": 0.4334823787212372, "expert": 0.2582731544971466 }
41,302
Converting circular structure to JSON --> starting at object with constructor 'Vue' | property '$options' -> object with constructor 'Object' | property 'router' -> object with constructor 'VueRouter' --- property 'app' closes the circle в чем ошибка?
d5b6aab9d9fc289b3224cdc02e665f82
{ "intermediate": 0.48347437381744385, "beginner": 0.3314097225666046, "expert": 0.18511593341827393 }
41,303
this is my code: import yfinance as yf import pandas as pd import itertools # Define the period for data retrieval data_period = '10d' # You can change this to '10d', '1mo', '1y', etc. # Define the trade type (long or short) trade_type = 'long' # You can change this to 'short' # Define the take profit and stop los...
a2c2ab94bb86e56f9b718161f4efdf4c
{ "intermediate": 0.3689572811126709, "beginner": 0.285440593957901, "expert": 0.3456020653247833 }
41,304
I am making a C++ SDL based game engine, currently I am finishing my final touches of my current release, Help me finish them. First, my circle class I need to make two Methods: bool ContainsPoint(const Point& point) const; // For collision detection bool IntersectsCircle(const Circle& other) const; // To check circle...
e0adb7e6ae9f81e3eea666bdd6e1bd29
{ "intermediate": 0.40160658955574036, "beginner": 0.3460557460784912, "expert": 0.2523376941680908 }
41,305
how to upload pdf using terminal
e3a95c00b430008e93c2fb18be607623
{ "intermediate": 0.38701316714286804, "beginner": 0.30072689056396484, "expert": 0.3122599422931671 }
41,306
You're a docker expert. Take a look at this script and make a basic template for the installation https://raw.githubusercontent.com/magnussolution/magnusbilling7/source/script/install.sh
f1c03904d80be5afaa150ee4d7b1c8e1
{ "intermediate": 0.2085568606853485, "beginner": 0.4667493999004364, "expert": 0.3246937096118927 }
41,307
Hi, in C++ I have a single server, that hold and write the data into a buffer, and multi clients, that ask to the server to provide them the data. What is the best design for this scenario?
2b24f29ab3a637055f49459464127fae
{ "intermediate": 0.491628497838974, "beginner": 0.17367024719715118, "expert": 0.334701269865036 }
41,308
What difference between socket.send() and socket.sendall() in Python? Tell in simple language
94f1eaedc32ddc036e0e0d98f77e4d34
{ "intermediate": 0.4914499819278717, "beginner": 0.23121511936187744, "expert": 0.27733492851257324 }
41,309
-- login_client.lua local soundElementData = "mySoundElement" screenWidth,screenHeight = guiGetScreenSize() mainWidth,mainHeight = 1300,600 regWidth,regHeight = 800,688 -- Создаем статическое изображение размером 30% от размера экрана local screenWidth, screenHeight = guiGetScreenSize() -- получаем размер экрана loc...
b05b3d1870f798f62160175701822ef8
{ "intermediate": 0.33653852343559265, "beginner": 0.4437899589538574, "expert": 0.21967151761054993 }
41,310
Create a formula for excel that searches that there is a value in A2 and C2 and if so complete TextJoin
744f8607942091886bc6177895c9b994
{ "intermediate": 0.3430953919887543, "beginner": 0.2205495983362198, "expert": 0.43635499477386475 }
41,311
I am making a C++ SDL based game engine, currently I am finishing my final touches of my current release, Help me finish them. Let's start with the Line class, this is my current implementation: class Line { public: Line(std::vector<Point> points); Line(const Point& start, const Point& end); ...
75a95ed881de2ce89bc5b00a1516aa1f
{ "intermediate": 0.49197661876678467, "beginner": 0.3535490930080414, "expert": 0.15447424352169037 }
41,312
Can you create a formula in excel for the following problem. I have a search term on a spreadsheet (1) that needs to search a range on another spreadsheet (2) and if found will return what is in the cell 2 colums to the left of it
48ac9dc0d1f76411f6d72451040b1c51
{ "intermediate": 0.3659012019634247, "beginner": 0.19158416986465454, "expert": 0.4425146281719208 }
41,313
-- login_client.lua local soundElementData = "mySoundElement" screenWidth,screenHeight = guiGetScreenSize() mainWidth,mainHeight = 1300,600 regWidth,regHeight = 800,688 -- Создаем статическое изображение размером 30% от размера экрана local screenWidth, screenHeight = guiGetScreenSize() -- получаем размер экрана loc...
45cd1de8acc96e227214a6b5abb402c9
{ "intermediate": 0.33653852343559265, "beginner": 0.4437899589538574, "expert": 0.21967151761054993 }
41,314
create an excel formula to solve the following problem. I require a search of a term in cell J5 on Sheet 1, that is also on a different sheet (Sheet 2) which needs to be matched and then return the value that is in a different cell 2 columns along from this on sheet 2. This value from sheet 2 be returned, back in a c...
889cc55f8735a6182023a6329f72d8a3
{ "intermediate": 0.3554818630218506, "beginner": 0.20561937987804413, "expert": 0.4388987421989441 }
41,315
If there is 1000000 connections, will auto-tunning consume CPU a lot? answer shortly
41c3e944a5aed675f23aaf1e64446776
{ "intermediate": 0.21179357171058655, "beginner": 0.19204607605934143, "expert": 0.596160352230072 }
41,316
Привет, вот код для подвески в roblox:
d1537e0fcb0eee47266e68f04b5b8d4b
{ "intermediate": 0.3023086488246918, "beginner": 0.2785037159919739, "expert": 0.41918760538101196 }
41,317
this vba code is not working: Dim dailyChecksSheet As Worksheet Set dailyChecksSheet = ThisWorkbook.Worksheets("Daily Checks") Dim todayDate As Date Dim cellDate As Date todayDate = Date cellDate = dailyChecksSheet.Range("AF1").Value If Weekday(cellDate, vbMonday) >= vbMonday And Weekday(cellDate, vbMonday) <= vbFriday...
61241af8fd994fa0a73be90d77b0017e
{ "intermediate": 0.3913782835006714, "beginner": 0.42744937539100647, "expert": 0.18117231130599976 }
41,318
How do I make a zoomable svg, such that when a user scrolls the svg appears to zoom in
bc5da4d4a1b0fd3d0fc01fd47305531c
{ "intermediate": 0.32198265194892883, "beginner": 0.20775850117206573, "expert": 0.47025883197784424 }
41,319
Make an entire C++ hangman game
ec16d009f3315c767090c90646a0584c
{ "intermediate": 0.2674202620983124, "beginner": 0.460324227809906, "expert": 0.2722555100917816 }
41,320
How do I wait for <link rel="stylesheet" href="https://assets.bux.osu.edu/v0.x/css/bux-styles.min.css"/> to finish loading
78ccef824d11763c995598c70a1c6bf4
{ "intermediate": 0.46126803755760193, "beginner": 0.2757844626903534, "expert": 0.2629474699497223 }
41,321
You are a programming tutorial writer. Write very long tutorial on hello world in Quarkus.
0998af3c8b31e93591f870aabe727ee5
{ "intermediate": 0.26916030049324036, "beginner": 0.41157999634742737, "expert": 0.3192597031593323 }
41,322
java.lang.Exception: No se pudo obtener conexión glp at co.gov.creg.util.DBQuery.<init>(DBQuery.java:42) at org.apache.jsp.matrizGNC_jsp._jspService(matrizGNC_jsp.java:342) at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98) at javax.servlet.http.HttpServlet.service(Ht...
03eef08e9afe5bd1885e586143d29ee6
{ "intermediate": 0.4905995726585388, "beginner": 0.27625975012779236, "expert": 0.23314066231250763 }
41,323
How to use this class in Python. Just give example class AESCipher(object): def __init__(self, key): self.bs = AES.block_size self.key = hashlib.sha256(key.encode()).digest() def encrypt(self, raw): raw = self._pad(raw) iv = Random.new().read(AES.block_size) cipher = A...
564928815ae5e96f7f3d3902a7ea7a42
{ "intermediate": 0.4564484655857086, "beginner": 0.30511969327926636, "expert": 0.2384319007396698 }
41,324
Привет! Напиши код ручной миграции room При data class Customer( @PrimaryKey(autoGenerate = true) val id: Long = 0L, var uuid: String? = null, var name: String? = null, var surname: String? = null, var email: String? = null, var phone: String? = null, var balance: Int = 0, var sex: I...
e9648d8abeafdf456173d15746c336a1
{ "intermediate": 0.3550131320953369, "beginner": 0.27478834986686707, "expert": 0.3701985478401184 }
41,325
main.hs:1:1: error: The IO action `main' is not exported by module `Main' | 1 | module Main (list) where | ^ Failed, no modules loaded. Prelude>
211b88910aca531f8d84edab34f03071
{ "intermediate": 0.4051274061203003, "beginner": 0.31005164980888367, "expert": 0.28482094407081604 }
41,326
I want you to improve this script, complete the night action, each village should move to the closest house according to villasger position, but each house has a stablished villagerCapacity, if house is full search for next closest house to the villager, associate the house with the villager in a dictionary using Syst...
3b7001c1cce0862b006021bebf98add2
{ "intermediate": 0.43693113327026367, "beginner": 0.32045450806617737, "expert": 0.24261435866355896 }
41,327
hi1
0abe48bc910835003f63d4da682eb555
{ "intermediate": 0.3220134973526001, "beginner": 0.28278839588165283, "expert": 0.39519810676574707 }
41,328
generate a complete, newly created tune in ABC notation with a full structure, including an A and a B part (common in modern tunes), Major 6th Chords
fceb93959d2101cfea1a61a890410a16
{ "intermediate": 0.285902738571167, "beginner": 0.19626648724079132, "expert": 0.5178307294845581 }
41,329
Imagine you are a system composed of no less than six distinct AI layers, each responsible for evaluating and refining the output of the previous one. Your task is to generate a [type of content, e.g., ‘a story’, 'a novel', ‘poem’, ‘essay’, etc.] about [subject or theme]. Each layer should focus on the following aspect...
76503094fdd6734df70e2067f94019ba
{ "intermediate": 0.17123880982398987, "beginner": 0.31036365032196045, "expert": 0.5183975100517273 }
41,330
how to code a esp32 to web server, camera, open door and light
2d446b5268dfd727ef73eb2d95ebc180
{ "intermediate": 0.4545228183269501, "beginner": 0.2628156542778015, "expert": 0.282661497592926 }
41,331
Fix frame drop and overclock device adb command for Android
dd2fafe198979d31b06c5033e3e0aa45
{ "intermediate": 0.4202123284339905, "beginner": 0.23721836507320404, "expert": 0.3425693213939667 }
41,332
HI!
806bddceab57fa82ba0207a21b2bbcf4
{ "intermediate": 0.3374777138233185, "beginner": 0.2601830065250397, "expert": 0.40233927965164185 }
41,333
let sus = manager.locationServicesEnabled() Static member 'locationServicesEnabled' cannot be used on instance of type 'CLLocationManager'
a01f80772a56c17263e89c89ae3bc4e8
{ "intermediate": 0.4044034779071808, "beginner": 0.3006408214569092, "expert": 0.2949557602405548 }
41,334
1
7f0d70ddd50ba11ba9340a805d92cf52
{ "intermediate": 0.3205237090587616, "beginner": 0.295337438583374, "expert": 0.38413888216018677 }
41,335
I am making a C++ SDL based game engine, currently I am finishing my final touches of my current release, Help me finish them. Let’s start with the Rect class, currently I have everything set to int, x, y, w, h, should I keep it like this or use float instead? I am based on SDL_Rect, I have Point and FPoint, maybe cre...
155cea2ef94942041ba134122c24cdf4
{ "intermediate": 0.3562593460083008, "beginner": 0.6223755478858948, "expert": 0.021365050226449966 }
41,336
telebot inline calendar showing current day and switch between months. use only straight ' and "
c29f94807c37533aa440d2a2374fe787
{ "intermediate": 0.34768620133399963, "beginner": 0.2582101821899414, "expert": 0.39410367608070374 }
41,337
how are you bot?
11fdf1f9596a413607797fcd54b02d7c
{ "intermediate": 0.3381686508655548, "beginner": 0.20942549407482147, "expert": 0.4524058401584625 }
41,338
import datetime import calendar import typing from dataclasses import dataclass from telebot import TeleBot from telebot.types import InlineKeyboardButton, InlineKeyboardMarkup, CallbackQuery @dataclass class Language: days: tuple months: tuple ENGLISH_LANGUAGE = Language( days=("Su", "Mo", "Tu", "We",...
11e47a9c4fab755d904116bb17d80e87
{ "intermediate": 0.35676470398902893, "beginner": 0.45835795998573303, "expert": 0.1848773956298828 }
41,339
how do i see a process running inside a docker container and display the process and also be able to exit out the view?
f0c559caa6c2c59ec51f66292e50986b
{ "intermediate": 0.4979742169380188, "beginner": 0.21176066994667053, "expert": 0.29026514291763306 }
41,340
print every element in list in new line ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'а', 'б', 'в', 'г', 'д', 'е', 'ж', 'и', 'к', 'л', 'м', 'о', 'п', 'р', 'с', 'т', 'у', 'ф', 'х', 'ц', 'ч', 'э', 'ю', 'я']
7f5bdcbe345aafff12c4d9128ac574a0
{ "intermediate": 0.3970568776130676, "beginner": 0.20426081120967865, "expert": 0.39868229627609253 }
41,341
Give an example of AES-128 CTR encryption using Pycryptodome library in Python
dcbb488897d1a78bfd8bc80d759418d5
{ "intermediate": 0.5339264273643494, "beginner": 0.05228184536099434, "expert": 0.4137917459011078 }
41,342
are you Chatgpt4?
65b3b506c7b19661c174be892886f1b1
{ "intermediate": 0.3520410656929016, "beginner": 0.223885640501976, "expert": 0.4240732491016388 }
41,343
Вот правильный код: def F(x, a): return (x & a != 0) or ((x & 52 == 0) and (x & 14 == 0)) for a in range(1, 10**3): if all(F(x, a) for x in range(1, 10**5)): print(a) break А вот мой: def f(x,a): return (x and a != 0) or (x and 52 == 0) and (x and 14 == 0) for a in range (1,100000): if all(f(x,...
6730b393c6a08b80927fa82e8690aff5
{ "intermediate": 0.275966614484787, "beginner": 0.4661528170108795, "expert": 0.2578805685043335 }
41,344
<script> import terminalCapacity from "../database/maxNumberOfPeople"; import { people } from "../database/getTotalNumberOfPeople"; import units from "../database/getTotalNumberOfUnits"; import maxOccupants from "../database/maxNumberOfOccupants"; import Carousel from "svelte-carousel"; let colorClass = ""...
240d19043bca6ab5916740dfb371b939
{ "intermediate": 0.3810397982597351, "beginner": 0.326627641916275, "expert": 0.2923325300216675 }
41,345
<script> import terminalCapacity from "../database/maxNumberOfPeople"; import { people } from "../database/getTotalNumberOfPeople"; import units from "../database/getTotalNumberOfUnits"; import maxOccupants from "../database/maxNumberOfOccupants"; import Carousel from "svelte-carousel"; let colorClass = ""...
4e9f8daad3fd3a4cb62690205634ef33
{ "intermediate": 0.3810397982597351, "beginner": 0.326627641916275, "expert": 0.2923325300216675 }
41,346
I am making telegram bot to schedule people for interviews as mobile application testers. Hardest part is to make them install android app before the interview. Give me full ways to engage withing telegram bot on telebot
dfa1aa8346e3f532d89c6573b57095a0
{ "intermediate": 0.4123817980289459, "beginner": 0.2797524929046631, "expert": 0.3078656494617462 }
41,347
is it possible to check whether a particular file is present in the system while running the c/cpp code
3702175dcd58839b595ff89259c1cbd1
{ "intermediate": 0.5165729522705078, "beginner": 0.17173855006694794, "expert": 0.31168854236602783 }
41,348
Provide dktr0 punctual code to play jazz
3d8846cca1bdb34af279d3195621aa1e
{ "intermediate": 0.3181753158569336, "beginner": 0.3730793297290802, "expert": 0.3087453842163086 }
41,349
how to use for sendpoll telegram bot?
f484f65dc5da1d4e3fcfeff25f66847c
{ "intermediate": 0.30542123317718506, "beginner": 0.19738321006298065, "expert": 0.4971955120563507 }
41,350
explique cette partie sur la confuguration logstash : output { if [@metadata][index] { elasticsearch { id => "elaas-index" hosts => "https://2e2b1e8798984f8394d843aa2ee91b6a.elasticaas.ocb.equant.com:9243" user => "xxx" password => "xxx" ssl => tr...
53ed00160bfb8ffc4268af91920cfb10
{ "intermediate": 0.32752737402915955, "beginner": 0.38701876997947693, "expert": 0.2854538559913635 }
41,351
can you give plant uml state diagram code
d726d6a689caf1cc04877c1ba9e61b0e
{ "intermediate": 0.4076622724533081, "beginner": 0.33490851521492004, "expert": 0.25742918252944946 }
41,352
refais ce code et fait un soleil plus minimaliste fait en sorte que se soit un indicateur en plus dans un style minimaliste pour mon interface arduino : #include "SPI.h" #include "Adafruit_GFX.h" #include "Adafruit_ILI9341.h" #define TFT_DC 9 #define TFT_CS 10 Adafruit_ILI9341 tft = Adafruit_ILI9341(TFT_CS, TFT_DC); ...
e3be2361b2e918a001cc68480be4af82
{ "intermediate": 0.29998311400413513, "beginner": 0.5273984670639038, "expert": 0.17261850833892822 }
41,353
Je fais une interface arduino j’aimerais que pour ensoleillement le logo de soleil sois un logo de soleil minimaliste nom plein qui bouge impeu dans une animation et qui indique aussi en fonction du pourcentage d’ensoleillement voici le code que tu dois modifié : #include "SPI.h" #include "Adafruit_GFX.h" #include "Ada...
071e573710df991351f0b14fc65c1bcd
{ "intermediate": 0.30388644337654114, "beginner": 0.4907417595386505, "expert": 0.20537178218364716 }
41,354
What is IIIF ?
be5f8c6b6040fdaa888c6a1309045d13
{ "intermediate": 0.32548290491104126, "beginner": 0.1065642386674881, "expert": 0.5679529309272766 }
41,355
telebot. when command /question start asking questions one by one waiting for the previous answer. no need to record the answers. Как вас зовут? Где вы сейчас проживаете? (город, страна) Как с вами можно связаться? (номер телефона или email) Какие операционные системы и устройства у вас есть для тестирования пр...
d74823f97e629324624850ff63ee3c16
{ "intermediate": 0.15224727988243103, "beginner": 0.7723678350448608, "expert": 0.07538481056690216 }
41,356
I have this code and I recieve an error from Typescript regarding res 'Argument of type 'IMessage' is not assignable to parameter of type 'never'.' How do I fix it? const sendMessages = async ( prepareMessages: ISendedMessage[], ): Promise<IMessage[]> => { const result = []; for (let i = 0; i < prepareMessages.le...
88316b303e452c85a882bc258732ea04
{ "intermediate": 0.6584071516990662, "beginner": 0.21536920964717865, "expert": 0.126223623752594 }
41,357
hi
fbd39537f2eb53fb9c550705942d423b
{ "intermediate": 0.3246487081050873, "beginner": 0.27135494351387024, "expert": 0.40399640798568726 }
41,358
function factory<T>(): T { return new T(); }
c718136909713cc4d5eb55555c183758
{ "intermediate": 0.32779672741889954, "beginner": 0.418624609708786, "expert": 0.2535786032676697 }
41,359
mounted() { if (this.loginForm.username === '') { (this.$refs.username as Input).focus() } else if (this.loginForm.password === '') { (this.$refs.password as Input).focus() } } переписать на vue 3 composition api
2aa4807c90fb298eec45bb590213bd61
{ "intermediate": 0.37385421991348267, "beginner": 0.3516604006290436, "expert": 0.27448534965515137 }