Skip to content

Instantly share code, notes, and snippets.

View rhogeranacleto's full-sized avatar
👄
CSS is the best programming language at all!

Rhoger Anacleto rhogeranacleto

👄
CSS is the best programming language at all!
View GitHub Profile
@rhogeranacleto
rhogeranacleto / index.html
Last active January 6, 2022 21:34
integrated form
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formulario Integrado 1.3.3</title>
<style>
body {
padding: 50px;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formulario Integrado 2.0</title>
<style>
body {
padding: 50px;
}
@rhogeranacleto
rhogeranacleto / index.html
Last active April 20, 2021 16:47
production intetration
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formulario Integrado 2.0</title>
<style>
body {
padding: 50px;
}
@rhogeranacleto
rhogeranacleto / use-axios.ts
Created August 17, 2021 16:56
use axios hook
import Axios from 'axios';
import { Dispatch, Reducer, useCallback, useReducer } from 'react';
interface IAxiosData<T> {
data?: T;
loading: boolean;
error?: Error;
}
enum UseFatchActions {
@rhogeranacleto
rhogeranacleto / tree.ts
Created June 26, 2024 09:10
Tree post and pre execution
interface NodeItem {
cmd?: () => void;
pre?: NodeItem;
post?: NodeItem;
}
const root: NodeItem = {
cmd: () => console.log('just this'),
};
@rhogeranacleto
rhogeranacleto / core.js
Created June 25, 2025 16:01
Numeric core
const operators = [
["-", "*", "/"],
["-", "/", "*"],
["*", "-", "/"],
["*", "/", "-"],
["/", "-", "*"],
["/", "*", "-"],
];
const operate = (n1, n2, operation) => {