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
| processor : 0 | |
| vendor_id : AuthenticAMD | |
| cpu family : 15 | |
| model : 37 | |
| model name : AMD Opteron(tm) Processor 246 | |
| stepping : 1 | |
| cpu MHz : 2010.241 | |
| cache size : 1024 KB | |
| fpu : yes | |
| fpu_exception : yes |
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
| NSManagedObjectContext *managedObjectContext = [(AppDelegate_Shared*)[UIApplication sharedApplication].delegate managedObjectContext]; | |
| NSFetchRequest *request = [[NSFetchRequest alloc] init]; | |
| NSEntityDescription *entity = [NSEntityDescription entityForName:@"Log" inManagedObjectContext:managedObjectContext]; | |
| [request setEntity:entity]; | |
| // Specify that the request should return dictionaries. | |
| [request setResultType:NSDictionaryResultType]; | |
| // Create an expression for the key path. |
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> | |
| <head> | |
| <meta http-equiv="Content-type" content="text/html; charset=utf-8"> | |
| <title>Page Title</title> | |
| <script type="text/javascript" charset="utf-8" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script> | |
| <script type="text/javascript"> | |
| $(document).ready(function(){ |
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
| @implementation UITabBar (CustomImage) | |
| - (void)drawRect:(CGRect)rect{ | |
| [super drawRect:rect]; | |
| UIImage *image = [UIImage imageNamed:@"TabBar.png"]; | |
| [image drawInRect:rect]; | |
| } | |
| @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
| @implementation UINavigationBar (CustomImage) | |
| - (void)drawRect:(CGRect)rect { | |
| UIImage *image = [UIImage imageNamed: @"NavigationBar.png"]; | |
| [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)]; | |
| } | |
| @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
| <div class="register-videos"><span class="vvqbox vvqquicktime" style="width:595px;height:300px;"><script type="text/javascript">var myQTObject = new QTObject("http://fitfactor.hemophiliafed.org/wp-content/uploads/videos/FitFactor2011-survey-intro/FitFactor2011-survey-intro.mov", "vvq-26-quicktime-1", "595", "300"); myQTObject.addParam("autoplay", "false"); myQTObject.addParam("controller", "true"); myQTObject.addParam("scale", "aspect"); myQTObject.write();</script><embed type="video/quicktime" src="http://fitfactor.hemophiliafed.org/wp-content/uploads/videos/FitFactor2011-survey-intro/FitFactor2011-survey-intro.mov" width="595" height="300" id="vvq-26-quicktime-1" autoplay="false" controller="true" scale="aspect"></span></div> |
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
| <script type="text/javascript"> | |
| //you can wrap this in a click function or some other event. | |
| $("#content_to_hide").hide(); | |
| </script> | |
| <!-- content you don't want to hide in css of the wrapper, | |
| set height,width,& bg on this element --> | |
| <div id="content_wrapper"> | |
| <!-- content you want to hide --> |
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
| # Rewrite sitemap.xml to the appropriate action | |
| RewriteRule ^sitemap.xml$ /mod_site/public/google-sitemap | |
| # Send all other requests to the Zend Framework dispatch script | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteRule .* /index.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
| <VirtualHost *:80> | |
| UseCanonicalName off | |
| ServerAlias branch.*.local | |
| VirtualDocumentRoot /Users/tjboudreaux/Sites/%3.0.%4.0/branches/%2.0 | |
| <Directory /> | |
| Order allow,deny | |
| Allow from all | |
| AllowOverride All | |
| </Directory> | |
| </VirtualHost> |