Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
5answers
3k views

Open Source Address Scrubber?

I have set of names and addresses that have been entered into and excel spreadsheet, but the problem is that the many people that entered the addresses entered them in many different non-standard ...
4
votes
6answers
591 views

strategies for finding duplicate mailing addresses

I'm trying to come up with a method of finding duplicate addresses, based on a similarity score. Consider these duplicate addresses: addr_1 = '# 3 FAIRMONT LINK SOUTH' addr_2 = '3 FAIRMONT LINK S' ...
3
votes
1answer
201 views

Most complete source of international address formats?

I'm looking for a source that describes the standard address format for most of the world's countries. I've found sources for the more prominent Western and Asian countries, but these sources tend to ...
2
votes
1answer
242 views

Splitting comma separated email addresses in a string with commas in quotes in PHP

Say I have the following email addresses comma separated in a string: $addrList = 'Kevin.Brine@pppg.com, Robert.Thomas@pppg.com, "Guice, Doug" <Doug.Guice@pppg.com>'; I need the following ...
1
vote
4answers
96 views

Do memory addresses change and how can they be dynamically found?

I'm writing a simple program that accesses the memory of another process. I have been using a memory editor to find the addresses of the variables I want my program to retrieve and use with the ...
1
vote
5answers
126 views

Passing addresses to functions in C

I'm new to C and I have a function that calculates a few variables. But for now let's simplify things. What I want is to have a function that "returns" multiple variables. Though as I understand it, ...
1
vote
2answers
167 views

Adding integers with pointers in C

Say i have int *a, int *b, int *c and say a and b already point to some integers. I want to add the integers down a and b and save them to wherever c is pointing to This: *c = *a + *b; does not ...
1
vote
4answers
213 views

C pointers and addresses

I always thought that *&p = p = &*p in C. I tried this code: #include <stdio.h> #include <stdlib.h> char a[] = "programming"; char *ap = &a[4]; int main(void) { ...
1
vote
3answers
481 views

jquery addresses and live method

//deep linking $.fn.ajaxAnim = function() { $(this).animW(); $(this).html('<div class="load-prog">loading...</div>'); } $("document").ready(function(){ contM = ...
0
votes
2answers
20 views

Prestashop - Multiple Delivery Addresses

Does anyone know if Prestashop is capable of having delivery options for each product in an order, similar to how Magento deals with this? Any Modules available or experience on building this feature ...
0
votes
2answers
57 views

What is the best, easiest and free location database for MySQL?

My users need to be able to put in a shipping and billing address. However, the only field I want typed is the street address. There's no way I could input every city, state, territory, country and ...
0
votes
3answers
42 views

Relative and Absolute Addresses

My question regards relative and absolute addresses. I have over the years built a framework, which all my php websites are built on. Every single page is loaded in the top level "index.php" file. ...
0
votes
1answer
47 views

php storing ip address in mysql database

this is more a question about design application. I was wondering if anyone might explain to me how could i store in a database ip addresses dns they belong and other info's about the computer like if ...
0
votes
0answers
28 views

Visual C++ 2010 Express

Recently I've come accros 2 cases where the debugger is displaying the wrong value for a variable. localInt = 0; globalInt = 0; localInt = 12; globalInt += localInt; In the code above, the ...
0
votes
2answers
366 views

jquery ajax using 'addresses' to update url for bookmarking

$("document").ready(function(){ contM = $('#main-content'); contS = $('#second-content'); $(contM).hide(); $(contS).hide(); function loadURL(url) { console.log("loadURL: " ...
0
votes
2answers
2k views

PHP Mail $to multiple recipients from database table

<?php include("admin/db.php"); $recipients = "SELECT * FROM recipients ORDER BY id DESC"; $email_list = $db->query($recipients); foreach($email_list as $row) { echo $row['email'].","; } ...
0
votes
1answer
867 views

shell script to reset Evolution passwords

I posted the following question to the Ubuntu forum and no success yet. I realize this is less of a programming issue and more of an Evolution/Ubuntu issue, but given that I want to automate the ...