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
Create Table | |
CREATE TABLE netflix_genres | |
([ID] int, [MovieName] varchar(15), [MovieGenre] varchar(15)) | |
; | |
INSERT INTO netflix_genres | |
([ID], [MovieName], [MovieGenre]) | |
VALUES | |
(1, 'Movie1', 'Genre1'), |
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
https://jsfiddle.net/njmbfs6b/1/ |
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
namespace Team4Calories.DAL | |
{ | |
public class UserRepository : Repository | |
{ | |
public int Insert(User user) | |
{ | |
using (IDbConnection dbConnection = Connection) | |
{ | |
dbConnection.Open(); | |
return dbConnection.Query<InsertID>("Team4Calories.DAL.InsertUser", user, commandType: CommandType.StoredProcedure).First().ID; |
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
.sidebar-wrapper input[type="email"], | |
.sidebar-wrapper select { | |
display: block; | |
width: 100%; | |
padding: 6px 12px; | |
font-size: 13px; | |
line-height: 1.3; | |
color: #555555; | |
background-color: #ffffff; | |
background-image: none; |
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
<section class="header-11-sub bg-midnight-blue"> | |
<div class="background"> | |
| |
</div> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-sm-4"> | |
<h3>Features of Startup Framework</h3> | |
<p> | |
You have the design, you have the code. We’ve created the product that will help your startup to look even better. |
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
/* | |
============================================== | |
CSS3 ANIMATION CHEAT SHEET | |
============================================== | |
Made by Justin Aguilar | |
www.justinaguilar.com/animations/ | |
Questions, comments, concerns, love letters: |