This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>Calendar</title> | |
<!-- link calendar files --> | |
<script language="JavaScript" src="calendar_us.js"></script> | |
<link rel="stylesheet" href="calendar.css"> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>Calendar</title> | |
<!-- link calendar files --> | |
<script language="JavaScript" src="calendar_us.js"></script> | |
<link rel="stylesheet" href="calendar.css"> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-(void)trackOmnitureEventInfo:(NSDictionary *)eventInfo | |
{ | |
NSLog( @"TLOmnitureManager:trackOmnitureEventInfo:%@", eventInfo ); | |
[_omAppMeasurement track:eventInfo]; | |
} | |
-(void)handleNotifications:(NSNotification *)notification | |
{ | |
NSMutableDictionary *mutable_d = [NSMutableDictionary dictionaryWithDictionary:notification.userInfo]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+ (TLAdView *)adViewForTopLevelTab:(NSDictionary *)topLevelTab | |
frame:(CGRect)frame | |
parentViewController:(UIViewController *)parentViewController | |
{ | |
NSString *adViewClassName = @"BCWebAdView"; | |
TLAdView *adView = nil; | |
//cass: create green button in the newscontroller |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.*; | |
import java.lang.*; | |
class test1 extends Thread | |
{ | |
static long sum; | |
long start; | |
long end; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Cassidy Pangell | |
import java.util.*; | |
import java.lang.*; | |
//Since there is only two threads, I used synchronize | |
class test1 extends Thread{ | |
static long sum = 0; | |
long start; | |
long end; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-(NSDictionary *)submitted { | |
NSArray *keys = [NSArray arrayWithObjects:@"offercode",@"firstname",@"lastname",@"address", nil]; | |
NSArray *objs = [NSArray arrayWithObjects:offerCodeField.text, firstNameField.text, lastNameField.text, emailAddressField.text, nil]; | |
data = [NSDictionary dictionaryWithObjects:objs forKeys:keys]; | |
for (id keys in data) { | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Check whether we can send email | |
if ([MFMailComposeViewController canSendMail]) { | |
[composer setToRecipients:[NSArray arrayWithObjects:messageEmail, nil]]; | |
[composer setSubject:@"Urban Cow Registration"]; | |
[composer setMessageBody:messageBody isHTML:NO]; | |
[composer setModalTransitionStyle:UIModalTransitionStyleCrossDissolve]; | |
[self presentModalViewController:composer animated:YES]; | |
//Switch views to Home |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<title>Test</title> | |
</head> | |
<body> | |
<?php |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ViewController.h | |
// SearchViewNIB | |
// | |
// Created by Cassidy Pangell on 3/30/12. | |
// Copyright (c) 2012 __MyCompanyName__. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> |