Skip to content

Instantly share code, notes, and snippets.

@Studiodews
Studiodews / getting-remote-json-data-with-the-fetch-api.markdown
Created August 13, 2020 19:03
Getting remote JSON data with the fetch API
@vanruch
vanruch / gist:988c6175469e010d4c3c16092cd85477
Last active April 28, 2024 11:06
Unlocking tSQD from the deprecated GatewayRegistry contract

Unlocking tSQD from the deprecated GatewayRegistry contract

  1. Go to arbiscan
  2. Click "Connect to Web3" button to connect your MetaMask or WalletConnect wallet
  3. Make sure you are connected to the arbitrum-sepolia network with the same account that was used to register the gateway
  4. Find and execute 23. unstake method
  5. In case of an error, it's possible that the tokens are still locked

The tokens should be transferred back to you afterwards

@carlessanagustin
carlessanagustin / install_docker_rh.sh
Last active April 28, 2024 11:06
Install Docker Engine & Docker Compose in RedHat based Linux Distribution
#!/usr/bin/env bash
DOCKERCOMPOSE_VERSION=1.25.0
# Docker Engine Community Edition
yum remove \
docker \
docker-client \
docker-client-latest \
@vangberg
vangberg / DWM-ON-OS-X.md
Created February 22, 2010 19:24
dwm on os x [work in progress!]

Installing and configuring dwm on OS X

  1. Install XQuartz (http://xquartz.macosforge.org) which is the development version of the X11.app that ships with OS X, which means it is way more up to date. I have had some weird issues with X11.app v. 2.3-something. XQuartz 2.5.0 fixed that.

  2. Install dwm from Homebrew, brew install dwm. This makes a bunch of necessary tweaks to the DWM configuration.

  3. Add the following script to $PATH, name it dwm-launch and chmod 755:

    cd ~
    

while true

# Referenced videos:
# - Argo CD - Applying GitOps Principles To Manage Production Environment In Kubernetes: https://youtu.be/vpWQeoaiRM4
# - kind - How to run local multi-node Kubernetes clusters: https://youtu.be/C0v5gJSWuSo
# - GitHub CLI - How to manage repositories more efficiently: https://youtu.be/BII6ZY2Rnlc
# - Argo Workflows and Pipelines - CI/CD, Machine Learning, and Other Kubernetes Workflows: https://youtu.be/UMaivwrAyTA
# - Running Jenkins In Kubernetes - Tutorial And Review: https://youtu.be/2Kc3fUJANAc
# - Github Actions Review And Tutorial: https://youtu.be/eZcAvTb0rbA
# - Tekton - Kubernetes Cloud-Native CI/CD Pipelines And Workflows: https://youtu.be/7mvrpxz_BfE
# - Environments Based On Pull Requests (PRs): Using Argo CD To Apply GitOps Principles On Previews: https://youtu.be/cpAaI8p4R60
# - How To Apply GitOps To Everything - Combining Argo CD And Crossplane: https://youtu.be/yrj4lmScKHQ
@dasdo
dasdo / GIT.md
Last active April 28, 2024 10:58
Lista de Comandos en GIT

Configuración Básica

Configurar Nombre que salen en los commits

	git config --global user.name "dasdo"

Configurar Email

	git config --global user.email dasdo1@gmail.com
@dhh
dhh / linux-setup.sh
Last active April 28, 2024 10:57
linux-setup.sh
# CLI
sudo apt update -y
sudo apt install -y \
git curl docker.io \
build-essential pkg-config autoconf bison rustc cargo clang \
libssl-dev libreadline-dev zlib1g-dev libyaml-dev libreadline-dev libncurses5-dev libffi-dev libgdbm-dev libjemalloc2 \
libvips imagemagick libmagickwand-dev mupdf mupdf-tools \
redis-tools sqlite3 libsqlite3-0 libmysqlclient-dev \
rbenv apache2-utils
@jmndao
jmndao / firebaseAntdFileUploader.js
Last active April 28, 2024 10:56
Create custom image request from firebase using Antd library.
// Note: this is a combo between react-antd and firebase (storage)
// - How you can add your task progress bar to the antd-progress
/* Action */
const firebaseUpload = ({ onSuccess, onProgress, onError, file }) => (dispatch) => {
const storageRef = storage.ref(`portfolio/${file.name}`);
const task = storageRef.put(file);
@ptMcGit
ptMcGit / cue_for_devops.md
Last active April 28, 2024 10:54
CUE for DevOps

CUE for DevOps

Overview

This is a tutorial that uses a toy infrastructure project to highlight some of CUE's features and show how it can be used to simplify and manage infrastructure. Go to Tutorial if you want to skip the introductory stuff.

What is CUE?

From cuelang.org: