-
Began Watching Advice Needed - All-in-One CRM with Invoice
Hey Everyone, I am looking for possibly a CRM that can be used for multiple items: 1. Invoicing 2. Credit Card Processing 3. Front End Website 4. Customer Area/Members Pages … -
Replied To a Post in Security issues with JavaScript
"scripting is disabled by default with IE 11" doesn't appear to be true. Link I used: https://www.google.com/search?q=scripting+is+disabled+by+default+with+IE+11 If they disable JavaScript (JS) then that's the user's choice to go without … -
Began Watching Security issues with JavaScript
I have been alerted o the fact that there are "security issues" with Javascript, but have no idea what the issues are. I have written a webpage in HTML which … -
Gave Reputation to AssertNull in Which Parts Of Php Not To Learn ?
> I find contributor's quarreling in the comments of what works and what not. As on Daniweb or anywhere else. > Obviously, one of them is right and the other … -
Replied To a Post in If I donate, will the people who answer get part of money?
Here's the most recent news that I could find. https://www.daniweb.com/community-center/daniweb-community-feedback/threads/506930/rewards-points IOW, it's a donation and is appreciated. -> To motivate folk to answer, the better the question the more motivation … -
Began Watching If I donate, will the people who answer get part of money?
I noticed there is donating feature and it tells that responses should be faster because responders will get message. But how will they be motivated to help me? Maybe they … -
Replied To a Post in Can you review my video on productivity when optimizing symfony application
I think you want to debate rather than discuss. I could be wrong about that. When I in my programming "mode" there are few apps up. You note a few … -
Replied To a Post in Can you review my video on productivity when optimizing symfony application
I'm not a Symfony user. But your video with what looks like a dozen plus open apps could be a problem. When I write in Visual Studio or Android Studio, … -
Began Watching Can you review my video on productivity when optimizing symfony application
I am strugling to find my productivity bottlenecks. I decided I could record a video, so that someone could see how I work and my thinking process. I know one … -
Replied To a Post in Simple calculator in my webpage
Now all you need to do is to put in the time or hire it out. Daniweb does have a post where you can post the job you are offering. -
Began Watching Simple calculator in my webpage
I want to include a simple calculator in my webpage but it has been hectic. I want to make it calculate bus fare, meaning it will contain; -**departure city** *(includes … -
Replied To a Post in Develop a C++ program that finds the minimum of 4 even numbers
Is this a program you are hiring to develop? If so, tell how much it pays and if there is more work in the future. My bet is it's your … -
Began Watching Develop a C++ program that finds the minimum of 4 even numbers
Develop a C++ program that finds the minimum of 4 even numbers entered by the user.? The program should display the following grades if the minimum value is found within … -
Gave Reputation to Reverend Jim in Looking for a particular type of functional programming examples
>They also say that once you learn how to think the C way you'll be able to program in every other single language because they are mostly the same. That … -
Gave Reputation to Traevel in Looking for a particular type of functional programming examples
Not a functional language, but Prolog is pretty cool. hanoi(1,FROM,TO,_) :- write('disk from '), write(FROM), write(' to '), write(TO), nl. hanoi(N,FROM,TO,X) :- N > 1, NMIN1 is N - 1, … -
Replied To a Post in Looking for a particular type of functional programming examples
I have to agree that the basics do help when you learn a new language. My first was Fortran which at the time there was no C language but there … -
Began Watching Looking for a particular type of functional programming examples
Hello people. I'm looking for FP examples that are very simple (very few lines, one-liners are even better) and that totally look like sorcery to a traditional imperative programmer. Can … -
Gave Reputation to Reverend Jim in What is CORS?
It's [this](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing). -
Gave Reputation to AssertNull in Great-circle distance using the divide and conquer algorythm
I reiterate my earlier posts. You should get everything working perfectly using the brute force method of comparing every point pair and finding the minimum. Then and only then, when … -
Replied To a Post in Caesar cipher in python
Sadly no. But my bet is there is some formula from a paper that this this code implements. Since I don't know the paper this was coded from I can't … -
Replied To a Post in Caesar cipher in python
key = -key; is the same as key = key * -1; IOW, [negation](http://stackoverflow.com/questions/15111466/fastest-way-to-negate-a-number). -
Began Watching Caesar cipher in python
I am doing a mini project on Caesar cipher, I found one program but can't understand the 29th line "key = -key". Please help me. # Caesar Cipher MAX_KEY_SIZE = … -
Replied To a Post in email(), but not receive mail
@gahhon, the edit button shows for some number of minutes after you post. -
Began Watching email(), but not receive mail
function email($reqNo){ //Database Configurations $host = "some.url"; $username = "someuser"; $pass = "xxxxxx"; $db = "mydatabase_db"; //Customer Configurations $cName = null; $cEmail = null; $DBConnect = @mysqli_connect($host, $username, $pass, $db) … -
Replied To a Post in Get Or Set User ID Android
That's only slightly clearer. To me this sounds like the old question posed at https://www.google.com/search?q=get+unique+android+device+identifier So that's been kicked around the yard for years now. You'll have to dive in … -
Replied To a Post in Recording Audio and then store it in Database
Toptal is another source when you need to hire out. But I agree with diafol on the issue of user interaction on the upload of a file. That sounds like … -
Replied To a Post in Great-circle distance using the divide and conquer algorythm
PS. Normally the divide and conquer noted at http://www.geeksforgeeks.org/closest-pair-of-points/ would have worked but in our GPS tracker the points were in Lat/Long rather than on a square grid. Since this … -
Replied To a Post in Great-circle distance using the divide and conquer algorythm
We did have a PHD try to optimize this routine and in every case it took longer than running through the set. Here's the thing. Since our company actually does … -
Replied To a Post in Great-circle distance using the divide and conquer algorythm
Who said my method is brute force? It's from a very real world hunk of code we use on GPS trackers. You may of heard of us. "Flowers By Irene." … -
Replied To a Post in Great-circle distance using the divide and conquer algorythm
Before we start, this isn't particular hard problem to solve once you get a few things out of the way. First, how to calculate distance. You need to know the … -
Began Watching Great-circle distance using the divide and conquer algorythm
Hi there, I am stuck with a problem, and don't know where to start. I need to calculate the closest pair of points on the Earth using a divide and … -
Replied To a Post in How to configure Visual Basic 6 + oracle 11g app on network for multiusers.
While I have done this the answer is as you noted PLUS you write an install DOCUMENT for others to get it working. That is, not everything is handled by … -
Began Watching How to configure Visual Basic 6 + oracle 11g app on network for multiusers.
My application is developed in visual basic 6 and oracle 11g express is its database. Now we need to make it available on our network for multiple users to use … -
Gave Reputation to Traevel in extract text from image
[Tesseract](https://github.com/tesseract-ocr/tesseract) 3.0+ should have Arabic support. It's in C but there are [wrappers](https://github.com/tesseract-ocr/tesseract/wiki/AddOns#tesseract-wrappers) for other languages, including two for .NET. If that proves too hard there is also a [JavaScript](https://github.com/naptha/tesseract.js) … -
Replied To a Post in Reading Arabic text from a JSP input comes as garbage
Can you make a [fiddle](https://jsfiddle.net/) for others to look at? https://jsfiddle.net/ -
Began Watching Reading Arabic text from a JSP input comes as garbage
Hello everyone, I have a simple JSP, with a text input and a submit button, as follow: <form accept-charset="UTF-8" method="get" action="<%=request.getContextPath()%>/someAction"> Enter Search: <input type="text" name="keyword"/><input type="submit" /> </form> And … -
Gave Reputation to Reverend Jim in Is there a way to detect garbage value?
You can't define what is a garbage value any more than you can write down all the wrong answers to a question. You decide what constitutes a correct value and … -
Replied To a Post in extract text from image
Tough job. https://sourceforge.net/directory/os:windows/?q=arabic+ocr is as close as I got and the top hit used a web service, PHP and more. IOW, you're into a rough ride. -
Began Watching extract text from image
hi everyone I need your help in extracting arabic text from image using vb.net. I only found program for extracting english language text but not found for arabic. I used … -
Gave Reputation to Traevel in Enabling JAVA
Same for [Android](https://play.google.com/store/apps/details?id=com.keepcalling.ui) But since it's a paid service, perhaps drop a message in their support box as well? They should be willing to help their customers I'd reckon. -
Replied To a Post in Enabling JAVA
I remember this being asked before somewhere. Since they have an app now for at least ios you should use the app and not the web app. -
Began Watching Enabling JAVA
Have an online app "keepCalling.com" that allows one to make calls to land lines over the internet. Has worked for years but now I find that new devices after java … -
Replied To a Post in Ubuntu alongside W10 (or alone) on a PC with 7th Generation processor
That URL. Are you sure about that? -
Replied To a Post in Ubuntu alongside W10 (or alone) on a PC with 7th Generation processor
OK, it's time to bring something onto the table. It's this. Not all distros run on all machines. I have this Intel NUC with some dual core Intel and a … -
Replied To a Post in Adding text inside output variable
Escaped? I'm going with no. About all that I see in heredoc mode is the need to escape the dollar sign where appropriate. So given PHP will sub in variables … -
Gave Reputation to Reverend Jim in Computing the brightness of a binary star.
>Use the value of PI = 3.14285714 To 8 decimal places, the value of PI is 3.14159265. What is the point of using 8 decimal places when your third place … -
Replied To a Post in Ubuntu alongside W10 (or alone) on a PC with 7th Generation processor
Time to read https://help.ubuntu.com/community/UEFI (again if you already did.) The Celeron looks to be 64 bit so be sure your selected Ubuntu is 64 for the reasons given in the … -
Began Watching Ubuntu alongside W10 (or alone) on a PC with 7th Generation processor
Hello. I am a newcomer to Daniweb and need some advice. I've been using Ubuntu regularily on several PCs and note books installing without problems until now. I have just … -
Replied To a Post in External microphone not working in widowds 10 pro
Back to the PC maker if you must have the onboard working. I continue to use those under 10 buck USB audio cards when I need to fix this. -
Began Watching External microphone not working in widowds 10 pro
I have a yellow exclamation mark next to High Definition Audio Device in Device Manager. It says I already have the best driver when I try to update the driver …
The End.