Skip to content

Instantly share code, notes, and snippets.

View ThorondorManwe's full-sized avatar
🤖
Focusing

Carlos Rangel ThorondorManwe

🤖
Focusing
View GitHub Profile
@Klerith
Klerith / heroes-with-desc.js
Last active June 27, 2025 15:38
Una colección de Super Héroes
export const heroes = [
{
'id': 'dc-batman',
'superhero':'Batman',
'publisher':'DC Comics',
'alter_ego':'Bruce Wayne',
'first_appearance':'Detective Comics #27',
'characters':'Bruce Wayne'
},
{
@Klerith
Klerith / heroes.js
Created May 7, 2020 17:40
Un pequeño arreglo de héroes para hacer ejercicios
const heroes = [
{
id: 1,
name: 'Batman',
owner: 'DC'
},
{
id: 2,
name: 'Spiderman',
owner: 'Marvel'
@Klerith
Klerith / react-index.html
Created May 6, 2020 19:07
Introducción a React
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<!-- Cargat React -->
<script crossorigin src="https://unpkg.com/react@16/umd/react.production.min.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
@laracasts
laracasts / StringCalculator.php
Created January 8, 2020 21:20
String Calculator Kata
<?php
namespace App;
use Exception;
class StringCalculator
{
/**
* The maximum number allowed.
@laracasts
laracasts / Game.php
Created January 3, 2020 16:10
Bowling Game Kata
<?php
namespace App;
class Game
{
/**
* The number of frames in a game.
*/
const FRAMES_PER_GAME = 10;