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
{ | |
"name": "test-driven-carousel", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"test": "jest" | |
}, | |
"keywords": [], | |
"author": "", |
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
var React = require('react'); | |
var ReactRouter = require('react-router-dom'); | |
var Router = ReactRouter.BrowserRouter; | |
var Route = ReactRouter.Route; | |
var Switch = ReactRouter.Switch; | |
var Nav = require('./Nav'); | |
var Home = require('./Home'); | |
var Battle = require('./Battle'); | |
var Popular = require('./Popular'); |
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
#include <stdlib.h> | |
#include <stdio.h> | |
#include "./ex00/ft_strdup.c" | |
#include "./ex01/ft_range.c" | |
int main(void) | |
{ | |
int i; |
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
# Give me the DB handler -> gem | |
require 'sqlite3' | |
# Create / Connect with DB | |
DB = SQLite3::Database::new('db.sqlite') | |
# transform the results into a hash | |
#DB.results_as_hash = true | |
# get all the cities |