Shopify App Visibility Issues After Model Shift – What Am I Missing? Programming Web Development by Sagar_panchal … from a paid-only model to a free trial in order to encourage more installs. The app provides features like AI… lead quality scoring, quote-to-order conversion, BI dashboard, and customer chat – mainly focused on helping… Re: Web Services using ASP.NET Programming Web Development by WendyDolan hey I’m actually exploring something similar with ASP.NET and user validation, though i am on a newer version. but the core idea should be the same using a web service to handle login and registration logic sounds super practical. would also love to see an example if anyone has a simple one to share, especially using SQL Server with stored … Re: Web Services using ASP.NET Programming Web Development by natashasturrock Hey! You’re on the right path — I’ve done this in a few custom .NET development projects using ASP.NET Core with SQL Server. The idea of using a web service to handle login and registration is solid and keeps things clean. Here’s what usually works: Create a stored procedure in SQL Server that takes the email and password as parameters, … The Brain Behind the Business: What Workplace Happiness Programs Get Right Community Center by Happiness_1 … creativity. When people feel psychologically safe, their brains unlock higher-order thinking. That’s not soft—it’s strategic. The Neurochemistry… Is Microsoft Solutions Partner Badge Really Worth It? Programming Software Development by Mason_8 … performance and certification requirements that companies need to meet in order to qualify. They have categories like Infrastructure, Data & AI… Re: Error LNK1104 when debugging Programming Software Development by toneewa … Build > Clean Solution, and Rebuild. If you change the order of functions, and reuse old object files, you can run… Re: How to Effectively Promote a Cleaning Service Business in the USA Digital Media Digital Marketing by Raajokiaa_Rtiu … on the right path with GMB and social media. In order to upgrade, I would suggest layering several high-impact strategies… Re: Error LNK1104 when debugging Programming Software Development by toneewa … point to some .lib or .dll file(s), function call order, and syntax error. //Incorrect starter.h #include "Forms1.h… Re: Web Services using ASP.NET Programming Web Development by rajshah85412 Here is the detailed answer : You want to: Register new users to your website. Validate (log in) existing users using a web service. You will achieve this by: Creating a SQL database to store user information. Developing a web service in ASP.NET to handle registration and login. Connecting the web service to your database. … Re: Web Services using ASP.NET Programming Web Development by Dani > Visual Studio 2008? Yes, the OP specified they are using VS 2008. > Also 12 years late. Not only *not* against the rules, but also not discouraged on DaniWeb. That's the beauty of forums that live on for decades. Re: The Brain Behind the Business: What Workplace Happiness Programs Get Right Community Center by Reverend Jim Unfortunately too many companies (hello Amazon) follow the "lay more eggs" business model (really old Popeye cartoon reference). 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: Is Microsoft Solutions Partner Badge Really Worth It? Programming Software Development by rproffitt Wrong person to ask. But it was 2 decades ago and Microsoft's support was nothing better than "did you turn it off and on again?" This on a ERP deployment and frankly a failure in my view because it increased the amount of time we spent on the project. Not to mention downtime as we waited for fixes and server responses times in the … Re: Is Microsoft Solutions Partner Badge Really Worth It? Programming Software Development by Reverend Jim I have to say that I have had both terrible and outstanding results from MS support techs. It all depends on who you get. Re: Need Coding Help With A Project Programming Software Development by Enzo_3 … the average of numbers from a text file using higher-order functions like map() and reduce(). I was really stuck on… Re: Need Coding Help With A Project Programming Software Development by Reverend Jim … the directive >You should make use of two higher-order functions (i.e., map and reduce, or something else) to… Re: Buggy career talk :-P Programming by Salem … processors had the then awesome new feature of out of order memory operations. So very rarely, a write-read in the… Re: Justice Department Offers Grants Against Internet Predators Digital Media Digital Marketing by JackRyan248 … children for sexual purposes, such as prostitution, sex tourism, mail-order-bride trade and early marriage, stripping, performing in sexual venues… Re: Is linux your daily driver? Hardware and Software Linux and Unix by Reverend Jim … as the difference between a full and quick format. In order to be an effective communicator you have to be aware… Re: Cannot run exe from asp.net Programming Web Development by Salem … transform the PATH of any existing process. In increasing annoyance order, you may have to: 1. Start a new cmd window… Re: SEO vs AEO – Which is more important for the future of search? Digital Media Digital Marketing Search Engine Strategies by Dani … rely on almost all traffic being driven from search. In order to appear in Google's search results, we are required… Re: Is the Vision Pro worth it? Hardware and Software macOS by Dani I find it vertigo-inducing to be sitting!! I simply cannot handle when what I see simulates me moving (e.g. walking in a room), but my physical body is not moving. It's fine if things are moving around me, but if *I'm* meant to be walking, I need to be physically walking in order to not get sick. Re: Is linux your daily driver? Hardware and Software Linux and Unix by trcooke … replacing it even when it's still in perfect working order, apart from nothing works because Apple have decided it's… Re: Need Coding Help With A Project Programming Software Development by Reverend Jim >Why put them down? Please explain to me how anything I said was a put down. If someone told me their methof of counting cows was "count the number of legs and divide by four", I would point out that it would be simpler just to count the number of cows. If I said "That's stupid, just count the cows", then that would be a … Re: Need Coding Help With A Project Programming Software Development by Dani First of all, let me be blunt. I believe that Enzo only resurrected a 12 year old thread with the intent of spamming. You and I know that because, as moderators, we see in his profile his spamming attempts and his infractions. However, no one else coming across this thread sees that or knows that, so the other 2000 people reading this thread may … 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: ORDER BY Multiple Columns Programming Databases by nav33n Order by multiple columns work this way. For example,… is, [code=php] $query = "select * from table order by field2,field3,field4"; [/code] the result would be…. Then it sorts field3 maintaining the order of field2. Then maintaining the order of field2 and field3, it sorts …sort your records, it will sort in ascending order by default. Re: order by month Programming Databases by drjohn order by is ordering it in alphabetical order in your opening post. that's why you need a different approach, using the date data type and then getting at the year and month. (which are stored as numbers)