This file contains 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
public partial class Created_Edited : DbMigration | |
{ | |
public override void Up() | |
{ | |
AddColumn("dbo.Resumes", "Edited", c => c.DateTime(nullable: false, precision: 7, storeType: "datetime2")); | |
AddColumn("dbo.Resumes", "Created", c => c.DateTime(nullable: false, precision: 7, storeType: "datetime2")); | |
} | |
public override void Down() | |
{ |
This file contains 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
.btn-file { | |
position: relative; | |
overflow: hidden; | |
} | |
.btn-file input[type=file] { | |
position: absolute; | |
top: 0; | |
right: 0; |
This file contains 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
execute pathogen#infect() | |
syntax on | |
filetype plugin indent on | |
set expandtab | |
set tabstop=2 | |
set shiftwidth=2 | |
set number |
This file contains 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
// @flow | |
import React, { Component } from 'react'; | |
import { | |
Animated, | |
Dimensions, | |
Keyboard, | |
PanResponder, | |
StyleSheet, | |
TouchableWithoutFeedback, | |
View, |