I hereby claim:
- I am codeithuman on github.
- I am codeithuman (https://keybase.io/codeithuman) on keybase.
- I have a public key whose fingerprint is 8D87 C9BB 3FBD 7404 DA25 B038 BB69 C9AF 00CC FF43
To claim this, I am signing this object:
| import { AppRegistry } from 'react-native'; | |
| import App from './App'; | |
| AppRegistry.registerComponent('HelloWorld', () => App); |
| // React w/ HTML | |
| <div> | |
| <p>This is HTML w/ React</p> | |
| <MyWidget /> | |
| </div> | |
| // React Native | |
| <View> | |
| <Text>This is React Native</Text> | |
| <MyWidget /> |
| # Set name of the theme to load. | |
| # Look in ~/.oh-my-zsh/themes/ | |
| # Optionally, if you set this to "random", it'll load a random theme each | |
| # time that oh-my-zsh is loaded. | |
| ZSH_THEME=pygmalion | |
| # Uncomment the following line to use case-sensitive completion. | |
| # CASE_SENSITIVE="true" | |
| # Uncomment the following line to use hyphen-insensitive completion. Case |
| # Path to you oh-my-zsh installation. | |
| export ZSH=/Users/aj/.oh-my-zsh | |
| # Add env.sh | |
| . ~/.zsh-env.sh |
| Lesson 1 SUMMARY | |
| 1. The cursor is moved using either the arrow keys or the hjkl keys. | |
| h (left) j (down) k (up) l (right) | |
| 2. To start Vim from the shell prompt type: vim FILENAME <ENTER> | |
| 3. To exit Vim type: <ESC> :q! <ENTER> to trash all changes. | |
| OR type: <ESC> :wq <ENTER> to save the changes. |
| // Material Design breakpoints w/ Neat 2.0 custom grids | |
| // http://bourbon.io/ | |
| // http://neat.bourbon.io/ | |
| // https://material.io/guidelines/layout/responsive-ui.html#responsive-ui-breakpoints | |
| $mobile-xsmall: ( | |
| columns: 4, | |
| gutter: 16px, | |
| media: "(max-width: 319px)" | |
| ); |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Ansi 0 Color</key> | |
| <dict> | |
| <key>Alpha Component</key> | |
| <real>1</real> | |
| <key>Blue Component</key> | |
| <real>0.25332435965538025</real> |
I hereby claim:
To claim this, I am signing this object:
| fontColor : String | |
| fontColor = | |
| "#332A3A" | |
| headingStyles : Attribute msg | |
| headingStyles = | |
| style | |
| [ ( "textAlign", "center" ) | |
| , ( "marginBottom", "25px" ) |
| view : Model -> Html Msg | |
| view model = | |
| div [ class "contact-form" ] | |
| [ div [ class "alert alert-danger" ] [] | |
| , div [ class "field-row" ] | |
| [ div [ class "field" ] | |
| [ input [ type' "text", class "form-required", id "contact_name", maxlength 70, name "contact[name]", placeholder "Name*" ] [] ] | |
| ] | |
| , div [ class "field-row" ] | |
| [ div [ class "field" ] |