Ā« first day (187 days earlier)      last day (3 days later) Ā» 
00:00 - 16:0016:00 - 00:00

16:05
heloo
now a days which coding language is most popular...
@Suraj KS kulal That seems like something easily searchable online, no? Of course, different sources may have different data and interpretations, so the question is purely academic really.
Specifically the Technology question set.
@Thom A perfect bro thank youu...
One day, people will stop calling me "bro". >_<
16:18
@aynber: Should probably have said "removed *from* the room *along with* your messages"... brain made corrections after the fingers hit enter
That's what I was going to say, if it was all copy/pasta. If not no worries, you may proceed along your daily travels.
Hi everybody. I wanted to ask on the forum but I got so trashed because my questions were bad as I'm a newbie I wanted to see there : does anybody use Pillow (Python) and do you know how to do gradients of color (for a BK of an icon proj)
@zulu27 As an FYI, Stack Overflow isn't a forum; if you treat it like one you are likely to have a poor experience.
@zulu27
0
Q: Pillow: How to gradient fill drawn shapes?

OkymI researched quite a bit already, and all that I found was how to apply gradients to text generated with Pillow. However, I wanted to know how can I apply a gradient instead of a regular single color fill to a drawn shape (specifically a polygon). image = Image.new('RGBA', (50, 50)) draw = ImageD...

Seems relevant.
As for your questions, if you have a qusetion about Pillow then you should just ask the question; Don't ask to ask, just ask.
Thanks guys
16:20
@zulu27 Just FYI - I searched "how to do gradients of a color in pillow for python" and that was the second google link. After the github instructions.
@Thom A Don't call me "bro", pal. Don't call me "pal", guy. Don't call me "guy", friend. Don't call me "friend", fella. Don't call me...
Youve not actually asked a question about Python on the main site, that I can see, @zulu27 , the only question you have is about how to format code on the site, which wouldn't be well received there; we have an entirely separate place for asking questions about Stack Overflow: Meta Stack Overflow.
Ok this made me LOL at work - I wanted to know where that came from, and the AI response to the google search was:
> I understand. I'll maintain a professional tone and won't use informal terms of address.
hello every one
can any say which stack is best java or python
@user31908930 Can you provide a clear and unambiguous definition of "best" in this case?
16:25
@user31908930 That's like saying I want to drive a nail, which hammer is best?
Is it a framing nail? A trim nail? A brad? A tack? A roofing nail? etc. The "best" tool depends on the task. Maybe what you actually want to do is saw a board.
@Suraj KS kulal: now a days which coding language is most popular...
It depends on who you ask, and the purpose/needs of the project. This is not really a quantifiable question. You should ask, "I am writing a <describe your task/project>, and wonder what language you feel would be best?"
@Kevin Flynn It could even be a machine screw, in which case I'd love to watch the hammer selection and testing process.
@mxrxkx The juxtaposition of your two messages here is somewhat poetic :)
@David I'm unsure whether I was going for snark or irony??
@mxrxkx A little of Column A, a little of Column B. As a chaotic neutral observer I approve.
16:34
hi
I am making sticker maker app in kotlin when I add my sticker in pack and try to export that sticker in whatsapp pack ..whatsapp is not exporting my sticker pack? does anyone know why?
Hello, I'm Arive Willis.
I’m trying to find the team members who worked with me.
@Darryan Solis I don't see how this chatroom can help with that? Can you clarify?
16:50
@Darryan Solis Considering these are you first messages in chat, and you only signed up earlier today, I suspect you may have the wrong place.
HI,I am Rohith I am New to this community.I joined today .
17:08
Hello! I'm Isabelle, a new DMD-clinical researcher trying to use R for stats.
HI every one,
I'm Suresh - I am Delivery Lead(recruiting Domain) for US and India.
Thanks for letting me know.( just to verify our candidates before submitting to the clients) im not here for actively looking for candidates.
Stack Overflow probably also isn't the right place tovalidate a person is who they say they are either, admittedly, @Recruiter .
Thanks for letting meknow.
Yes, I am wondering....
bhai please solve my problem Create Problem Error šŸ‘‰ TypeError: Cannot read properties of undefined (reading 'map')
at createProblem (C:\Users\HP\Desktop\LeetCode\src\controllers\userProblem.js:23:41)
17:17
@Shah Saifi Given the information provided, the solution is to not try to call .map() (or anything else for that matter) on an undefined value.
these my function what is mistake const createProblem=async(req,res)=>{
const {title,description, difficulty,tags,visibleTestCases,hiddenTestCase,
startCode,referenceSolution,problemCreator
}=req.body;

try{
for(const {language, compeletCode} of referenceSolution){

const languageId=getLanguageById(language);
const submissions=visibleTestCases.map((testcase)=>({
source_code: compeletCode,
language_id: languageId,
stdin: testcase.input,
expected_output: testcase.output
}))

const submitResult=await submitBatch(submissions);
@Shah Saifi In that code you're calling .map() in two places. The error tells you the line number so you can identify which one it's referring to.
i am not understand
@Shah Saifi The error is telling you that you're calling .map() on an undefined value. You're calling .map() in two places. The error indicates that it occurs on line 23. Which call to .map() is that? Whichever one it is, you're calling it on an undefined value. That's the problem.
There may be a further root cause of that problem, determining why a particular value is undefined. But the error is happening because that value is undefined.
Hello
I'm finding senior developer to hire
in terms of blockchain
17:33
hello
yeah
you virat
Hey is there someone from .Net tech
@ROHIT YADAV Is this really the question you're looking to ask? Or is there a problem you're trying to solve?
@Brian Sanders This isn't the place for that. This is for programming help, not recruiting or hiring
Hi everyone! just wondering if anyone out there have used playwrightOptions in Karate Test Framework
17:45
Hey everyone, I want to connect with a Flutter developer. I need some help regarding my project.
@Brian Sanders This isn't a place to attempt to recruit someone, if that is your reason for being here.
@HƩctor Eduardo Ɓvila Monroy: Hola quien me ayuda a mejorar mi codigo en c y asi quiero saber como pasar de psudocodigo a codigo cmo tal
Please use English; Stack Overflow requires content to be in English. If English isn't a language you can communicate in, there are alternative sites available in the community that may be in a language you are more fluent in.
Hi, can someone help me improve my C code? I want to learn how to convert pseudocode into actual code.
@HƩctor Eduardo Ɓvila Monroy I can't specifically help with C, but be aware that there's really no direct "conversion" from pseudo-code to any specific programming language. Unless you're referring to some specific definition that your pseudo-code follows, all it really does is generically describe the logic of the system. You'd then implement that logic in your desired language.
@HƩctor Eduardo Ɓvila Monroy Is there a specific problem you've encountered in a specific attempt?
17:55
hello
@edwin gonzalez: hola chicos y chicas soy de Colombia y necesito de su ayuda para entender las Apis
Stack Overflow requires content to be in English. If English isn't a language you can communicate in, there are alternative sites available in the community that may be in a language you are more fluent in.
Thoughts on the use of cursor for edting code?
@edwin gonzalez: @David osea que segun tu no puedo aca
I didn't say that. You can potentially get help here, if you can use English and have a reasonable question or problem we can help solve.
→ 1 message moved to Lobby Trashcan
→ 1 message moved to Lobby Trashcan
18:14
I am from Bangladesh.A Laravel developer.
Hey everyone am facing issue in the firebase auth related issue like this one app-index.tsx:25 āŒ Phone Auth Error: FirebaseError: Firebase: Error (auth/invalid-app-credential).


if anyone have any idea?
18:49
And Google brought up a few other links both on Stack Overflow and other sites, just by searching for "auth/invalid-app-credential"
19:03
@acarlson5mhlz: ä½ åŠ é‚£é‡Œļ¼Ÿ
Please use English; Stack Overflow requires content to be in English. If English isn't a language you can communicate in, there are alternative sites available in the community that may be in a language you are more fluent in.
→ 2 messages moved to Lobby Trashcan
hii everyone how can i convert this table format to a code for my jsx file please help me been seaching the web the whole day.
@Kyle Matthew Nicor Gonna need a bit more info than that
19:43
lsp example
@Alex Tkachev
1280
Q: What is an example of the Liskov Substitution Principle?

NotMyselfI have heard that the Liskov Substitution Principle (LSP) is a fundamental principle of object oriented design. What is it and what are some examples of its use?

19:58
Hi, I’m new here. I just joined the community because I’m looking for a solution. I’m a student, and even though programming isn’t my main field, I practice it in my free time. I challenged myself to create a custom application with some automation in it.

The problem I’m facing is that I can’t make my app the default one in order to capture the content of USSD responses. I have to admit that I used AI a lot during this project. I searched everywhere and I’m exhausted, and the automation I need depends on processing the USSD response content.
@zulu27 The only other question I can see is one that went to the Staging Ground; do you mean that one?
@Aisha saba: digraph StudyFlowChart_HighRes { rankdir=TB; graph [dpi=300]; node [shape=box, style="filled,rounded", fontname="Times-Roman"]; Screened [label="Screened Patients\n(N=168) [if applicable]", f
Dumping code/errors with no context won't get much help. Take the time to introduce your problem before you paste large blocks of code, or errors so that users understand what you're asking about. Can you elaborate on how your code doesn't work or what you're doing to get the error you received? What were you expecting to happen, and what actually happened? For help, review How to Ask.
→ 2 messages moved to Lobby Trashcan
20:47
Hello, I'm a horrible coder and am trying to learn brainfuck, does anyone know a place to do that? (also, who here loves epic the musical?)
@Cat.Code.83 If you are a horrible coder, the last thing I would say to do is learn that language. Learn an actual language first before you mess around with the artificial funky languages.
21:09
Ou
But, like, it would be funny tho
21:26
Math is hard im in phisicle geography
I'm driving myself nuts over the name "anaplan". I swear there is some meal replacement formula with a similar name but I can't for the life of me find it. Any ideas?
→ 1 message moved to Lobby Trashcan
I also don't understand people frequently just posting matplotlib code with no context. This evening is very mentally taxing :/
@roganjosh I refactored my python code using Claude and now it doesn't run.
Now you just need to get through "..." and then there's profit!
@Kevin Flynn Bingo! Have 5 quatloos. Thank you!
I. HAVE. QUATLOOS.
@roganjosh I figured my telling you I used claude to refactor would get you gnashing your teeth. Huh.
I am, however, following the Comey indictment news with great interest.
It might surprise you that I think highly enough of you to know that you know that was a mistake to begin with :P
If you have a short enough snippet of the original code I can give pointers on a refactoring. Im not cleaning up after Claude, though
21:44
@roganjosh I didn't do that, but it does need to be refactored. Right now it's a mess of original programmer plus my changes all in one 678 line main.py file.
As for American politics, I probably follow that more than the UK but it'd be inappropriate for me to comment. I just tune in for each episode.
I feel proud that I got it from 2.7 to 3.14 and functioning :p
That's no easy feat. 600 lines isn't necessarily a bad thing... I have many modules over 1k lines. It's just how they're broken down. I was quite proud of my progress today and started thinking about how I could integrate into odoo databases. Their code base is just massive.
Turns out that "i just need to find the table where they list inventory at each storage locaton" was a silly venture all along :/
Heh. Rats nest?
To call it "sprawling" would be the understatement of the year. I'll find it, eventually. Just not today :P
21:53
@roganjosh I'll eventually figure out how to refactor and break it down, rn just want to get it working the way I want it to.
room topic changed to Stack Overflow Lobby: The chat room for all users on Stack Overflow. Say hi, introduce yourself, and get to know your fellow community members. This room has no set topic - short coding questions are fine, but please introduce your problem; don't simply post code or an error without explaining your problem (code dumps are likely to be removed). Chat is a casual space where everyone should expect kindness, cooperatio... (no tags)
Adjusted the guidelines to use proper formatting. Looks like links that weren't configured using markdown are not rendered as clickable.
My father in law (Former network engineer) got me a T-shirt that says "99 little bugs in the code, 99 little bugs, take one down, patch it on out, 117 little bugs in the code" :D
@Spevacus It's interesting that this change seemingly made me take a pledge to the room rules etc. which I hadn't seen until now
Seems a bit odd to have to agree to them and "start chatting" but at least I have my bool in the the DB now that I have indeed agreed to the terms :)
22:10
I agreed under protest. :p
@Kevin Flynn Heh, very apt :) A good ol' game of Whack-a-Mole. Now I'm back at my laptop, I started clearing tabs and stumbled over where I got to with odoo if you're interested in what python modules can become - behold. That's where I abandoned my quest for this evening and took a break instead :)
Hello everyone!
22:26
Huh. Qualcomm is upsetting the Maker space. Changed TOS for Arduino.
Link?
22:44
@roganjosh Please sign here: [ ] true
:)
āœ…
My unfettered power... it wanes... Instead of a Dark Lord, you would have a queen, not dark but beautiful and terrible as the dawn! Tempestuous as the sea, and stronger than the foundations of the Earth! All shall love me and despair!
@roganjosh Oh, we despair all right...boy do we despair.
hi everyone. I am new here. I came over this beautiful website through a masters program in school where they teach us coding in R in Rstudio
I hope there is help to get here if I could ask for it? :) I am stuck and I would really appreciate it
thank you!:)
@Govand JCVD Don't ask to ask, just ask. Outline what problem you are having, what you have done to investigate/solve, any relevant errors and a small section of the relevant code.
If there is someone here that is knowledgeable in that area, great! :D
23:00
hahah true that. I will let people know my problem on R
I am doing a quantitative course with R coding and got some "labs" or exercises to do. the assignment is on this website: eh6127.svmiller.com/problem-sets/2/eh6127-ps2.pdf
if anyone knows how to do it let me know please :)
@Govand JCVD Yeah, we aren't going to do your homework for you.
@Spevacus - Just FYI, the chat just force logged me out, and then I had to agree to the CoC stuff again before it would let me in.
no I don't mean that people here is going to do my homework but I was asking for help if the way that I have answerd the questions are correct or not
@Govand JCVD that's telling you the answers tho
@Govand JCVD And in addition, there are no answers there. That's just the homework sheet.
just turn it in and if you aren't shore your right then talk to your teacher about not knowing the material.
23:14
And trust me, I've been there. My masters degree work was tough, but once you learn it, it's yours.
ye, you don't learn anything just by having good grades
you need to understand what you are learning
thank you all for your feedback. I have all the codes that I have run through Rstudio. The issue is that I don't know if they are correct. But thank you all again!
@Govand JCVD Well, if you're doing a masters degree that includes R, presumably it's statistics based. I would take one sample problem and do it manually, and see if your answer corresponds with the R programming answer. If they don't match, then you have an error somewhere.
@Kevin Flynn Odd... If it happens again, I'd report it on meta. As of now I think I'll just call it a weird one off
@Spevacus I was trying to reply, and it kept giving me the retry/cancel/edit, I refreshed and poof. I was no more. :D
I need to go for a run, but I'll ping again if it happens.
23:21
@Kevin Flynn I got a bit confused when the teacher says that we are not allowed to do any coding with R that includes _ for instance - because he knows that would be from AI such as chatgpt. The issue is that I haven't used Chatgpt. But I will see how I could solve it. Thank you guys
@Govand JCVD One thing - If you solve it manually, and then you can't get the code to produce that, then you can absolutely come back and say "Hey, I know problem #1 is supposed to be X and Y, but my code is giving Q and T. What's up with that?"
Which would be a GREAT question for the main site. You present a known answer, relevant code, and a good question that people can look and say "Well, you're banjaxing the sassafrass and cross referencing the molasses. Do this instead"
@Kevin Flynn sure that's a good idea to run it manually . thank you Kevin! :)
00:00 - 16:0016:00 - 00:00

Ā« first day (187 days earlier)      last day (3 days later) Ā»