Test for a page transition on a new site. New version with support for IE: http://codepen.io/robbue/pen/tnLmH/
A Pen by Robert Bue on CodePen.
Test for a page transition on a new site. New version with support for IE: http://codepen.io/robbue/pen/tnLmH/
A Pen by Robert Bue on CodePen.
| !!! 5 | |
| html | |
| head | |
| h1 My Site | |
| block scripts | |
| script(src="/jquery.js") | |
| body | |
| block header | |
| header | |
| p some header content |
| #include <stdint.h> | |
| #include <stdbool.h> | |
| #define PART_TM4C123GH6PM | |
| #include "inc/tm4c123gh6pm.h" | |
| /***************************** | |
| * LM4F120 - timer based blink | |
| * Using TimerIntRegister | |
| * 80 Mhz clock |
| /*16x2 lcd with stellaris launchpad... | |
| /----------------------------------------/ | |
| CONNECTION TIPS: | |
| RS: PF1 | |
| EN:PF2 | |
| DATA: PD0 - PD3 to d4 to d7 in lcd respectively | |
| VDD (POWER): connect 5v supply to LCD from the launchpad itself (one of the 3 connection near the switch) | |
| R/W: Ground it | |
| Remaining LCD pins (d0 to d4): Leave it as it is ie floating | |
| VEE of LCD: Pull down using 1K resistor (connect to ground using 1K resistor) |
| <?php if (!defined('BASEPATH')) exit('No direct script access allowed'); | |
| /* | |
| Manage multiple hostnames (domains, sub-domains) within a single instance of CodeIgniter. | |
| Example: | |
| If you had the following domain/sub-domain style for your site: | |
| your-domain.com |
| package br.com.consultoriadigital.insights.core; | |
| import android.content.Context; | |
| import android.content.pm.PackageInfo; | |
| import android.content.pm.PackageManager; | |
| import android.content.pm.Signature; | |
| import android.util.Base64; | |
| import android.util.Log; | |
| import java.security.MessageDigest; |
| - (void)viewDidAppear:(BOOL) animated { | |
| [super viewDidAppear:animated]; | |
| // Register notification when the keyboard will be show | |
| [[NSNotificationCenter defaultCenter] addObserver:self | |
| selector:@selector(keyboardWillShow:) | |
| name:UIKeyboardWillShowNotification | |
| object:nil]; | |
| // Register notification when the keyboard will be hide | |
| [[NSNotificationCenter defaultCenter] addObserver:self |
| @implementation UIApplication (AppVersion) | |
| + (NSString *) appVersion | |
| { | |
| return [[NSBundle mainBundle] objectForInfoDictionaryKey: @"CFBundleShortVersionString"]; | |
| } | |
| + (NSString *) build | |
| { | |
| return [[NSBundle mainBundle] objectForInfoDictionaryKey: (NSString *)kCFBundleVersionKey]; |
| extension UIApplication { | |
| class func appVersion() -> String { | |
| return NSBundle.mainBundle().objectForInfoDictionaryKey("CFBundleShortVersionString") as! String | |
| } | |
| class func appBuild() -> String { | |
| return NSBundle.mainBundle().objectForInfoDictionaryKey(kCFBundleVersionKey as String) as! String | |
| } |