Skip to content

Instantly share code, notes, and snippets.

View wachunei's full-sized avatar
🧔
being

Pedro Pablo Aste Kompen wachunei

🧔
being
View GitHub Profile
@wachunei
wachunei / .gitignore
Last active August 25, 2026 23:09
Fintual Proyecto AFP Reader
node_modules/
dist/
.DS_Store
*.log
@wachunei
wachunei / .eslintrc.js
Last active February 2, 2023 17:21
Fintual Inbox Disable Moving Balance
module.exports = {
env: {
browser: true,
es6: true,
},
extends: ["airbnb-base", "plugin:prettier/recommended"],
globals: {
Atomics: "readonly",
SharedArrayBuffer: "readonly",
},
@wachunei
wachunei / ._README.md
Last active February 8, 2023 12:47
Imprime tu carnet de vacunación

Primer Torneo de Penales DCCasino

Final y tercer lugar

Finalistas: @Killua y @Mahund Tercer lugar: @Maite y @Edu

TODO

!.eslintrc.js
@wachunei
wachunei / ✨ Ñoñerías para Fintual.md
Last active August 26, 2026 03:06
Una recopilación de ñoñerías chicas que he hecho como usuario de Fintual

✨ Ñoñerías para Fintual

Una recopilación de ñoñerías chicas que he hecho como usuario de Fintual.

Importante: no formo parte del equipo de fintual, todo lo que está acá no es responsabilidad de ellos. Todo lo que está acá puede fallar si el sitio o API de fintual cambia.


Contenido

@wachunei
wachunei / .eslintignore
Last active August 6, 2026 18:30
Fintual Goal Profit Home
!.eslintrc.js
@wachunei
wachunei / .eslintignore
Last active July 27, 2020 03:45
Fintual Goals Profit Tooltip
!.eslintrc.js
@wachunei
wachunei / AnimatedGate.jsx
Last active December 12, 2019 06:01
Replicating Twitter iOS splash screen animation on React Native during redux rehydration
import React, { Component } from 'react';
import { Animated, Easing, StatusBar, MaskedViewIOS, View } from 'react-native';
class AnimatedGate extends Component {
constructor(props) {
super(props);
this.beginAnimation = this.beginAnimation.bind(this);
this.state = {
animation: new Animated.Value(0),
};
@wachunei
wachunei / withDebounce.js
Created January 12, 2018 15:27
withDebounce HOC
import React from 'react';
import PropTypes from 'prop-types';
import debounce from 'lodash/debounce';
const withDebounce = (Touchable) => {
class DebouncedComponent extends React.PureComponent {
constructor(props) {
super(props);
const { onPress } = props;
this.onPress = debounce(() => onPress && onPress(), 300, {