Re: Looking for AI app developers Programming Mobile Development by Eckert Hi! That sounds like an amazing project you're working on. Making it easier to run AI models directly on phones is a big step forward, and I’d definitely be interested in testing it out. I’m planning to explore mobile AI apps, especially in the video editing and content creation space. Even if the models run a bit slower, having everything work … Re: Upgrade to Fiber internet Hardware and Software Networking by Dani … argument to convince my husband to spend an additional $200/month on AT&T Fiber Internet with 5Gbps download / 5… less than we were expecting. We're paying only $100/month more than we were. Considering switching down to 2 Gbps… Which SEO tool is best? Digital Media Digital Marketing by MasoodDidThat … past year, and my subscription is about to expire next month. I'm considering trying the paid version of Ahrefs this… Re: Delete unused MySQL indexes Programming Databases by Reverend Jim …to mirror the EMS (AGC/SCADA) real time data. One month of data was roughly 300 meg and it was critical… months, I created a new set of tables for each month, and views that combined the previous, current, and next …. Inserts were only ever done on the current month. Recovering any particular month that got corrupted was a matter of minutes rather… Re: Optimizing working with big data Programming Software Development by Salem My first thoughts would be 1. What is large? Are we in the TB range or mere handfuls of GB? 2. How often do you need to do this? Is it once a day, once a month, or just once. Re: Optimizing working with big data Programming Software Development by Dani … to do this? Is it once a day, once a month, or just once. For me, the most important is real… Re: Delete unused MySQL indexes Programming Databases by Dani I can see your rationale, but I don't necessarily agree with a separate table in the database for every month. There are much more elegant ways of handling that use case these days, especially in MySQL. You didn't specify how long ago this was. Either way, still hoping a MySQL expert can come along and answer my question here. Re: Delete unused MySQL indexes Programming Databases by toneewa … a period of time to collect data, e.g., 1 month, then query the unused indexes again: SELECT * FROM sys.schema_unused_indexes… Re: Error when sign in with Google Community Center Meta DaniWeb by Dani It should be fixed now. Unfortunately it's been broken for quite awhile and I didn't realize it. It broke on the 5th of the month when I went through all the code and mass-added a wrapper that ran some sanitization stuff. So sorry about that! Either way, it's fixed now. Re: I’m trying to set up remote access using DDNS (No-IP) on my home net Hardware and Software Networking by Dani … also didn’t block, but I paid an extra $10/month for a static IP back then as well. It might… Re: Upgrade to Fiber internet Hardware and Software Networking by Dani Soooo ... looks like we're getting AT&T Fiber installed this Saturday. To make a long story short, very shortly after I posted this topic, we began repeatedly having issues with Xfinity service going in and out. Every time we went to report an outage, Xfinity either completely denied that there was an outage and wouldn't let us report it (… Re: Upgrade to Fiber internet Hardware and Software Networking by Reverend Jim Had a similar experience with Bell. They wanted me to pay for them to fix a problem with major static on my phone line. Instead I switched to Shaw for internet, TV and phone and have had great service with them ever since. I've had Bell come to my door a few times to get me to switch back and I told them every time no because their customer service… Re: Upgrade to Fiber internet Hardware and Software Networking by Dani First post from my new (~2 minutes old) 5Gbps fiber connection. :) Re: Looking for AI app developers Programming Mobile Development by Pelorus_1 Look for top-tier freelancers on platforms such as Upwork or Toptal. Think about AI development companies that specialize in machine learning, natural language processing, and deep learning. Re: Looking for AI app developers Programming Mobile Development by KamalDeepPareek Hey Tzanko, That sounds like a great initiative—bringing LLMs and Whisper to mobile devices through an open-source SDK is definitely a step in the right direction, especially with how much edge AI is gaining traction. I work with a team of mobile app developers and we're currently exploring ideas around on-device AI, especially for privacy-… Re: Looking for AI app developers Programming Mobile Development by jonathannweyer That sounds like a great project, running models locally on mobile is definitely gaining interest. I’m not building anything right now, but I’ve been exploring ideas around offline voice commands and simple summarization features, so something like this could definitely be useful. Curious, are you targeting both iOS and Android from the start? … Re: Which SEO tool is best? Digital Media Digital Marketing by Dani I tried the paid version of Ahrefs for a time, and, at least for my use case, it wasn't worth the money and I downgraded back to the free version. I've never used Semrush. Month class help Programming Software Development by stain3d …constructor. Month object1 = new Month(); System.out.println("Month " + object1.getMonthNumber() + " = " + object1); Month object2 = new Month(2…mName; Scanner keyboard = new Scanner(System.in); Month object5 = new Month("January"); System.out.println("Enter … Re: Month class help Programming Software Development by moutanna Month object1 = new Month(); System.out.println("Month " + object1.getMonthNumber() + " = " + object1); Month object2 = new Month…intMonth = Integer.parseInt(strMonth); object5 = new Month(intMonth); System.out.println(object5.getMonthName()); } catch… Re: Month class help Programming Software Development by javaAddict Line 25: [ICODE]System.out.println(object5.mName());[/ICODE], I doubt that the Month class has a method mName() . What errors do you get and what are you trying to do? Re: Month class help Programming Software Development by stain3d …]System.out.println(object5.mName());[/ICODE], I doubt that the Month class has a method mName() . What errors do you get… user inputs either a number, or the month. And it will show both the month and the number... I tried to take… Month temperatures program/Help Programming Software Development by rixxir …txt file for indeks in range(count): month = fm.readline() month = month.strip() months += [month] print(months) #temperatures are read …-8, -10]] Data has been received Please enter a month : January The most occurring temprature in January is : … [COLOR=Red] Please enter a month : The most occuring temprature is : [/COLOR] Month() problem Programming Databases by konczuras … customer data: Year No., Month No., CustomerName, CustomerID... The problem is with the Month No. (MonthNo is the…, Tools WHERE Customers.CustomerID = Tools.CustomerID AND MONTH(Tools.DeployDate) = MONTH(GETDATE()))[/code] But it doesn't work perfectly.… When it comes to the next month, it inserts zeros. How could I work this… Re: Month function help Programming Software Development by j_808 … As Integer Dim thisMonth As Integer = DateTime.Now.Month MaxRows = KiwicyclesDataSet.Repair.Rows.Count For increment =…= KiwicyclesDataSet.Repair.Rows(increment).Item("NoOfLabourHours") * (30) If Month(DateDue) = thisMonth Then labourprofit = labourprofit + ((overheads) / (labourhours)… Re: Month temperatures program/Help Programming Software Development by vegaseat … data. Now let the user input a month with the correct spelling. Index the month using: [B]mon_ix = months.index(mon_str)[/B… Month function help Programming Software Development by j_808 … = DataSet.Repair.Rows(2).Item("DateCollected") thisMonth = Month(Now) For........ If Month(DateCollected) = thisMonth Then partsprofit = (partswholesalerpricetotal) / (partstotalcost) * … whether the date collected is in the same month as the current month . for example say the date collected is … Re: Month function help Programming Software Development by Oxiegen …Repair is or does. Dim currentMonth As Integer = DateTime.Now.Month Dim parseMonth As Integer = 0 Dim parseDate As DateTime = …;DateCollected"), parseDate) Then ' Retrieve the month part of the date parseMonth = parseDate.Month ' Compare the two months If currentMonth.Equals… Re: Month function help Programming Software Development by Oxiegen … Dim labourprofit As Integer Dim currentMonth As Integer = DateTime.Now.Month Dim parseMonth As Integer = 0 Dim DateDue As DateTime = …;[Date Due]"), DateDue) Then ' Retrieve the month part of the date parseMonth = DateDue.Month labourhours = row.Item("NoOfLabourHours") * (… Re: Month function help Programming Software Development by j_808 … Dim labourprofit As Integer Dim currentMonth As Integer = DateTime.Now.Month Dim parseMonth As Integer = 0 Dim DateDue As DateTime = …;[Date Due]"), DateDue) Then ' Retrieve the month part of the date parseMonth = DateDue.Month labourhours = row.Item("NoOfLabourHours") * (… $month(m, $date) converted to $month(F, $date)?? Programming Web Development by fuston05 i am retrieving a $_GET variable date: $month= date(m, $date), is there a way to retrieve this and make it convert to its equivalent $month= date(F, $date)?? i need the variable info but i need to get the full textural representation of the month not just the number. And im hoping to do this w/o having to send an additional variable.