Skip to content

Instantly share code, notes, and snippets.

View daniel-farina's full-sized avatar
🎯
Focused

Daniel Farina daniel-farina

🎯
Focused
View GitHub Profile
@rap2hpoutre
rap2hpoutre / circle.yml
Created May 19, 2016 09:22
Circle CI example for Laravel
machine:
timezone:
Europe/Paris
php:
version: 7.0.3
environment:
ENVIRONMENT: testing
DB_URL: 127.0.0.1
@joeytwiddle
joeytwiddle / async-await-forEach-alternatives.md
Last active July 18, 2024 09:20
Do not use forEach with async-await

Do not use forEach with async-await

TLDR: Use for...of instead of forEach() in asynchronous code.

For legacy browsers, use for...i or [].reduce()

To execute the promises in parallel, use Promise.all([].map(...))

The problem

@webmaster128
webmaster128 / TOUR_COMSJS_STARGATE.md
Last active June 3, 2024 05:57
CosmJS + Stargate – A guided tour

Support for Cosmos SDK Stargate in CosmJS has been ongoing work for several months now. Stargate is released and CosmJS is here to connect to it.

Starting points

Let's explore what is new for Stargate support:

@yyyyaaa
yyyyaaa / getting-started.md
Created November 28, 2023 08:43
Getting started with @interchain-ui/react
  1. In your React project, install dependency:

If you're using yarn: yarn add @interchain-ui/react

If you're using npm: npm i @interchain-ui/react

  1. Setting up your root layout/ route: