Skip to content

Instantly share code, notes, and snippets.

View PushoDev's full-sized avatar
:copilot:
<QvaDevs @PuShoft />

Luis A. Guisado PushoDev

:copilot:
<QvaDevs @PuShoft />
View GitHub Profile
@PushoDev
PushoDev / animated-tab-bar.markdown
Created February 11, 2025 21:07
Animated Tab Bar
<?php
namespace App\Traits;
trait PostsPerMonthSeries
{
protected function getChartData(): array
{
return [
'data' => [
@PushoDev
PushoDev / gsap-round-ending-scene.markdown
Created December 12, 2024 14:45
GSAP Round Ending Scene

GSAP Round Ending Scene

Round ending scene of a mobile game called "King's League II". Figured I'd give GSAP timelines a go because I really enjoyed this little animation!

A Pen by Luis Alberto Guisado on CodePen.

License.

@sergiecode
sergiecode / curso-node-js.md
Last active March 23, 2025 03:14
Instalaciones Necesarias y recomendadas para el curso de NODE.JS
/**
https://gist.github.com/leandrocfe/1183bd73a58b21496306c12c326d78db
*/
/** main color: #014bde */
/** tailwind.config.js
theme: {
fontSize: {
'xs': '0.75rem',
@leandrocfe
leandrocfe / theme.css
Last active March 28, 2025 22:03
Filamentbr - css tema customizado
/*
colors
#0d659d
#7b2cbf
*/
.fi-sidebar {
@apply bg-primary-600 dark:bg-transparent !important;
}
@sergiecode
sergiecode / instalaciones-typescript.md
Last active April 28, 2024 16:41
Instalaciones necesarias para curso TYPESCRIPT de Sergie Code
@nyancodeid
nyancodeid / README.md
Last active April 29, 2025 08:20
Make RESTful API with Google Apps Script and SpreadSheet

Google Script CRUD

By Ryan Aunur Rassyid

Simply create RESTful API with Google Script and store it to Google SpreadSheet like a Pro.

@firomero
firomero / json
Created February 1, 2017 21:12
Provincias de Cuba
"Provincias": [{
"id": "1",
"nombre": 'Pinar del Río',
"municipios":["Consolación del Sur", "Guane", "La Palma", "Los Palacios", "Mantua", "Minas de Matahambre", "Pinar del Río", "San Juan y Martínez", "San Luis", "Sandino", "Viñales"]
}, {
"id": "2",
"nombre": 'Artemisa',
"municipios":[
"Alquízar", "Artemisa", "Bauta", "Caimito", "Guanajay", "Güira de Melena", "Mariel", "San Antonio de los Baños", "Bahía Honda", "San Cristóbal", "Candelaria"]
}, {
@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