Skip to content

Instantly share code, notes, and snippets.

View arihant-2310's full-sized avatar
:octocat:
Focusing

Arihant Hirawat arihant-2310

:octocat:
Focusing
View GitHub Profile
@arihant-2310
arihant-2310 / semaphore-ci.md
Last active September 5, 2022 08:37
Details about semaphore ci

Semaphore CI

Artifacts

  1. Provides persistent artifact store

    • To pass data between jobs in a single workflow
    • Long-term storage
  2. Three types of artifacts:

    • Job artifacts for collecting debug data
    • Workflow artifacts are ideal for passing data from one job to another
@arihant-2310
arihant-2310 / RAILS_CHEATSHEET.md
Created July 27, 2021 00:09 — forked from mdang/RAILS_CHEATSHEET.md
Ruby on Rails Cheatsheet

Ruby on Rails Cheatsheet

Architecture

Create a new application

Install the Rails gem if you haven't done so before

@arihant-2310
arihant-2310 / linux-cmd-cheatsheet.md
Created July 17, 2021 11:32 — forked from riipandi/linux-cmd-cheatsheet.md
Linux Command Cheat Sheet

#Linux Cheat Sheet

##File Commands:

  • ls – directory listing
  • ls -al – formatted listing with hidden files
  • cd dir - change directory to dir
  • cd – change to home
  • pwd – show current directory
  • mkdir dir – create a directory dir
  • rm file – delete file