Skip to content

Instantly share code, notes, and snippets.

View kenmazaika's full-sized avatar

ken mazaika kenmazaika

View GitHub Profile
<Album
title="Firehose Weekend"
description="Learn to code a web app built with HTML, CSS, and ruby in hackathon style weekend."
lastPlayed="A minute ago"
/>
<div class="album">
<h3>UI State of Mind</h3>
<h4>Keep track of complex web application and manage state</h4>
<span class="lastPlayed">3 minutes ago</span>
</div>
<Album />
import React from 'react';
class Album extends React.Component {
render() {
var title = "UI State of Mind";
var description = "Keep track of complex web application and manage state";
var lastPlayed = "3 minutes ago";
return (
<div className="album">
var myClassName = "blue";
var text = "hello ken";
var htmlElement = <div className={myClassName}>{text}</div>;
var className = "blue";
var text = "hello ken";
var htmlElement = "<div class=\"" + className + "\">" + text + "</div>";

Build a Daily Deal Aggregator Website

There are so many daily deal websites like Groupon, LivingSocial, etc. Having a single daily deal aggregator site to link to deals like this great burger deal.

Feature sets that would be helpful:

  • The application needs to exist. A new project should be spun up!
  • As a user, I should be able to sign up for a new account. Look into integrating the application with devise.
  • As a user, I should be able to post daily deals I find on the internet
  • The root URL of the page should include a list of all the daily deals in the database
@kenmazaika
kenmazaika / README.md
Last active April 19, 2019 00:10
Showdown Markdown extension

Markdown Extensions for Wells and PrismJS

Hello

foo
```javascript:4,5-7
hello
```
var checkTruthyness = function(value) {
if(value) {
console.log(String(value) + " is truthy");
}
else {
console.log(String(value) + " is falsey");
}
}
@kenmazaika
kenmazaika / text.js
Created August 2, 2017 00:07
Example from theFirehoseProject JavaScript, Lesson #3
var text = "Today, I wrote code";
console.log(text);
console.log(text);