Skip to content

Instantly share code, notes, and snippets.

View Colo-Codes's full-sized avatar
💎
Learning Ruby on Rails

Damian Demasi Colo-Codes

💎
Learning Ruby on Rails
View GitHub Profile
@Colo-Codes
Colo-Codes / RAILS_CHEATSHEET.md
Created April 28, 2022 00:49 — forked from mdang/RAILS_CHEATSHEET.md
Ruby on Rails Cheatsheet

Ruby on Rails Cheatsheet

Architecture

Create a new application

Install the Rails gem if you haven't done so before

@Colo-Codes
Colo-Codes / react-class-component.js
Created November 23, 2021 20:07
React examples
class Welcome extends React.Component {
constructor(props) {
super(props);
this.state = { counter: 0 };
}
render() {
return <h1>Hello, {this.props.name}</h1>;
}
}
@Colo-Codes
Colo-Codes / index.html
Last active August 18, 2021 08:42
To-Do app - HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/index.css" />
<title>Mini-Project - ToDo app</title>
</head>
<body class="background">