2013년 12월 3일 화요일

Market Research Professionals

Hello,

 

Exceptional opportunity to reach Marketing Research Industry prospects through our pre-packaged and custom built list.

 

We provide Licensed contacts across globe (North America, Europe, UK, Asia Pacific, Middle East and African) leads with Email address and Phone numbers along with SIC and ZIP codes.

 

Connect with all Professionals like: Information Technology, Telecom, Healthcare, Chemical, Pharmaceutical, Biotechnology, Insurance, Finance/Banking, Retail, Consulting, K-12, Electronics, Food and Beverage, Construction, Engineering, Computer Software/Hardware, Transportation, Education, HR, SMB/SME, Business Services, Oil and Gas, Energy and Utilities, Media, Manufacturing, Automotive, Marketing/Advertising etc..

 

Top Level Executives List comprised of all Titles:- CEOs, CFOs, CTOs, COOs, CIOs, VP's, Presidents, Chairman's, GMs, Mid level Managers, Sales and Marketing Managers, HR Managers, Finance Managers etc.

Please send us the detailed profile(Industry verticals/Geography/Titles and so on...) to send more information based on your target criteria.

 

Each record in the list comes with complete contact information such as contact name, title, company name, mailing address, phone, fax, email, employees, annual sales, SIC code, industry and website beneficial for multi-channel marketing purposes.

 

If this interests you and if you would like to review a sample file, mail me with your requirement as follows:

 

  Target Industry         : _____________________ ( example: Finance, IT etc)

  Target Job titles        :______________________ (example: CFO etc )

  Target Geography    :______________________ (example: UK, USA etc)

 

We have a Christmas Offer this month.

 

I look forward to hearing from you soon.

 

Best Regards,

Liana Michael

Business Development Executive

Phone No : 775-253-6403

Email : [liana.michael@onlinelistleadsmail.com]

 

 

Note: You were specifically sent this email based upon your company profile. If for some reason or you wish not to receive any further messages from us please reply with subject line as "Leave Out" and you will be excluded from all future mailings.

 

2013년 11월 22일 금요일

Marketing Directory

Greeting,

 

I hope my email is interesting !!

 

I had been on your company’s website I do see you have dealt with major Industry such as, Healthcare, Financial Services Energy & Utilities IT & Technology Manufacturing & Chemicals, Pharmaceuticals, Food and Beverage, Insurance, Oil and Gas, Construction & Property Management.

 

I would like to know would you be interested in Highly Responsive key decision makers Opt-in contacts.

 

Here is the key decision makers counts based on your company’s profile.

 

Industry 

Records Available (worldwide)

Aerospace & Defence

8,742

Construction & Property Management

62,412

Energy & Utilities

34125

Financial Services

76,816

Healthcare

88,416

IT & Technology

55,418

Insurance

41,705

Manufacturing & Chemicals

84,374

Medical Devices

22,418

Metals & Mining

18,146

Automotive

25,047

Food and Beverage

85,479

Pharmaceuticals 

45,899


Questions to clarify:

 

1) Who do you want to reach with your mailing? [ Profession, EG: CEO, CFO, etc ]

2) When do you plan to do this mailing ? [ please provide the date or month, even if estimated]

3) Where do you want to market your product? [ nationwide or worldwide ]

 

Please do not hesitate to contact me if you have any question or concern in this regards.

 

Share your thoughts.

 

Awaiting your response!

 

Best Regards,

Lana Michael

Business Development Executive

Ph no : 775-253-6403

Email : [liana.michael@onlinelistleadsmail.com]

 

 

 

 

 

To remove your email from further emailing please reply to this email with the subject line “Leave Out”

 

 

 

My business thrives on referrals. Please email or contact me with other potential clients, and I'll take up to 15% off your next order if your referral turns into a sale!

 

 

2011년 11월 2일 수요일

2011년 5월 30일 월요일

iphone http Request

1. Sync 



NSURL *url = [NSURL URLWithString:kURLPath]; 
NSURLRequest *request = [NSURLRequest requestWithURL:url]; 
NSURLResponse *response; 
NSError *error = nil; 
NSData *data = [NSURLConnection sendSynchronousRequest:request
returningResponse:&response error:&error];
if(data == nil) { NSLog(@”%@”, [error description]);
}


2. ASync 

NSURL *url = [NSURL URLWithString:kURLString]; 
NSURLRequest *request = [NSURLRequest requestWithURL:url]; NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:self];
 [connection start];

NSUrlConnectionDelegate  사용




NSURLConnectionDelegate Header 응답
Body 전송
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)aResponse { response = [aResponse retain];
if ([response expectedContentLength] < 0) { [connection cancel];
}
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)aData {
// 다운로드한 데이터를 추가 [receiveData appendData:aData];
}


NSURLConnectionDelegate
전송 완료
오류 처리
- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
UIImage *image = [UIImage imageWithData:receiveData] [self.imageView setImage:image];
}
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error { UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Connection Error"
[alert show]; [alert release];
}
message:[error description] delegate:self
cancelButtonTitle:@"Close" otherButtonTitles:nil];





ASIHTTPRequest
HTTP 요청과 응답 관련 라이브러리 간편한 사용성 보안 및 인증 지원 Queue를 활용한 다중 다운로드 지원
http://allseeing-i.com/ASIHTTPRequest/How-to-use


메모리 관리 기법 3가지

1.  retain  realse


2. pool 을 사용

main.m  을 사용..


NSAutoRealsePool pool = ... alloc 
  .... 
[pool drain] 
중첩해서 사용도 가능하다.. 



3. gabage collection

iphone map 이용하기

1. Map SDK 를 추가하고
2.   xlb   의   map view 에 delegate 를 추가한다.



//
//  SampleDay10ViewController.h
//  SampleDay10
//
//  Created by bit on 11. 5. 30..
//  Copyright 2011 __MyCompanyName__. All rights reserved.
//

#import
#import

// delegate  를 추가한다. 
@interface SampleDay10ViewController : UIViewController {

MKMapView *mMap;
}

@property (nonatomic, retain) IBOutlet MKMapView *mMap;


-(IBAction)onViewModeChanged:(id)sender;
-(IBAction)onDropPinClicked:(id)sender;
-(IBAction)onCurrentPositionClicked:(id)sender;


@end



//
//  SampleDay10ViewController.m
//  SampleDay10
//
//  Created by bit on 11. 5. 30..
//  Copyright 2011 __MyCompanyName__. All rights reserved.
//

#import "SampleDay10ViewController.h"

@implementation SampleDay10ViewController
@synthesize mMap;




/*
// The designated initializer. Override to perform setup that is required before the view is loaded.
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}
*/

/*
// Implement loadView to create a view hierarchy programmatically, without using a nib.
- (void)loadView {
}
*/



// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {
    [super viewDidLoad];

mMap.showsUserLocation = YES;
mMap.delegate = self;
MKCoordinateRegion reg;
reg.center.latitude = 37.56;
reg.center.longitude = 126.96;
reg.span.latitudeDelta = 0.1;
reg.span.longitudeDelta = 0.1;
[mMap setRegion:reg animated:YES];
}



/*
// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
*/

- (void)didReceiveMemoryWarning {
// Releases the view if it doesn't have a superview.
    [super didReceiveMemoryWarning];
// Release any cached data, images, etc that aren't in use.
}

- (void)viewDidUnload {
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}


- (void)dealloc {
    [super dealloc];
}


-(IBAction)onViewModeChanged:(id)sender{
NSUInteger idx = [(UISegmentedControl*)sender selectedSegmentIndex];
switch (idx) {
case 0:
mMap.mapType = MKMapTypeStandard;
break;
case 1:
mMap.mapType = MKMapTypeSatellite;
break;
case 2:
mMap.mapType = MKMapTypeHybrid;
break;

default:
break;
}
}
-(IBAction)onDropPinClicked:(id)sender{

MKReverseGeocoder *rev = [[MKReverseGeocoder alloc] initWithCoordinate:mMap.centerCoordinate];
rev.delegate = self;
[rev start];
}
-(IBAction)onCurrentPositionClicked:(id)sender{
MKCoordinateRegion reg = mMap.region;
MKUserLocation *userLocation = mMap.userLocation;
reg.center = userLocation.location.coordinate;
[mMap setRegion:reg animated:YES];
}


// google api 성공 일때 
-(void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFindPlacemark:(MKPlacemark *)placemark 
{
NSLog(@"placemark = %@", placemark);
[mMap addAnnotation:placemark];
[geocoder release];
}


// google api  실패 일때 .. 주소가 없을때 .. 
-(void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFailWithError:(NSError *)error
{
NSLog(@"%@", [error localizedDescription]);
[geocoder release];
}


-(MKAnnotationView*)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation
{
static NSString *viewIdentifier = @"My Annotate";
MKPinAnnotationView *pin = (MKPinAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:viewIdentifier];
if( pin == nil ){
pin = [[[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:viewIdentifier] autorelease];
pin.animatesDrop = YES;
pin.pinColor = MKPinAnnotationColorPurple;
pin.canShowCallout = YES;
}
else {
pin.annotation = annotation;
}
return pin;
}


@end