Skip to content

Instantly share code, notes, and snippets.

View argenisosorio's full-sized avatar

Argenis Osorio argenisosorio

View GitHub Profile
@gaearon
gaearon / index.html
Last active April 1, 2025 01:48
Add React in One Minute
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Add React in One Minute</title>
</head>
<body>
<h2>Add React in One Minute</h2>
<p>This page demonstrates using React with no build tooling.</p>
@edwardlorilla
edwardlorilla / index.html
Created May 27, 2018 17:10
Table display in Vuejs vue tables 2
<h3 class="vue-title">Simple</h3>
<div id="app">
<v-client-table :columns="columns" :data="data" :options="options">
</v-client-table>
</div>
@HiroNakamura
HiroNakamura / EjemplosPython.py
Last active March 11, 2025 06:38
Ejemplos de Python
# -*- coding: cp1252 -*-
'''
[Programación en Python]
'''
'''
Python tiene veintiocho palabras clave:
and continue else for import not raise
assert def except from in or return
break del exec global is pass try