Skip to content

Instantly share code, notes, and snippets.

View itarkuma's full-sized avatar

Franky itarkuma

  • biz-manager
  • Bolivia
View GitHub Profile
@itarkuma
itarkuma / instalaciones-react-native-expo.md
Created September 27, 2025 18:31 — forked from Klerith/instalaciones-react-native-expo.md
Instalaciones recomendadas para el curso de React Native Expo
React Native Logo Expo Logo
Docs React Native Docs Expo

Curso de React Native - Expo

Esta es la lista de instalaciones recomendadas para el curso de React Native, si encuentran enlaces adicionales o cambios en esta hoja, pueden hacerlos.

@itarkuma
itarkuma / FlowRouter.js
Created September 2, 2025 19:28 — forked from BittorGonzalez/FlowRouter.js
bot.dispatch solo funciona con Postman
import axios from "axios";
async function flowRouter(endp) {
try {
const endpointUrl = `http://localhost:3008/v1/get_weather`;
const response = await axios.post(endpointUrl, {
number: "34695623837",
name: "Bittor"
@itarkuma
itarkuma / FlowRouter.js
Created September 2, 2025 19:28 — forked from BittorGonzalez/FlowRouter.js
bot.dispatch solo funciona con Postman
import axios from "axios";
async function flowRouter(endp) {
try {
const endpointUrl = `http://localhost:3008/v1/get_weather`;
const response = await axios.post(endpointUrl, {
number: "34695623837",
name: "Bittor"
@itarkuma
itarkuma / instalaciones.md
Created August 29, 2025 00:33 — forked from Klerith/instalaciones.md
Instalaciones recomendadas para el curso de React Pro
@itarkuma
itarkuma / instalaciones.md
Created August 29, 2025 00:33 — forked from Klerith/instalaciones.md
Instalaciones recomendadas para el curso de React Pro
@itarkuma
itarkuma / git-alias.md
Last active August 18, 2025 15:37 — forked from Klerith/git-alias.md
Useful Git Alias

Log

git config --global alias.lg "log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all"

Status

git config --global alias.s status --short git config —global alias.s “status —short”

Alternativa útil de status

git config --global alias.s status -sb

@itarkuma
itarkuma / git-alias.md
Created August 18, 2025 15:34 — forked from Klerith/git-alias.md
Useful Git Alias

Log

git config --global alias.lg "log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all"

Status

git config --global alias.s status --short

Alternativa útil de status

git config --global alias.s status -sb

@itarkuma
itarkuma / seed-countries.ts
Created September 11, 2024 14:42 — forked from Klerith/seed-countries.ts
Información de los países del mundo
interface Country {
name: string;
id: string;
}
export const countries: Country[] = [
{ name: "Afghanistan", id: "AF" },
{ name: "Aland Islands", id: "AX" },
{ name: "Albania", id: "AL" },
{ name: "Algeria", id: "DZ" },
npx create-expo-app@latest
@itarkuma
itarkuma / instalaciones-react.md
Created November 20, 2022 01:04 — forked from Klerith/instalaciones-react.md
Instalaciones recomendadas para el curso de React con Sockets