What's your favorite productivity hack outside of coding? Community Center by Dani … creating the next big thing. All I needed was 20 minutes of people watching to go back to my laptop with… Re: Improve HAVING BY performance Programming Databases by Biiim … it just isn't a problem that it takes 5 minutes to run. Also note that `LEFT JOIN (SELECT * FROM tbl… Re: Improve HAVING BY performance Programming Databases by Biiim … from a HDD to SSD cut queries down from 4 minutes to 40/50 seconds, that's about 130mb/s to… Re: Improve HAVING BY performance Programming Databases by Biiim … rows of 6 columns every week in less than 10 minutes and that is slow as it is LOAD FILE from… Re: ASUS Laptops - my experience Hardware and Software by Reverend Jim … was told the average wait time was one minute. Fifteen minutes later I was told there were eight calls ahead of… Re: DaniWeb Auto Answer A.I. feature Community Center Meta DaniWeb by toneewa It indeed seems to be working. The interface is all done in the browser, on your localhost, 127.0.0.1:43905/?__theme=dark, and I stripped it down to just the message box. Just have to gather more data, and it seems good. Took ~50 minutes to get installed. The dataset can be a simple text file with a space between each topic thread. Re: DaniWeb Auto Answer A.I. feature Community Center Meta DaniWeb by toneewa … DaniWeb in full. Estimated time: 3 days 3 hours 17 minutes. Expecting a maximum size of 18.144 GB, we can… Re: Things I hate about TV shows Community Center Geeks' Lounge by pritaeas > is there ever going to be a second season for Squid Game Yes, already announced, available soon. Re: Things I hate about TV shows Community Center Geeks' Lounge by Dani That's my point, though. Gone are the days when a show would break for a summer and the next season would start up again in the fall. Re: Things I hate about TV shows Community Center Geeks' Lounge by Reverend Jim >Gone are the days That's pretty much the case for everything. I remember when TV sucked all through summer vacation and I couldn't wait for the end of September for the new seasons to start. Of course it was bittersweet because September also meant back to school. I'll mention a few more things that may have been mentioned before but I … Re: Things I hate about TV shows Community Center Geeks' Lounge by KomalBhatt You know, there are few things more frustrating than getting interested in a TV show only to find it falling short of expectations. From the overly predictable plotlines to the underdeveloped characters, there's a huge list. But what really get irritated by is when the dialogue feels forced, like the writers are trying too hard to be clever or … Re: What's your favorite productivity hack outside of coding? Community Center by jacobss One of my favorite productivity hacks outside of coding is the Pomodoro Technique. Re: What's your favorite productivity hack outside of coding? Community Center by Reverend Jim Odd that something so basic and obvious needs to be named. Of course, "Pomodoro Technique" is a lot shorter than "go hide in the server room so my boss won't keep interrupting me so I can get some work done" technique. At least that's what I used to call it. Re: What's your favorite productivity hack outside of coding? Community Center by Dani I don’t think there’s a better answer than that. Productivity hack when not coding are none other than breaks from coding. It’s so simple :) Re: What's your favorite productivity hack outside of coding? Community Center by Dani So basically my Palo Alto technique :) Re: What's your favorite productivity hack outside of coding? Community Center by Reverend Jim >So basically my Palo Alto technique :) A lot easier and more pleasant in mid-winter in Palo Alto than here in Winnipeg. ChatGPT ‘Lobotomized’? Performance Crash Sees Users Leaving in Droves Community Center by Johannes C. … task, while I run into my message cap after 30 minutes, **determines that was a lie.** Many users are [experiencing the… Claude 3 Opus Vs. Google Gemini Vs. GPT-4 for Zero-Shot Text Classification Programming Computer Science by usmanmalik57 … ``` The above output shows that the Claude Opus took 3 minutes and 8 seconds to process 100 tweets and achieved an… Re: Postfix authentication problem Hardware and Software Linux and Unix by chickenbirds … then deliver the mail. I got it working after 45 minutes and the blogpost explained every little detail in the config… Re: What more i can add to this website? Programming Web Development by rproffitt Just a tip. Take a few minutes to complete your DANIWEB profile to add your site and maybe get your tagline working. Welcome to DANIWEB. Re: Do you participate in any other communities? Community Center Geeks' Lounge by Dani … busy with his other businesses that he spent maybe 5 minutes on it over the past 5 years, so he lost… Re: Things I hate about TV shows Community Center Geeks' Lounge by Dani Currently the thing I hate most about TV shows is how much time elapses between seasons. I feel like I've been waiting for season 2 of Severance on AppleTV for *forever*! (It's been over 2 years already since season 1 debuted.) Speaking of that, is there ever going to be a second season for Squid Game? I can't imagine that Netflix wouldn’t invest … Re: Things I hate about TV shows Community Center Geeks' Lounge by Reverend Jim Fer sher. You pretty much have to watch the previous season again before you start the next one. I'm still waiting for season 2 of The Old Man (Jeff Bridges, John Lithgow). At my age sometimes I lose the thread if two weeks goes by between episodes. Sometimes I'll wait until the end of a season before I watch any of it. I especially hate it when a … Re: 88 Business-Growing Strategies Digital Media Digital Marketing by henrymorgan9522 A growth strategy is an organization's plan for overcoming current and future challenges to realize its goals for expansion. Examples of growth strategy goals include increasing market share and revenue, acquiring assets, and improving the organization's products or services. can someone help me with this python code to add cell phone minutes Programming Software Development by sob_andizzle … the mnutes between 200 and 800 how many minutes are allowed #if it is over 800 or…#then it displays a monthly use report minutes allowed: minutes used were: minutes over were: #then the total is… over your minutes by 50 ---------------MONTHLY USE REPORT------------------ Minutes allowed were 350 Minutes used were 400 Minutes over were… Convert minutes to hours and minutes Programming Software Development by visom … homework problem is to convert minutes into hours AND minutes ex. 124 minutes = 2 hour(s) and…(int); int remainder; int main () { int minutes; int convert_to_hours; int remainder; cout <<… endl; return 0; } int Convert(int minutes) { int convert_to_hours; convert_to_hours = minutes / 60; return convert_to_hours; } int Convert(int… Re: can someone help me with this python code to add cell phone minutes Programming Software Development by sob_andizzle …, mins) def mins(): mins = input("how many minutes are allowed) if mins <200: print "Please… if mins >800: print "Please enter minutes between 200 and 800" return mins def used…(): used = input("how many minutes were used") if used < 0: print … Re: can someone help me with this python code to add cell phone minutes Programming Software Development by sob_andizzle … mins) def mins(): mins = input("how many minutes are allowed) if mins <200: print "Please…if mins >800: print "Please enter minutes between 200 and 800" return mins def …used(): used = input("how many minutes were used") if used < 0: print… C++: Converting seconds to days/hours/minutes/seconds Programming Software Development by antoinette.boulevard … { long InSeconds, InMinutes, InHours; int seconds; int minutes; int hours; int days; cout << &… InSeconds / SECONDS_IN_MINUTE ; // compute minutes minutes = InMinutes % MINUTES_IN_HOUR ; // throw away minutes used in previous statement and convert … Re: C++: Converting seconds to days/hours/minutes/seconds Programming Software Development by pasx …; seconds " ; cout << t.tm_min << " minutes " ; cout << t.tm_hour << " hours…