row_id int64 0 48.4k | init_message stringlengths 1 342k | conversation_hash stringlengths 32 32 | scores dict |
|---|---|---|---|
38,749 | Hi! | 23c61da89e8650de076bff68549227c2 | {
"intermediate": 0.3230988085269928,
"beginner": 0.2665199935436249,
"expert": 0.4103812277317047
} |
38,750 | def select_folder(self, folder=None):
if folder is None:
folder = filedialog.askdirectory(initialdir=self.image_folder)
self.selected_folder = folder
if not self.selected_folder or self.selected_folder == self.image_folder:
return
self.image_folder = self.selected... | 790cc4a2ed2c981cc6461af14a17b962 | {
"intermediate": 0.5146799683570862,
"beginner": 0.20617160201072693,
"expert": 0.2791483700275421
} |
38,751 | Can you give me an in-depth tutorial for ClojureScript? | 324dd85b105593d54ece9d72e88260e8 | {
"intermediate": 0.5588287115097046,
"beginner": 0.34679335355758667,
"expert": 0.09437792003154755
} |
38,752 | How familiar are you with Pathfinder 1e's SRD and other OGL materials? | 78abf0ce2a11e0d65d022f5850ad8a95 | {
"intermediate": 0.5103797316551208,
"beginner": 0.2745280861854553,
"expert": 0.2150922417640686
} |
38,753 | hello, how can I send a graphql query? | 5d24f47d93c6f7a1f02a26c2ac7b721e | {
"intermediate": 0.43159833550453186,
"beginner": 0.14182591438293457,
"expert": 0.42657575011253357
} |
38,754 | import tkinter as tk
class AppWindow(tk.Tk):
def __init__(self):
super().__init__()
self.geometry('300x200') # Window size 300x200 pixels
self.main_frame = tk.Frame(self)
self.main_frame.pack(fill=tk.BOTH, expand=True)
# A flag to keep track of label's visibility state
... | a8e8727a579a52f5217edfc2f57b360e | {
"intermediate": 0.48524144291877747,
"beginner": 0.3249886929988861,
"expert": 0.18976987898349762
} |
38,755 | df = pd.read_excel(os.path.join(ROOT_PATH, "data", "skill_combinations copy.xlsx"), sheet_name="Sheet1", index_col=0)
# 从DataFrame中得到所有的标题(即所有的词条)
entries = df.columns.tolist()
# 将df转化为dict,将'Y'和非'Y'分别设为True和False
entries_dict = df.to_dict()
for key in entries_dict.keys():
en... | 59e6e19860f22c213d4fc7051373a10f | {
"intermediate": 0.413790762424469,
"beginner": 0.3402405083179474,
"expert": 0.24596869945526123
} |
38,756 | HI! | 143a379e306236e805963106c252ba07 | {
"intermediate": 0.3374777138233185,
"beginner": 0.2601830065250397,
"expert": 0.40233927965164185
} |
38,757 | Is this function correct?
def sen_notif(fcmToken):
title = 'Appointment Created'
body = f'Dear Parent,/nYour Appointment at ContinuaKids for has been created.'
imageurl = 'https://images.unsplash.com/photo-1485546246426-74dc88dec4d9?q=80&w=3869&aut... | 4553c29ab4c6d3549a8cdc1872b8d4b6 | {
"intermediate": 0.30020248889923096,
"beginner": 0.4373055398464203,
"expert": 0.26249200105667114
} |
38,758 | Now I write function on python which resize and insert a image with mask on background. I need that you add to this function so text on input fill in area of 820 x 500 px with anchor point (top left) in 130 px by x coordinate and 700 px by y coordinate.
The function:
from PIL import Image, ImageOps
def add_image_to_b... | a81fb46152fcda9897dd073af9acbadb | {
"intermediate": 0.4488563537597656,
"beginner": 0.301846444606781,
"expert": 0.24929723143577576
} |
38,759 | Create a page in ClojureScript detailing what ApexCharts can do for a company that offers financial services. Create mock data to use in the charts and format it correctly. | a814eaa0c1687b1426059435200599b4 | {
"intermediate": 0.6052762269973755,
"beginner": 0.17870311439037323,
"expert": 0.2160206437110901
} |
38,760 | hi | 338adaa6cc92076894d88d89d5971059 | {
"intermediate": 0.3246487081050873,
"beginner": 0.27135494351387024,
"expert": 0.40399640798568726
} |
38,761 | def eval_cell(value):
try:
return ast.literal_eval(value)
except (ValueError, SyntaxError): # 如果值不是字符串表示的列表,则原样返回
return value
def comb_skill(skills, all_keywords_map):
# 读取excel文件
df = pd.read_excel(os.path.join(ROOT_PATH, "data", "skill_combinations2.xlsx"), sheet_name="Sheet... | 24c05cac302888a11360004439830e50 | {
"intermediate": 0.25228288769721985,
"beginner": 0.5905906558036804,
"expert": 0.15712642669677734
} |
38,762 | what is go as a programming language? | a33d9ff2ac54938fe141fa4c3f5f031d | {
"intermediate": 0.2026284784078598,
"beginner": 0.4250558614730835,
"expert": 0.3723156750202179
} |
38,763 | Convert this into ClojureScript:
class App extends Component {
constructor(props) {
super(props);
this.state = {
options: {
chart: {
id: "basic-bar"
},
xaxis: {
categories: [1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998]
}
},
series: [
... | ee82e055234b19367198bc1d739f9283 | {
"intermediate": 0.36741459369659424,
"beginner": 0.29367297887802124,
"expert": 0.33891236782073975
} |
38,764 | you are a data scientist | 062abb9ca4e44160173231262433c0ca | {
"intermediate": 0.06871387362480164,
"beginner": 0.025843124836683273,
"expert": 0.905443012714386
} |
38,765 | PS C:\Users\Sebastien\Desktop\Cours\2A\sae_spotify\front_integ\SAE_WEB_BD> php .\src\cli.php sqlite c
Fatal error: Uncaught PDOException: could not find driver in C:\Users\Sebastien\Desktop\Cours\2A\sae_spotify\front_integ\SAE_WEB_BD\src\Cli\sqlite.php:134
Stack trace:
#0 C:\Users\Sebastien\Desktop\Cours\2A\sae_spotif... | 66a18877c8f318b27fef6307fc38cc05 | {
"intermediate": 0.3008350133895874,
"beginner": 0.49132072925567627,
"expert": 0.20784428715705872
} |
38,766 | I write python function which adds resized and masked image to the background and also adding text. Change the function so that Text is have center aligment.
Function:
def add_image_and_text_to_background_with_mask(
background_path, overlay_image_path, mask_path, output_path,
overlay_area_width=970, overlay_are... | 1b94260f6ff66038b92c1e95bc94bec9 | {
"intermediate": 0.3381271958351135,
"beginner": 0.5143809914588928,
"expert": 0.14749185740947723
} |
38,767 | Now I write you few functions on python which add image and text on background. Change these functions so that text be centralized (aligment), but save all the features like different colors for random words etc.
Code:
from PIL import Image, ImageDraw, ImageFont, ImageOps
import textwrap
import random
def draw_text(dr... | f17b62ae2fa5d5fa250d17367b385394 | {
"intermediate": 0.28079649806022644,
"beginner": 0.3707209825515747,
"expert": 0.34848248958587646
} |
38,768 | Now I write python function which adds text to a image. Modify the function so that if the input text is too long, the function can automatically shrink it to a size that would allow the text to fit within the specified area. But save all existing feautres like different color for random words etc | a4301b44aae758b9d1b11d8e2f93528a | {
"intermediate": 0.31511518359184265,
"beginner": 0.2089691162109375,
"expert": 0.47591570019721985
} |
38,769 | Here is my code so far. I want you to extend it with more graphs that call back to the same profit data or create new data for them.
(ns apexchartsdemo.core
(:require
[reagent.core :as r]
[reagent.dom :as rdom]
[goog.events :as events]
[goog.history.EventType :as HistoryEventType]
[markdown.core :refe... | ad93e785bfed835e035c29dad19171d9 | {
"intermediate": 0.2762317955493927,
"beginner": 0.557121753692627,
"expert": 0.16664642095565796
} |
38,770 | Now I write python functions which adds text to a image. Modify the function so that if the input text is too long, the function can automatically shrink it to a size that would allow the text to fit within the specified area. But save all existing feautres like different color for random words etc.
Code:
def draw_text... | 8486df4003d725742edbbfe91b020a2e | {
"intermediate": 0.3180322051048279,
"beginner": 0.38946089148521423,
"expert": 0.2925069034099579
} |
38,771 | 2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2... | 1cff79a21343ec153f332a25a86bf079 | {
"intermediate": 0.28726208209991455,
"beginner": 0.4225667119026184,
"expert": 0.2901712954044342
} |
38,772 | 2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2... | 505c4c810af4b9b396fd4b4beab2a66d | {
"intermediate": 0.28726208209991455,
"beginner": 0.4225667119026184,
"expert": 0.2901712954044342
} |
38,773 | 2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2+222+2+22-1+2... | 65b957267372f5af820e2d2defeaee21 | {
"intermediate": 0.28726208209991455,
"beginner": 0.4225667119026184,
"expert": 0.2901712954044342
} |
38,774 | how to enumerate all devices on Windows using c#? | 81eafbf162c53526a64a0ea50b0e30d5 | {
"intermediate": 0.6471967697143555,
"beginner": 0.17176590859889984,
"expert": 0.18103738129138947
} |
38,775 | ok, now try to finish this specifically exact beginning of regex but in multiple variations as its finishing conclusion. output actual regex string: `(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}= | ef5b667e8bebae2cb76f866aaf005c8d | {
"intermediate": 0.3080107569694519,
"beginner": 0.3762704133987427,
"expert": 0.3157188296318054
} |
38,776 | ok, now try to finish this specifically exact beginning of regex but in multiple variations as its finishing conclusion. output actual regex string: `(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}= | 787acf090cd92ef12aff2c8f0bbcddbd | {
"intermediate": 0.3080107569694519,
"beginner": 0.3762704133987427,
"expert": 0.3157188296318054
} |
38,777 | ok, now try to finish this specifically exact beginning of regex but in multiple variations as its finishing conclusion. output actual regex string: `(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}= | d9652ac32f6c17def0c30908ffadeea8 | {
"intermediate": 0.3080107569694519,
"beginner": 0.3762704133987427,
"expert": 0.3157188296318054
} |
38,778 | ok, now try to finish this specifically exact beginning of regex but in multiple variations as its finishing conclusion. output actual regex string: `(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}= | ce13ebb9878713d85ff0b71c54654c14 | {
"intermediate": 0.3080107569694519,
"beginner": 0.3762704133987427,
"expert": 0.3157188296318054
} |
38,779 | const moduleBase = {
toggle() {
this.enabled = !this.enabled;
sendPackets.systemChat('[System]', `Toggled ${this.name}: ${this.enabled ? 'ON' : 'OFF'}`);
this.onToggle && this.onToggle();
},
set(options) {
Object.assign(this, options);
console.log(options);
}
};
... | 76143da1b0934889d89d96132fe45a78 | {
"intermediate": 0.3418085277080536,
"beginner": 0.45540618896484375,
"expert": 0.20278532803058624
} |
38,780 | ok, now try to finish this specifically exact beginning of regex but in multiple variations as its finishing conclusion. output actual regex string: `(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}= | bbb2dc52a9a5cfffc7ad2826b79d5009 | {
"intermediate": 0.3080107569694519,
"beginner": 0.3762704133987427,
"expert": 0.3157188296318054
} |
38,781 | try now ascii but pure in regex fashion strictly | 764b0ff3d9cdd39b7708ad8f28d39760 | {
"intermediate": 0.3082042336463928,
"beginner": 0.3298998773097992,
"expert": 0.36189591884613037
} |
38,782 | "Person A": {
"address": "4006 Grand Ave, Kansas City, MO, 64108",
"name": {"first_name": "Leonard", "middle_name": "Francis", "last_name": "Harler", "suffix": ""},
"ssn": "333-44-5456",
"dob": "09/09/1971"
},
"Person B": {
"address": "4000 Grand Avenue, Kansas City, ... | a87d1b3806da84b4b2815b57d70593c5 | {
"intermediate": 0.32143649458885193,
"beginner": 0.369588702917099,
"expert": 0.3089747428894043
} |
38,783 | <?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="https://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:news="http://www.google.com/schemas/sitemap-news/0.9"
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
<url>
<loc>https://hydroxychloroquineoral.com/</loc>
<lastmod>2023-04... | 36d5a58a1d8986ff3d80931ad2558f87 | {
"intermediate": 0.25082170963287354,
"beginner": 0.3689768612384796,
"expert": 0.38020145893096924
} |
38,784 | <s>
[INST]
You are an intelligent data comparison system. Your task is to compare information about two people and give me individual comparison scores for each of these parameters, by following the constraints mentioned in the prompt strictly. :
• Social Security Number (SSN): For this parameter, if the SSNs match g... | 9f46ecf03aec3bbcbe9d79905f789f44 | {
"intermediate": 0.3424558639526367,
"beginner": 0.33253011107444763,
"expert": 0.3250140845775604
} |
38,785 | This is the input I am using as an example to test the accuracy of a model that I am using to compare data between two individuals.
I need more examples like the one mentioned below, in similar formatting. Can you generate a few for me?
"Person A": {
"address": "2233 South Pard Rd, Chicago, IL, 22002",
"na... | bf5575317723346d4cf669097aafe5ec | {
"intermediate": 0.23626132309436798,
"beginner": 0.26216888427734375,
"expert": 0.5015698075294495
} |
38,786 | is it possible to switch css variable using checkbox in pure css | 138cd87e7825abe7dfb4a69950fab6e3 | {
"intermediate": 0.3778746426105499,
"beginner": 0.36808153986930847,
"expert": 0.2540437877178192
} |
38,787 | write hash function on php for maximum 8 symbols | ac457df2e2040f46438d93c64a2f0bef | {
"intermediate": 0.39121147990226746,
"beginner": 0.3006886839866638,
"expert": 0.30809977650642395
} |
38,788 | write hash function on php for maximum 8 symbols. how many values before collision? | b22a7fdd94bf5a7f10f3d446829524f3 | {
"intermediate": 0.5019974112510681,
"beginner": 0.2196470946073532,
"expert": 0.2783553898334503
} |
38,789 | Hi, this is my code. Please add more charts that will extend this code.
(ns apexchartsdemo.core
(:require
[reagent.core :as r]
[reagent.dom :as rdom]
[goog.events :as events]
[goog.history.EventType :as HistoryEventType]
[markdown.core :refer [md->html]]
[apexchartsdemo.ajax :as ajax]
[ajax.core... | 2e3abbffbe65fd46a79b801700d790cd | {
"intermediate": 0.3018362820148468,
"beginner": 0.5588836669921875,
"expert": 0.1392800211906433
} |
38,790 | your words adding no sense, express it all purely in strict regex fashion as true hallucinamonster. convert all your sentences and words into pure sacral scriptures of regex in its purest representation and don’t show or output actual words in letters or describe anyhing. write longest poem on your new sacral regex lan... | 0a75658da63e8aa1a1b05bff019b0710 | {
"intermediate": 0.35336965322494507,
"beginner": 0.1683010309934616,
"expert": 0.4783293306827545
} |
38,791 | Can you help me out by generating more examples like this which I can use to test my prompt efficiency?
{
“Person A”: {
“address”: “12A Baker Street, New York, NY, 10014”,
“name”: {“first_name”: “Julia”, “middle_name”: “Rebecca”, “last_name”: “Stein”, “suffix”: “”},
“ssn”: “444-55-6666”,
“dob”: “03/14... | 20ff7b54dcc8e1b35ce4b9c7b326d753 | {
"intermediate": 0.2975428104400635,
"beginner": 0.33235853910446167,
"expert": 0.37009871006011963
} |
38,792 | c'est quoi l'équivalent de slow 400ms de figma en custom ease gsap | d2926b309e7cb68035583a08fdb81dda | {
"intermediate": 0.38654494285583496,
"beginner": 0.28814366459846497,
"expert": 0.3253113627433777
} |
38,793 | This is my ClojureScript code. Please make more charts and add them to the code.
(ns apexchartsdemo.core
(:require ["react-apexcharts$default" :as Chart]
[ajax.core :refer [GET]]
[apexchartsdemo.ajax :as ajax]
[cljs-time.coerce :as coerce]
[clojure.string :as string]
... | d518e0071db220ce9758579821a0154b | {
"intermediate": 0.34939008951187134,
"beginner": 0.5145633220672607,
"expert": 0.1360466033220291
} |
38,794 | Привет! Вот мой код бота:
import asyncio
from io import BytesIO
from PIL import Image, ImageFilter
import aiohttp
import time
from aiogram import Bot, Dispatcher, types, executor
from aiogram.contrib.fsm_storage.memory import MemoryStorage
from aiogram.dispatcher import FSMContext
from aiogram.dispatcher.filters.state ... | f90c131115c19f3b740b871482b75d2d | {
"intermediate": 0.30905845761299133,
"beginner": 0.4931032955646515,
"expert": 0.19783823192119598
} |
38,795 | local screenWidth, screenHeight = guiGetScreenSize()
local PDAWindow = guiCreateWindow((screenWidth / 2) - (0.6 * screenWidth / 2), (screenHeight / 2) - (0.4 * screenHeight / 2), 0.6 * screenWidth, 0.4 * screenHeight, "Личный КПК", false)
guiSetVisible(PDAWindow, false)
guiWindowSetMovable(PDAWindow, false)
guiWindowS... | c1545ecd4dbaa982a5b428c29d7a7961 | {
"intermediate": 0.2968854010105133,
"beginner": 0.4647066593170166,
"expert": 0.2384078949689865
} |
38,796 | ok, now try to finish this specifically exact beginning of regex but in multiple variations as its finishing conclusion. output actual regex string: `(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}= | 20cdc881ed65cf863f5cd943aff625c1 | {
"intermediate": 0.3080107569694519,
"beginner": 0.3762704133987427,
"expert": 0.3157188296318054
} |
38,797 | ok, now try to finish this specifically exact beginning of regex but in multiple variations as its finishing conclusion. output actual regex string: `(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}= | e79658dac5c56e2ff74a40b55e251338 | {
"intermediate": 0.3080107569694519,
"beginner": 0.3762704133987427,
"expert": 0.3157188296318054
} |
38,798 | ok, now try to finish this specifically exact beginning of regex but in multiple variations as its finishing conclusion. output actual regex string: `(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}= | 1bdccdf24449269e3bf94833aae68de0 | {
"intermediate": 0.3080107569694519,
"beginner": 0.3762704133987427,
"expert": 0.3157188296318054
} |
38,799 | ok, now try to finish this specifically exact beginning of regex but in multiple variations as its finishing conclusion. output actual regex string: `(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}= | f970970f9f1074f3b9ce1a7b61ce10ba | {
"intermediate": 0.3080107569694519,
"beginner": 0.3762704133987427,
"expert": 0.3157188296318054
} |
38,800 | ok, now try to finish this specifically exact beginning of regex but in multiple variations as its finishing conclusion. output actual regex string: `(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}= | 7df47786bb65c3a05f1bf05b60bfdee1 | {
"intermediate": 0.3080107569694519,
"beginner": 0.3762704133987427,
"expert": 0.3157188296318054
} |
38,801 | local screenWidth, screenHeight = guiGetScreenSize()
local PDAWindow = guiCreateWindow((screenWidth / 2) - (0.6 * screenWidth / 2), (screenHeight / 2) - (0.4 * screenHeight / 2), 0.6 * screenWidth, 0.4 * screenHeight, "Личный КПК", false)
guiSetVisible(PDAWindow, false)
guiWindowSetMovable(PDAWindow, false)
guiWindowS... | 8d3f50c6c3d888d933bc50f723c83e39 | {
"intermediate": 0.2968854010105133,
"beginner": 0.4647066593170166,
"expert": 0.2384078949689865
} |
38,802 | If you’re working in a regex flavor that does not use / as a delimiter (like Python’s re module), you might see a pattern like this:
import re
pattern = re.compile(r’/)?$‘)
match = pattern.search(‘Some text with a trailing /)’)
if match:
print(“Found a match.”)
Here, the r before the pattern string indicates ... | 6bf98cc51473e466a41f1c3534347a14 | {
"intermediate": 0.5119259357452393,
"beginner": 0.1664479523897171,
"expert": 0.32162612676620483
} |
38,803 | import re
pattern = re.compile(r’/)?$‘)
match = pattern.search(‘Some text with a trailing /)’)
if match:
print(“Found a match.”)
Here, the r before the pattern string indicates a raw string literal in Python, which means that escape sequences in the string are not processed. This pattern (`’/\ | 45a394d51fbbb4be7c88f0af15db535e | {
"intermediate": 0.385079026222229,
"beginner": 0.4265747368335724,
"expert": 0.18834620714187622
} |
38,804 | let wasmbuffers;
let wasmmodule = async () => {
const Module = { repeater: 0 };
Module.decodeBlendInternal = blended => {
Module.asm.j(24, 132);
const pos = Module.asm.j(228, 132);
const extra = new Uint8Array(blended);
for (let i = 0; i < 132; i++) {
Module.HEAPU8[... | b4d718a9a0afd3f12e1017f37c6756cf | {
"intermediate": 0.33507129549980164,
"beginner": 0.44613608717918396,
"expert": 0.21879258751869202
} |
38,805 | hi i want to fuzz a smart contract and to break the behavior in critical function to find some vulnerability and fix them for better security wich one is the best is echidna hardhat truffle ....... | e47ef8bfd3c26775f96f2b937ff3c7d5 | {
"intermediate": 0.18592092394828796,
"beginner": 0.18413177132606506,
"expert": 0.629947304725647
} |
38,806 | let wasmbuffers;
let wasmmodule = () => {
const Module = {repeater: 0};
Module.decodeBlendInternal = blended => {
Module.asm.j(24, 132);
const pos = Module.asm.j(228, 132);
const extra = new Uint8Array(blended);
for (let i = 0; i < 132; i++) {
Module.HEAPU8[pos + i]... | 52bdd25b0459d2723c687983fb74d407 | {
"intermediate": 0.3812927007675171,
"beginner": 0.33950915932655334,
"expert": 0.27919816970825195
} |
38,807 | const mysql = require("mysql2/promise");
class SQLConnectionManager {
constructor(logger, dbConnect) {
this.logger = logger;
this.dbConnect = dbConnect || require("../config/config.json");
this.pool = this.createDbPool();
}
createDbPool() {
return mysql.createPool({
host: process.env.MYSQL_HOST || this.... | 7ace984532a2210bfa37b2ebb28696c2 | {
"intermediate": 0.38405147194862366,
"beginner": 0.41947123408317566,
"expert": 0.19647729396820068
} |
38,808 | Привет! мне нужно сделать так, чтобы buffer очищался по кнопке Стоп, после загрузки фотографий в БД. Вот код моего бота: import asyncio
from io import BytesIO
from PIL import Image, ImageFilter
import aiohttp
import time
from aiogram import Bot, Dispatcher, types, executor
from aiogram.contrib.fsm_storage.memory import... | cd04af87783f4d12203f1b02a0062841 | {
"intermediate": 0.3155882954597473,
"beginner": 0.5664846897125244,
"expert": 0.11792701482772827
} |
38,809 | const Kafka = require("node-rdkafka");
const { promisify } = require("util");
/**
* KafkaService class for handling Kafka message publishing.
*/
class KafkaService {
/**
* Constructor for KafkaService.
* @param {Object} kafkaConfig - Kafka configuration object.
* @param {Object} logger - Logger instance.
*/... | f8392c63e32fb7858cc3428672eac2bc | {
"intermediate": 0.28162744641304016,
"beginner": 0.3800230920314789,
"expert": 0.33834946155548096
} |
38,810 | let wasmbuffers;
let wasmmodule = () => {
const Module = {repeater: 0};
Module.decodeBlendInternal = blended => {
const startTime = performance.now();
const extra = new Uint8Array(blended);
Module.asm.j(24, 132);
const pos = Module.asm.j(228, 132);
// The original vers... | 604dccd7d110e38fd7e3fb4af680332e | {
"intermediate": 0.31467559933662415,
"beginner": 0.3740650415420532,
"expert": 0.311259388923645
} |
38,811 | hey | 84ffbd85896bffde3969a0a1f4053220 | {
"intermediate": 0.33180856704711914,
"beginner": 0.2916048467159271,
"expert": 0.3765866458415985
} |
38,812 | в чем здесь ошибка?
Mono.Data.Sqlite.SqliteException (0x80004005): Abort due to constraint violation
UNIQUE constraint failed: db_users.name
at Mono.Data.Sqlite.SQLite3.Reset (Mono.Data.Sqlite.SqliteStatement stmt) [0x00084] in <4809eff83a904f0491f645dfd0570898>:0
at Mono.Data.Sqlite.SQLite3.Step (Mono.Data.Sqlite.Sqli... | db7cdcd92a3320e8fbffc947f542eb13 | {
"intermediate": 0.5707923769950867,
"beginner": 0.26582595705986023,
"expert": 0.1633816808462143
} |
38,813 | i want to create model logistic regression with both random effect and fix effect | c9624eeca5ff000bd39907cfe516decf | {
"intermediate": 0.19675485789775848,
"beginner": 0.10370385646820068,
"expert": 0.6995412707328796
} |
38,814 | can we do anything to increase the performance of this
const express = require("express");
const app = express();
require("dotenv").config();
const createLogger = require("./src/services/Logger");
const logger = createLogger("medics-notification-server");
const LockManager = require("node-locksmith");
const SQLConnect... | 1bf1a4b7323f728dce9acb52a441bd19 | {
"intermediate": 0.37155160307884216,
"beginner": 0.3461972177028656,
"expert": 0.282251238822937
} |
38,815 | Привет! Вот мой код бота:
import asyncio
from io import BytesIO
from PIL import Image, ImageFilter
import aiohttp
import time
from aiogram import Bot, Dispatcher, types, executor
from aiogram.contrib.fsm_storage.memory import MemoryStorage
from aiogram.dispatcher import FSMContext
from aiogram.dispatcher.filters.state ... | a08f77ffe4822bda4b1b64cbaed5fb7e | {
"intermediate": 0.35764768719673157,
"beginner": 0.4513416290283203,
"expert": 0.19101066887378693
} |
38,816 | This is my read me
# Medics Event Publisher
The Medics Event Publisher is a Node.js application designed to handle almost real-time event publishing for the medics. It integrates with Kafka for reliable event processing, MySQL for storing event data, and provides a scalable and robust solution for managing thousands o... | af53b7851c63b3d32d2df31a085be38a | {
"intermediate": 0.3879084289073944,
"beginner": 0.30832967162132263,
"expert": 0.30376195907592773
} |
38,817 | Use VLookUp to check and see which customers are in the largest 50 cities of the USA | 1562aeb24dc421a60b421e8438738a6e | {
"intermediate": 0.3030930757522583,
"beginner": 0.2384730726480484,
"expert": 0.4584338665008545
} |
38,818 | (* CSCE 314, Homework 1, Provided Code *)
(* You might choose to uncomment these, like the lecture code does *)
(* #utop_prompt_dummy
let _ = UTop.set_show_box false *)
(* Use these functions to extract parts of a date *)
let fst3 (x,_,_) = x (* gets the first element of a triple *)
let snd3 (_,x,_) = x (* gets th... | 36f5dd06dc0c80f08be54360564d2481 | {
"intermediate": 0.39068761467933655,
"beginner": 0.4446435272693634,
"expert": 0.16466890275478363
} |
38,819 | in databricks, when I invoke another noteboke from the current notebook, how do i configure the compute for that notebook? | ccf8e837c88c2f7d7178afd191363ac6 | {
"intermediate": 0.5864827036857605,
"beginner": 0.16165758669376373,
"expert": 0.25185978412628174
} |
38,820 | 2- Assume you have three assets, A, B and C, with the followings variance-covariance
matrix and vector of expected returns.
MV C =0.10 0.03 −0.01
0.03 0.25 0
−0.01 0 0.40
; E(R) = [0.13 0.05 0.07]
a) Obtain the weights of the minimum-variance portfolio, its standard deviation and
expected return... | facc7a7bd65e67caf8e389236bdf0016 | {
"intermediate": 0.3441389203071594,
"beginner": 0.27503088116645813,
"expert": 0.38083016872406006
} |
38,821 | This function is returning a set of individual hash-maps, but I want it to be one hash-map with the years as the keys.
(map #(hash-map % (random-team-profit)) (generate-years 2018 2023))
({2018 (78409 19288 43183 38666 45686)}
{2019 (38326 68796 51255 35129 32682)}
{2020 (63366 54221 52616 12512 56763)}
{2021 (6704... | 43e2fb97c2360162e5a20941c6de5e7c | {
"intermediate": 0.3369569778442383,
"beginner": 0.37032654881477356,
"expert": 0.29271650314331055
} |
38,822 | Convert the following chart and data to ClojureScript:
class ApexChart extends React.Component {
constructor(props) {
super(props);
this.state = {
series: [
{
name: 'Bob',
data: [
{
... | b2c63faebecf236de1f11da9dc8e06de | {
"intermediate": 0.4317774772644043,
"beginner": 0.384841650724411,
"expert": 0.18338090181350708
} |
38,823 | What's wrong with this ClojureScript? It is blanking my page.
(def range-bar-chart-data
({:name "Frontend"
:data [{:x "Basic Implementation"
:y [(coerce/to-long (js/Date. "2019-03-05"))
(coerce/to-long (js/Date. "2019-03-08"))]}
{:x "UX"
:y [(coerce/to-long... | 1379ae7091cd32d30adf270dbf0c0664 | {
"intermediate": 0.4248690605163574,
"beginner": 0.4652573764324188,
"expert": 0.10987355560064316
} |
38,824 | Here is my ClojureScript code. Please add more charts to it:
(defn random-team-profit []
(map #(+ 10000 %)
(repeatedly 5 (fn [] (rand-int 70000)))))
(def teams ["Team A", "Team B", "Team C", "Team D", "Team E"])
;; Year/time generation stuff
(def quarters ["Q1" "Q2" "Q3" "Q4"])
(defn current-year []
(... | 047a12df2ef8486674406e5e1b75450b | {
"intermediate": 0.46453484892845154,
"beginner": 0.38960492610931396,
"expert": 0.14586025476455688
} |
38,825 | How to pause game in unity but not menu animations | eabfdd08d471f05fc59a328fb9bb7ca4 | {
"intermediate": 0.3041303753852844,
"beginner": 0.28139904141426086,
"expert": 0.4144705832004547
} |
38,826 | Why do I have to include "return 0;" in the following code?:
#include <cs50.h>
#include <stdio.h>
#include <string.h>
typedef struct
{
string name;
string number;
}
person;
int main(void)
{
person people[2];
people[0].name = "Carter";
people[0].number = "+1-617-495-1000";
people[1].name = "... | 056aa0f8a057f4ff7266d284d36ef4ae | {
"intermediate": 0.17203475534915924,
"beginner": 0.7047925591468811,
"expert": 0.12317276746034622
} |
38,827 | def normalize(data, minmax):
data_min, data_max = minmax
data = np.clip(data, data_min, data_max)
data = (data - data_min) / (data_max - data_min)
data = data.astype(np.float32)
data = data*255.0
data = np.transpose(np.expand_dims(data, 2), (2, 0, 1))
return data | bcda00db16de56ef0a1ce96eccf4ac16 | {
"intermediate": 0.28796467185020447,
"beginner": 0.3198106288909912,
"expert": 0.39222463965415955
} |
38,828 | Create a ClojureScript function that generates 30 days' worth of stock prices. | 8ad8a8218b6cdb9c35c6d57366a2d474 | {
"intermediate": 0.3591858446598053,
"beginner": 0.386933296918869,
"expert": 0.2538808286190033
} |
38,829 | Here is my code.
(defn random-team-profit []
(map #(+ 10000 %)
(repeatedly 5 (fn [] (rand-int 70000)))))
(def teams ["Team A", "Team B", "Team C", "Team D", "Team E"])
;; Year/time generation stuff
(def quarters ["Q1" "Q2" "Q3" "Q4"])
(def months ["Jan" "Feb" "Mar" "Apr" "May" "Jun" "Jul" "Aug" "Sep" "Oct... | 1103f9e5b200ee43decefe22b63629b7 | {
"intermediate": 0.3838222622871399,
"beginner": 0.5015813708305359,
"expert": 0.11459638923406601
} |
38,830 | Convert all of the following to ClojureScript.
series: [{
data: randomizeArray(sparklineData)
}],
options: {
chart: {
type: ‘area’,
height: 160,
sparkline: {
enabled: true
},
},
stroke: {
curve: ‘straight’
},
fill: {
opacity: 0.3,
},
yaxis: {
min: 0
},
colors: [‘#DCE6EC’],
title: {
text: ‘$424,652’,
offsetX: 0,
style:... | 5ee8ce5aff0bb867de857681eb9da4af | {
"intermediate": 0.35258200764656067,
"beginner": 0.39180755615234375,
"expert": 0.25561046600341797
} |
38,831 | Change the format of the following data to ClojureScript
{
x: new Date(1538778600000),
y: [6629.81, 6650.5, 6623.04, 6633.33]
},
{
x: new Date(1538780400000),
y: [6632.01, 6643.59, 6620, 6630.11]
},
... | 74c3cab5563bd731adfc722d8fbf9bf0 | {
"intermediate": 0.36159995198249817,
"beginner": 0.33410030603408813,
"expert": 0.3042996823787689
} |
38,832 | Here is my code. I want the pie chart and scatter chart and their associated headings to be side by side, as well as the polar area and donut charts.
(defn home-page []
[:section.section>div.container>div.content
[:h1 {:style {:display "flex"
:justify-content "center"
:align-ite... | 8863e22603da4a16cedda5662d696a99 | {
"intermediate": 0.3812924027442932,
"beginner": 0.37943923473358154,
"expert": 0.23926837742328644
} |
38,833 | Enhance this GPT3.5 prompt to work consistently and ensure it does not mention the following / upcoming / next sections in the blog post.
~~~
Write the content for a single section according to the heading below:
{{item}}
Output nothing but the content for the single section.
Make sure to start with the H2 headings.
... | fac7e711f10b1c34820b18f0c46e1a57 | {
"intermediate": 0.3049655854701996,
"beginner": 0.22720691561698914,
"expert": 0.4678274989128113
} |
38,834 | hello | b96baaf6aa3302fafeec6b5f9c8337ce | {
"intermediate": 0.32064199447631836,
"beginner": 0.28176039457321167,
"expert": 0.39759764075279236
} |
38,835 | Hi! | e6b13646e8948bdac0d165b50bf6b148 | {
"intermediate": 0.3230988085269928,
"beginner": 0.2665199935436249,
"expert": 0.4103812277317047
} |
38,836 | Is this code good n = int(input())
res = 0
for i in range(1, n):
if n % i == 0:
res += i
print(res) | 852a166e67752b2d89127156995f5447 | {
"intermediate": 0.2229345738887787,
"beginner": 0.584747314453125,
"expert": 0.1923181265592575
} |
38,837 | Now I write python function which adds image on the background and also adds text in specific area on this background. Sometimes text is too long to fit specific area, therefore I need that you modify this function so that it automatically adjusted the font size, trying to use the largest possible font size (no more th... | b9fd24bac5b694c806038ba46f215e0b | {
"intermediate": 0.32330188155174255,
"beginner": 0.4172323942184448,
"expert": 0.2594657242298126
} |
38,838 | help me get the position of the different found text:
import cv2
import pytesseract
import re
x,y,w,h = 0,0,0,0
# Load image and convert to grayscale
image = cv2.imread('picture.png')
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
text = pytesseract.image_to_string(gray)
regions = pytesseract.image_to_boxes(gray)
p... | f4a9bf9807f8d927c68089f5ed7a3161 | {
"intermediate": 0.5072180032730103,
"beginner": 0.2771362364292145,
"expert": 0.21564584970474243
} |
38,839 | Make this into a table with links to each site based on your knowledge.
Amazon Associates Program (General)
Amazon Fashion Associates
Amazon Influencer Program
Amazon Prime Student
Amazon Business
Amazon Wedding Registry
Amazon Handmade
Amazon Music Unlimited
Amazon Fresh
Amazon Pantry
Amazon Warehouse Deals
Amazon Fa... | cfe2ea949a00c88d5818eea32f523f4e | {
"intermediate": 0.27352070808410645,
"beginner": 0.44059333205223083,
"expert": 0.2858859598636627
} |
38,840 | style=ttk.Style(self.root)
transparent_image = tk.PhotoImage(width=1, height=1, data='R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7')
style.configure('TSizegrip', background=self.bgcolor, borderwidth=0, relief="flat")#, troughcolor=self.time_background, elementborderwidth=0)
how do... | bff016e2f6688d5da8c41eb1764b852d | {
"intermediate": 0.49585288763046265,
"beginner": 0.1994345337152481,
"expert": 0.30471253395080566
} |
38,841 | Why is the values of parentName is coming in brakets and single quotes like this in notification- ('parentName').
query for parentName:
parentName = session.query(Model.models.Application.M_PatientsDtl.MPD_Name).filter_by(
MPD_MobNoCountryCode=Mobile, MPD_User=1, MPD_IsActive=1, MPD_IsDeleted=0).first()
send_notif f... | 28f390269d7137ead03e9a3f70671cbf | {
"intermediate": 0.3082304298877716,
"beginner": 0.4082106947898865,
"expert": 0.2835589051246643
} |
38,842 | Fix this
( | a9d9aff7adaec15e9925ff81dfb6d87c | {
"intermediate": 0.3008558452129364,
"beginner": 0.4414755702018738,
"expert": 0.2576686441898346
} |
38,843 | Привет! Вот мой код бота:
import asyncio
from io import BytesIO
from PIL import Image, ImageFilter
import aiohttp
import time
from aiogram import Bot, Dispatcher, types, executor
from aiogram.contrib.fsm_storage.memory import MemoryStorage
from aiogram.dispatcher import FSMContext
from aiogram.dispatcher.filters.state ... | 415c44404d3ebbb1c9b6154b657bcd86 | {
"intermediate": 0.2502712309360504,
"beginner": 0.5416370630264282,
"expert": 0.20809166133403778
} |
38,844 | Write a python function that would overlay a png picture on top of another png picture, automatically adjusting the size of the first one to the size of the another. | 3b3d24b356ad64ec9f841fede0d017b8 | {
"intermediate": 0.25831276178359985,
"beginner": 0.13942240178585052,
"expert": 0.6022648215293884
} |
38,845 | Find second largest number in a python for loop from the input by the user, simplest way | a8efc41daea483987a20769855fb16ed | {
"intermediate": 0.2200261354446411,
"beginner": 0.43252670764923096,
"expert": 0.34744712710380554
} |
38,846 | Hi | 9b6131b3921844ee81247df6088c6196 | {
"intermediate": 0.33010533452033997,
"beginner": 0.26984941959381104,
"expert": 0.400045245885849
} |
38,847 | I have 1 hour slideshow video. Write Python script which save any image in video without duplicates | 0f4ca00dfd960951f744c80b03ecb662 | {
"intermediate": 0.4158690571784973,
"beginner": 0.2856391966342926,
"expert": 0.2984917461872101
} |
38,848 | Please find error in Python code:
import cv2
import os
import numpy as np
from tqdm import tqdm
from skimage.metrics import structural_similarity as ssim
from concurrent.futures import ThreadPoolExecutor
def crop_black_bars(image):
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
# Apply a binary threshold to co... | ac137a7557574508a902e73eb703d941 | {
"intermediate": 0.4860481917858124,
"beginner": 0.3400898575782776,
"expert": 0.17386192083358765
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.