Skip to content

Instantly share code, notes, and snippets.

View Qt-dev's full-sized avatar

Quentin Devauchelle Qt-dev

  • Irvine, California
View GitHub Profile
@Qt-dev
Qt-dev / data.js
Last active July 12, 2018 21:06
ReactJS - How to make a simple navbar menu
var data = [
{
"text": "Link 1",
"url": "#"
},
{
"text": "Link 2",
"url": "#"
},
{
@Qt-dev
Qt-dev / backendData.js
Created July 3, 2014 09:55
An accordion in ReactJS/CSS3
var backendData = [
{
"title":"Section 1",
"content":"Our content for the section 1"
},
{
"title":"Section 2",
"content":"Our content for the section 2"
},
{
@Qt-dev
Qt-dev / 00-reflection.md
Last active January 2, 2016 16:19 — forked from dbc-challenges/jquery_example.html
Intro to jQuery for Phase 0

#Reflection JQuery is awesome, check the comments for more info on the methods we used. I was looking forward to playing with it with my fellow Banana Slugs, now I can't wait the next time we play with it.

@Qt-dev
Qt-dev / 0.2.1-boggle_class_from_methods.rb
Last active December 29, 2015 12:29 — forked from dbc-challenges/0.2.1-boggle_class_from_methods.rb
phase 0 unit 2 week 1 boggle class challenge
#TODO
#1 - Instanciate the BoggleBoard object Check
#2 - Implement the methods we already had Check
#3 - Create driver code to access a coordinate Check
#4 - Create a #get_diagonal (Bonus) Check
class BoggleBoard
attr_reader :board
def initialize(board)

phase 0 Expectations

Unit 2: Design

Expectations for this Unit