Skip to content

Instantly share code, notes, and snippets.

View brianmsm's full-sized avatar
🎯
Focusing

Brian Norman Peña Calero brianmsm

🎯
Focusing
View GitHub Profile
@SigurdJanson
SigurdJanson / ActivityIndicatorButton.R
Last active May 11, 2021 17:38
How to display an activity indicator on a button to tell users that the app is busy with handling request (shiny, R)
# This sample shows how to display an activity indicator on a button to tell users that
# the app is busy with handling their recent request.
#
# The activity indicator works with CSS only.
#
# Based on the template project "Shiny Web Application" of RStudio.
# The difference is that the chart is not updated as soon as a user changes the bins slider but
# rather waits until an update is explicitely request through a button press.
# The CSS animation has been taken from https://maxbeier.github.io/text-spinners/
library(shiny)
@yovko
yovko / ohmyzsh.md
Last active August 5, 2025 09:55
ZSH (using Oh My ZSH) on Manjaro Linux

ZSH (using Oh My ZSH) on Manjaro Linux

0. If ZSH is not already installed on your Manjaro system you can do it with the command:

sudo pacman -Syu zsh

You do not need to install manjaro-zsh-config and all the other related packages like zsh-syntax-highlighting, zsh-history-substring-search, zsh-autosuggestions, etc., as we will use Oh My Zsh.