Skip to content

Instantly share code, notes, and snippets.

View KEINOS's full-sized avatar

KEINOS KEINOS

View GitHub Profile
@KEINOS
KEINOS / install_ruby_rpi.sh
Last active November 5, 2022 18:07 — forked from zzidante/install_ruby_rpi.sh
A Bash script to install Ruby 2.6.8 on the Raspberry Pi OS
#!/bin/bash
# --------------------------------------------------------------------------------------------
# Installs Ruby 2.6.8 using rbenv/ruby-build on the Raspberry Pi OS
#
# Run from the web:
# bash <(curl -sL https://gist.github.com/KEINOS/7101f542be23e5048198e2a27c3cfda8/raw/install_ruby_rpi.sh)
# --------------------------------------------------------------------------------------------
# Welcome message
@KEINOS
KEINOS / Main.php
Last active August 15, 2017 13:49 — forked from Haru-GitHub/Main.php
Sample gist to practice collaborating.
<?php
// initial file
// added from paiza.IO.
@KEINOS
KEINOS / gistColaboration.md
Last active August 15, 2017 13:18 — forked from maglietti/gistColaboration.md
How to collaborate on a gist / Gistで友達とコラボレーション(共同作業)する方法

To collaborate on a gist:

  1. Clone your gist repo locally
  2. Add your friend’s fork as a remote. e.g. if your friend is named Cindy:
    git remote add-url cindy https://gist.github.com/cindy/df03bdacaef75a80f310
  3. Fetch your friend’s commits: git fetch cindy/master
  4. Merge your friend’s changes into your repo: git merge cindy/master
  5. Push the changes back to GitHub: git push origin/master